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
Groebner[InitialForm] - 多項式のイニシャルフォームの計算
Groebner[WeightedDegree] - 多項式の重みつき全次数の計算
使い方
InitialForm(f, T)
InitialForm(f, W, V)
WeightedDegree(f, W, V)
パラメータ
f
-
多項式か、あるいは多項式のリストか集合
T
単項式順序の短い記述
W
有理数要素の重みベクトルかリスト
V
変数の名前のリスト
説明
WeightedDegree コマンドは多項式 f の、有理数要素の重みベクトル W に関する重みつき全次数を計算します。出力は f の重みつき全次数を表す有理数です。これは各変数 のべきに対して通常 1 としていた重みを として計算したものです。(全て 1 とすれば通常の 次数 と同じものになります)
InitialForm コマンドは f の最も大きい次数を持つ項だけを取り出します。出力は多項式になります。重みベクトルを与える代わりに単項式順序 T を与える事もできます。この場合 T の行列表現の第一行目を自動的に重みベクトルとして用います。単項式順序の行列表示についての詳細は MatrixOrder をご参照ください。
例
with(Groebner):
f := x^3+x^2*y+y^2;
WeightedDegree(f, [1,2], [x,y]);
InitialForm(f, [1,2], [x,y]);
M := MatrixOrder(tdeg(x,y), [x,y]);
InitialForm(f, tdeg(x,y));
参照
degree, LeadingTerm, MatrixOrder
Download Help Document