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
Expand - 受動的 expand 関数
使い方
Expand(a)
パラメータ
a
-
任意の式
モデルの説明
Expand 関数は、expand 関数を表すプレースホルダーです。以下に説明されているように、係数領域を定義する mod または evala と併用されます。
evala(Expand(a)) を呼び出すと、a に含まれる積を展開します (a には、代数的数や、RootOfs または radicals によって定義された関数が含まれている場合があります)。詳細については、evala/Expand を参照してください。
Expand(a) mod p を呼び出すと、a に含まれる積を、法が整数の p について展開します (a には、代数拡大を表す RootOfs または radicals が含まれている場合があります)。
アプリケーションと例題
Expand( (x+2)^2*(x-2) ) mod 3;
alias(alpha=RootOf(x^2-2)):
evala(Expand( (x+alpha)^2*(x-alpha) ));
alias(beta=RootOf(x^2+x+1)):
Expand( (x+beta)^2*(x-beta) ) mod 2;
関連項目
evala, evala/Expand, expand, mod, Normal, RootOf
Download Help Document