DEtools
abelsol
find solutions to a first order Abel ODE
Calling Sequence
Parameters
Description
Examples
abelsol(lode, v)
lode
-
first order differential equation
v
dependent variable of the lode
An Abel ODE is a first order ODE of the form
y'⁡x=f0⁡x+f1⁡x⁢y⁡x+f2⁡x⁢y⁡x2+f3⁡x⁢y⁡x3
The abelsol routine determines whether the first argument is a first order Abel ODE and, if so, attempts to find a closed form solution.
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 abelsol(..) only after executing the command with(DEtools). However, it can always be accessed through the long form of the command by using DEtools[abelsol](..).
with(DEtools):
ode := diff(y(x),x)=a0+a1*y(x)+a2*y(x)^2+a3*y(x)^3;
ode≔ⅆⅆxy⁡x=a0+a1⁢y⁡x+a2⁢y⁡x2+a3⁢y⁡x3
abelsol( ode, y(x) );
ode := D(z)(t)+3*a*z(t)^3+6*a*t*z(t)^2;
ode≔D⁡z⁡t+3⁢a⁢z⁡t3+6⁢a⁢t⁢z⁡t2
abelsol( ode, z(t) );
z⁡t=13⁢a⁢t2+RootOf⁡AiryBi⁡_Z⁢−3⁢a13⁢c__1⁢t+−3⁢a13⁢t⁢AiryAi⁡_Z+AiryBi⁡1,_Z⁢c__1+AiryAi⁡1,_Z⁢−3⁢a13
See Also
dsolve
Download Help Document