DEtools
riccatisol
find solutions of a first order Riccati ODE
Calling Sequence
Parameters
Description
Examples
riccatisol(lode, v)
lode
-
first order differential equation
v
dependent variable of the lode
A Riccati ODE is a first order ODE of the form
y'⁡x=f0⁡x+f1⁡x⁢y⁡x+f2⁡x⁢y⁡x2
The riccatisol routine determines whether the first argument is a first order Riccati ODE and, if so, returns a solution to the equation.
The first argument is a differential equation in diff or D form and the second argument is the variable in the differential equation.
This function is part of the DEtools package, and so it can be used in the form riccatisol(..) only after executing the command with(DEtools). However, it can always be accessed through the long form of the command by using DEtools[riccatisol](..).
with⁡DEtools:
ode≔x⁢diff⁡z⁡x,x+z⁡x=3⁢x2⁢z⁡x2
ode≔x⁢ⅆⅆxz⁡x+z⁡x=3⁢x2⁢z⁡x2
riccatisol⁡ode,z⁡x
z⁡x=1−3⁢x+c__1⁢x
ode≔x⁢D⁡z⁡x+z⁡x=3⁢x2⁢z⁡x2−3:
z⁡x=−3+ⅇ−6⁢xc__1+ⅇ−6⁢x63⁢x
See Also
dsolve
Download Help Document