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
resultant - 2 つの多項式の終結式の計算
使い方
resultant(a, b, x)
パラメータ
a, b - x の多項式
x - 名前
説明
関数 resultant は不定元 x について 2 つの多項式 a と b の終結式を計算します。
a と b が整域上の多項式で、
a = an * product( x - alpha[i], i=1..n )
および b = bm * product( x - beta[i], i=1..m )
であるとき、x に関する2つの多項式 a と b の終結式は多項式
an^m*bm^n*product(product(alpha[i] - beta[j], j=1..m), i=1..n)
として定義されます。
終結式はユークリッドのアルゴリズムから計算するか、シルベスターの行列またはベズの行列の行列式として計算することができます。有理数体上の1変数または2変数の終結式について、高次多項式に対してはモジュラー法が、低次多項式に対しては部分終結式アルゴリズムが用いられます。そうでなければベズの行列式が小行列式展開により計算されます。
効率的な計算のために、resultant は現存する a と b の因数分解を利用しますが、明示的な因数分解は試みません。
参考文献: ``Computer Algebra: Symbolic & Algebraic Computation'' Edited by B. Buchberger, G. E. Collins, and R. Loos, Springer-Verlag, Wien, 1982, pp. 115-138 .
例
resultant(a*x+b, c*x+d, x);
resultant((x+a)^5,(x+b)^5,x);
参照
discrim, gcd, Resultant, linalg[sylvester], linalg[bezout]
Download Help Document