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
ODEs Having Linear Symmetries
Description
The general forms of ODEs having one of the following linear symmetries
[xi=a+b*x, eta=0], [xi=a+b*y, eta=0], [xi=0, eta=c+d*x], [xi=0, eta=c+d*y]:
where the infinitesimal symmetry generator is given by:
G := f -> xi*diff(f,x) + eta*diff(f,y);
are given by:
ode[1] := DEtools[equinv]([xi=a+b*x, eta=0], y(x), 2);
ode[2] := DEtools[equinv]([xi=a+b*y, eta=0], y(x), 2);
ode[3] := DEtools[equinv]([xi=0, eta=c+d*x], y(x), 2);
ode[4] := DEtools[equinv]([xi=0, eta=c+d*y], y(x), 2);
Although the symmetries of these families of ODEs can be determined in a direct manner (using symgen), the simplicity of their pattern motivated us to have separate routines for recognizing them.
Examples
As an example that can be solved by the related routine, consider
See Also
DEtools, odeadvisor, dsolve,Lie, and ?odeadvisor,<TYPE> where <TYPE> is one of: quadrature, missing, reducible, linear_ODEs, exact_linear, exact_nonlinear, sym_Fx, linear_sym, Bessel, Painleve, Halm, Gegenbauer, Duffing, ellipsoidal, elliptic, erf, Emden, Jacobi, Hermite, Lagerstrom, Laguerre, Liouville, Lienard, Van_der_Pol, Titchmarsh; for other differential orders see odeadvisor,types.
Download Help Document