DEtools
liesol
find solutions of a first order Lie ODE
Calling Sequence
Parameters
Description
Examples
liesol(lode, v)
lode
-
first order differential equation
v
dependent variable of the lode
The liesol routine attempts to find a solution to the equation by using Lie methods. See dsolve,Lie.
The first argument is a differential equation in diff or D form and the second argument is the function in the differential equation.
This function is part of the DEtools package, and so it can be used in the form liesol(..) only after executing the command with(DEtools). However, it can always be accessed through the long form of the command by using DEtools[liesol](..).
with⁡DEtools:
A nonlinear fifth order example (number 17 from Kamke's book) solved by reducing the order constructively using canonical coordinates
ode≔9⁢diff⁡y⁡x,x,x2⁢diff⁡y⁡x,x,x,x,x,x−45⁢diff⁡y⁡x,x,x⁢diff⁡y⁡x,x,x,x⁢diff⁡y⁡x,x,x,x,x+40⁢diff⁡y⁡x,x,x,x
ode≔9⁢ⅆ2ⅆx2y⁡x2⁢ⅆ5ⅆx5y⁡x−45⁢ⅆ2ⅆx2y⁡x⁢ⅆ3ⅆx3y⁡x⁢ⅆ4ⅆx4y⁡x+40⁢ⅆ3ⅆx3y⁡x
liesol⁡ode,y⁡x
y⁡x=∫∫RootOf⁡−∫` `_Z1RootOf⁡−20⁢ln⁡_f+∫` `_Z_k⁢ⅇRootOf⁡81⁢_k2⁢ⅇ_Z+20⁢ⅇ_Z⁢ln⁡ⅇ_Z+27−40⁢ⅇ_Z⁢ln⁡2−20⁢ⅇ_Z⁢ln⁡5+162⁢c__1⁢ⅇ_Z−20⁢_Z⁢ⅇ_Z+2187⁢_k2+540⁢ln⁡ⅇ_Z+27−1080⁢ln⁡2−540⁢ln⁡5+4374⁢c__1−540⁢_Z−540+27ⅆ_k+20⁢c__2ⅆ_f+x+c__3ⅆxⅆx+c__4⁢x+c__5
See Also
dsolve
dsolve,Lie
Download Help Document