DEtools
separablesol
find solutions of a separable first order ODE
Calling Sequence
Parameters
Description
Examples
separablesol(lode, v)
lode
-
first order differential equation
v
dependent variable of the lode
The separablesol routine determines whether the first argument is a separable first order 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 separablesol(..) only after executing the command with(DEtools). However, it can always be accessed through the long form of the command by using DEtools[separablesol](..).
with⁡DEtools:
ode≔t2⁢z⁡t+1+z⁡t2⁢t−1⁢diff⁡z⁡t,t=0
ode≔t2⁢z⁡t+1+z⁡t2⁢t−1⁢ⅆⅆtz⁡t=0
separablesol⁡ode,z⁡t
z⁡t=ⅇRootOf⁡ⅇ2⁢_Z+t2−4⁢ⅇ_Z+2⁢ln⁡t−1+2⁢c__1+2⁢_Z+2⁢t+3−1
ode≔t⁢z⁡t−3⁢D⁡z⁡t+4⁢z⁡t=0
z⁡t=ⅇ−LambertW⁡−t43⁢ⅇ4⁢c__133+4⁢ln⁡t3+4⁢c__13
See Also
dsolve
Download Help Document