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
Alternative Computations with Rosenfeld_Groebner
Description
A number of environment variables can be set to modify the computations made by Rosenfeld_Groebner.
_Env_diffalg_gen_order
The input differential polynomials to Rosenfeld_Groebner are treated in sequence. By default they are treated by increasing rank. Setting _Env_diffalg_gen_order := 'decreasingly' might change the computation time as well as the characteristic decomposition in the output.
To return to the default behavior, use _Env_diffalg_gen_order := 'increasingly'.
_Env_diffalg_char
Rosenfeld_Groebner proceeds in two fundamental steps. It first computes a decomposition into regular differential ideals. The second step consists of computing a decomposition into characterizable differential ideals of these regular differential ideals. The default output is therefore a characteristic decomposition of the radical differential ideal generated by the input differential polynomials.
Though it is rarely the bottleneck of the algorithm, you might want to compute only the decomposition into regular differential ideals. This can be achieved by setting _Env_diffalg_char := false. The default is true.
Regular differential ideals are represented in the same way as characterizable differential ideals. They are tables and appear as regular. The regular differential systems of equations and inequations defining them can be accessed by using the commands equations and inequations. Unlike characterizable differential ideals, the inequations can contain differential polynomials that are unrelated to the initials and separants of the equations.
_Env_diffalg_charpres_method
This option allows to choose between two different methods to compute a decomposition into characterizable differential ideals from the regular differential ideals.
By setting _Env_diffalg_charpres_method:='groebner', the final decomposition is processed using Groebner basis computations. By setting _Env_diffalg_charpres_method:='regchar', the final decomposition is processed using algebraic triangular technics. It might happen that one method succeeds whereas the other does not (see example below).
The default is _Env_diffalg_charpres_method:='groebner'.
_Env_diffalg_charpres_normalize
This option works together with the option _Env_diffalg_charpres_method. If you use _Env_diffalg_charpres_method:='regchar', you can choose to compute normalized or non-normalized characterizable differential ideals. A normalized characterizable differential ideal satisfies the property : the initials of its equations are free of leaders. A non-normalized characterizable differential ideal does not satisfy this property. Setting _Env_diffalg_charpres_normalize:=true produces normalized outputs and _Env_diffalg_charpres_normalize:=false produces non-normalized ones.
The size of the output can be smaller by computing non-normalized characterizable differential ideals (see example below).
The default is _Env_diffalg_charpres_normalize:=true.
_Env_diffalg_primestudy
This environment variable affects the computation if Rosenfeld_Groebner is called with a fourth parameter that is a characteristic decomposition, with respect to another ranking, of the radical ideal to be treated. If this characteristic decomposition consists of a single characterizable differential ideal that you know is prime, setting _Env_diffalg_primestudy := true takes advantage of this knowledge.
If the characterizable differential ideal passes the is_orthonomic test, it is not necessary to set _Env_diffalg_primestudy.
The default is _Env_diffalg_primestudy := false.
_Env_diffalg_split
Setting _Env_diffalg_split := false eliminates the branching on the initials and separants at each step. The computation seeks what is deduced to be the most general component. This saves computations. Nonetheless, the result might be misleading. The computation is indeed incomplete and does not provide a characteristic decomposition. The result may lead you to infer that there is no common zero to the input differential polynomials when there is one in fact.
Examples
_Env_diffalg_char:
A regular differential system might have no zero. The corresponding components disappear when computing the characteristic decomposition.
Some regular components can split into several characterizable components.
The degree in the leaders can decrease.
_Env_diffalg_charpres_method:
The previous example does not succeed using _Env_diffalg_charpres_method := 'groebner'.
_Env_diffalg_primestudy:
This characteristic set is irreducible (the lowest ranked differential polynomial is irreducible and the others have degree one in their leaders). Therefore, the characterizable differential ideal it defines is prime. Thus, the radical differential ideal represented by : is prime. Whatever the ranking, there is a characteristic decomposition of : that contains only one component. Unfortunately a straightforward computation induces some redundant components. They can be eliminated by introducing as a fourth argument to Rosenfeld_Groebner. Setting _Env_diffalg_primestudy:=true can be a good idea to avoid some computations.
_Env_diffalg_split:
By setting _Env_diffalg_split:= false, one expects to find the most general component. This works in the following example.
Nonetheless, setting _Env_diffalg_split to false can lead to misleading results. It might return no component while the input differential polynomials may have a common zero.
See Also
diffalg(deprecated), diffalg(deprecated)/differential_algebra, diffalg(deprecated)[differential_ring], diffalg(deprecated)[is_orthonomic], diffalg(deprecated)[Rosenfeld_Groebner]
Download Help Document