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
solve/scalar - スカラーの場合 (1 変数と 1 つの方程式)
使い方
solve(eqn, var)
パラメータ
eqn - (0 に等しいと置かれる) 代数式、または、方程式、あるいは、単独の式を含む集合
var - (オプション) 名前、あるいは、単独の名前を含む集合
説明
1つの方程式と1変数について、関数 solve は、スカラーソルバーを使用します。単独の引数のみで呼び出される場合、solve(eqn, indets(eqn, name)) と等しいです。
スカラーソルバーは、根に多重根がある場合でも、見つけたすべての解を出力します。特に、多項式に対して、solve は、すべての解を見つけます。
2, 3, 4 次の多項式に対して、スカラーソルバーは、エクスプリシットな解を計算します。4 次より高次の簡単化できない( irreducible) かつ non-composable な多項式については、スカラーソルバーは、記号 RootOf を使用して解を返します。
関数solve は、通常、集合の式列を返します。しかし、(たとえば、代数式 と 変数名として)入力引数が集合を使用せずに表される場合、その変数に対する解の値の式列を返します。
例
solve(cos(x) + y = 9, x);
solve(x^3 - 6*x^2 + 11*x - 6, x);
solve({x^3 - 6*x^2 + 11*x - 6}, {x});
参照
solve[float], solve[identity], solve[radical]
Download Help Document