Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
taylor - テイラー級数展開
使い方
taylor( expr, eq/nm, n )
パラメータ
expr - 式
eq/nm - (x = a のような)等式か(x のような)名前
n - (オプション)非負の整数
説明
taylor 関数は、変数 x に関する、点 a の近傍における、位数が n までの expr のテイラー級数展開を計算します。
taylor 関数は、より一般的な series 関数に制約を付けたものです。パラメータの説明については series を参照して下さい。
指定された引数に対応する series 関数の計算結果が Taylor 級数のとき、この結果が返されます。そうでなければ、エラーが発生します。
例
taylor( exp(x), x=0, 4 );
taylor( 1/x, x=1, 3 );
taylor( 1/x + y + x^3, x=0 );
Error, does not have a taylor expansion, try series()
int( exp(x^3), x );
taylor(%, x=0);
参照
series, mtaylor, type[taylor], coeftayl
Download Help Document