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
student[Limit] - limit の不活性形
使い方
Limit(f, x = a)
Limit(f, x = a, direction)
パラメータ
f - x の式
x - 名前
a - x が近づく極限値
direction - (オプション) right, left, mnamereal, または complex のどれか1つ。
説明
この関数は、x が a に近づくときの f の極限値に対応しています。これは Maple の関数 limit の「未評価」形なので、少しの簡単化しか実行されません。changevar や expand によりこれを操作することができます。
limit 関数により評価を行わせるには、value を使います。
コマンド with(student,Limit) により、このコマンドの省略形を使うことができます。
例
with(student):
Limit(x^3 + 3*x^2 + x+1, x=4);
Limit(1/x, x=0, right);
Limit(1/x, x=0, real);
expand(Limit(x^3 + 3*x^2 + x + 1, x=4));
value(%);
参照
limit, student, Int, Sum, value, changevar, combine
Download Help Document