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
Exact Nonlinear ODEs
Description
The general form of the exact nonlinear ODE is given by the following:
exact_nonlinear_ode := 'diff(F(x,y(x),seq(diff(y(x),x$i),i=1..n)),x)' = 0;
See Murphy, "Ordinary Differential Equations and their Solutions", p. 221.
The order of this ODE can be reduced since it is the total derivative of an ODE of one order lower. If the given ODE is G(x,y,y1,y2,...,yn)=0, the test for exactness is the following:
where
Note: The derivatives with respect to y, dy/dx and d^2y/dx^2 are taken in the obvious manner but the derivatives with regard to x are taken considering y, and its derivatives as functions of x.
The reduced ODE is:
reduced_ode := 'F(x,y(x),seq(diff(y(x),x$i),i=1..n))' = _C1;
Examples
See Also
DEtools, odeadvisor, dsolve, and ?odeadvisor,<TYPE> where <TYPE> is one of: quadrature, missing, reducible, linear_ODEs, exact_linear, exact_nonlinear; for other differential orders see odeadvisor,types.
Download Help Document