Solving Abel's ODEs of the Second Kind, Class A
|
Description
|
|
•
|
The general form of Abel's equation, second kind, class A is given by:
|
>
|
Abel_ode2A := (y(x)+g(x))*diff(y(x),x)=f2(x)*y(x)^2+f1(x)*y(x)+f0(x);
|
| (1) |
|
where f2(x), f1(x), f0(x), and g(x) are arbitrary functions. See Differentialgleichungen, by E. Kamke, p. 26. There is as yet no general solution for this ODE.
|
•
|
Note that all ODEs of type Abel, second kind, can be rewritten as ODEs of type Abel, first kind, as explained in ?odeadvisor,Abel2C
|
|
|
Examples
|
|
>
|
|
| (2) |
>
|
|
| (3) |
1) f0(x) = f1(x)*g(x)-f2(x)*g(x)^2
>
|
|
| (4) |
This case can be solved as follows:
>
|
|
| (5) |
2) Another case which can be solved:
f1(x) = 2*f2(x)*g(x)-diff(g(x),x)
>
|
|
| (6) |
Although the answer for this case can be obtained using standard methods (an integrating factor is easily found), the use of symmetry methods can provide an explicit solution. The infinitesimals for this case are given by
>
|
|
| (7) |
To indicate the use of symmetry methods "at first", we can explicitly indicate an integration method (see dsolve); for instance, to use the canonical coordinates of the invariance group:
>
|
|
| (8) |
|
|
See Also
|
|
DEtools, dsolve, odeadvisor, and ?odeadvisor,<TYPE> where <TYPE> is one of: quadrature, linear, separable, Bernoulli, exact, homogeneous, homogeneousB, homogeneousC, homogeneousD, homogeneousG, Chini, Riccati, Abel, Abel2C, rational, Clairaut, dAlembert, sym_implicit, patterns; for other differential orders see odeadvisor,TYPES.
|
|