Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
DEtools[parametricsol] - computes parametric solutions for Ordinary Differential Equations
Calling Sequence
parametricsol(ODE, v, Lie, explicit, <other options>)
Parameters
ODE
-
first order differential equation
v
optiona, dependent variable of the ODE, required when not obvious
Lie
optional, to request the use of symmetry methods when computing parametric solutions for 1st order ODEs
explicit
optional, for 1st order ODEs, to request the removal of the parameter used to express the parametric solution
<other options>
the optional arguments explained in dsolve,Lie, in connection with using Lie methods to compute the parametric solution
Description
parametricsol computes parametric solutions mainly for nonlinear ODEs, although the methods implemented applies as well to linear ODEs. Two methods are implemented:
Some 1st order ODEs fit a pattern for which a parametric solution, as explained in odeadvisor[parametric], can be sought. This is the default method tried for 1st order ODEs.
More general, 1st and higher order ODEs, for which a as many point symmetries as the differential order, forming a group, can be computed, can always have their general solution represented in parametric form (see DEtools[reduce_order]). This is the default method for 2nd and higher order ODEs, and is invoked for 1st order ODEs using the optional argument Lie
This function is part of the DEtools package, and so it can be used in the form parametricsol(..) only after executing the command with(DEtools). However, it can always be accessed through the long form of the command by using DEtools[parametricsol](..).
Examples
To see the solution to this equation without the parameter _T use the optional argument explicit
A 1st order ODE example where the solution can only be computed using symmetry methods
A 2nd order nonlinear ODE; Lie methods are automatically invoked when the differential order is higher than 1
See Also
DEtools, DEtools, reduce_order, dsolve, dsolve, Lie, odeadvisor[parametric]
Download Help Document