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
DEtools[buildsym] - build the symmetry generator given a solution of an ODE
Calling Sequence
buildsym(sol, y(x), _C1, _C2)
Parameters
sol
-
expression representing the solution of an ODE
y(x)
(optional) dependent variable
_C1, _C2
(optional) arbitrary constants of the ODE solution
Description
The buildsym command takes as arguments the solution of an ODE and the dependent variable, and it looks for a pair of infinitesimals for the ODE that generated the problem. At present, buildsym is able to look for symmetries of solutions of first and second order ODEs only.
As a rule, if we represent the infinitesimal generator as
f -> xi(x,y) * diff(f,x) + eta(x,y) * diff(f,y);
where x is the independent variable and y is the dependent one, buildsym (when successful) returns the list , or two of these lists if the solution given as argument contains two arbitrary constants _C1 and _C2.
In order to study the relationship between symmetry patterns and ODE patterns, the buildsym command and equinv may be useful in connection with the odeadvisor command and the option of dsolve.
This function is part of the DEtools package, and so it can be used in the form buildsym(..) only after executing the command with(DEtools). However, it can always be accessed through the long form of the command by using DEtools[buildsym](..).
Examples
The complete symmetry cycle
1) A pair of infinitesimals
The most general first order ODE invariant under the above is as follows:
This ODE can be solved using the following:
The infinitesimals can be reobtained from the solution above:
2) Given the solution of a second order ODE, for instance, we get the following:
The infinitesimals of an underlying Lie symmetry group
The most general second order ODE possessing these symmetries
To test symmetries, one can use the symtest command; sym2[1] is a symmetry of ODE2:
sym2[2] is a symmetry of ODE2:
See Also
DEtools, dsolve, dsolve,Lie, equinv, odeadvisor, odetest, PDEtools, symgen, symtest
Download Help Document