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
RegularChains[ChainTools][SquarefreeFactorization] - compute a squarefree decomposition of a polynomial modulo a regular chain
Calling Sequence
SquarefreeFactorization(p, v, rc, R)
SquarefreeFactorization(p, v, rc, R,options)
Parameters
p
-
polynomial
v
variable
rc
regular chain
R
polynomial ring
options
equation of the form 'method'=mth, where mth is either 'evala' or 'src'
Description
The command SquarefreeFactorization(p, v, rc, R) returns a list of pairs [sqf_i, rc_i]. For each pair, the list sqf_i is a squarefree decomposition of p modulo the saturated ideal of rc_i; each element in the list sqf_i is a pair as [s_j,e_j], where s_j is a squarefree polynomial modulo rc_i and e_j is the exponent of s_j in p.
All the regular chains from the output pairs form a triangular decomposition of rc in the sense of Kalkbrener.
The option 'method' specifies which gcd algorithm to use. The default option, 'method'='evala', uses a modular algorithm. The other option is 'method'='src', which uses a subresultant-based approach. This method is generally slower, but can be faster in some cases, for instance, if the dimension of the saturated ideal of rc is high, say greater than 4.
Assumptions: the polynomial ring is assumed to have characteristic zero; the initial of p is regular w.r.t. rc; v is greater than the main variables of the regular chain rc in R.
Compatibility
The RegularChains[ChainTools][SquarefreeFactorization] command was introduced in Maple 16.
For more information on Maple 16 changes, see Updates in Maple 16.
Examples
Example 1
Example 2
Example 3
See Also
gcd, RegularGcd, RegularizeInitial, Squarefree
Download Help Document