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[Int] - 積分 int のイナート形式
使い方
Int(f, x)
Int(f, x = a..b )
パラメータ
f - 積分される式
x - 積分変数
a, b - 積分範囲の上限と下限 (省略可)
説明
この関数は f の x についての積分に相当するものです。これはMaple の int 関数の「評価されない」形で、 最低限の簡単化しか行われません。このような未評価の式は、studentパッケージの changevar (変数の変更), intparts (部分積分), expand などのルーチンで扱うことができます。 積分を部分分数の形に分解するには convert(..., parfrac) が使用できます。
定積分を定義するには、積分範囲 (x = a..b) を指定する必要があります。不定積分では、この3番目のパラメータを省略します。
int 関数のように、 Int でも評価を行いたい場合には 関数 value を使用します。
with(student,Int) を実行すると, このコマンドのみを定義できます。
例
with (student): Int(f(x),x);
Int(f*g,x=1..n);
参照
int, student, value, changevar, intparts, convert[parfrac]
Download Help Document