2.30 ODE No. 30
- Problem in Latex
- Mathematica input
- Maple input
✓ Mathematica : cpu = 0.289385 (sec), leaf count = 197
✓ Maple : cpu = 0.097 (sec), leaf count = 54
This is Ricatti first order non-linear ODE. Using standard transformation
Hence
Comparing to (1) gives
In standard form or . We see that is not analytic at (the expansion point). So we can’t use power
series solution, and will use Forbenius series. Power series, which is is used when the expansion
point is not singular point. (i.e. and are analytic there). Forbenius series is used when there is a
removable singular point (called also regular singular point), as in this case. Starting with Hence
Substituting in (2) gives
Dividing out Each term should have in it. So we adjust the last term Expanding the second term
Hence for
Since then Hence or . Now for
For , we obtain For There are two solutions. Looking at (3) for now, for For For And so on. Since
the solution is assumed to be and we are looking at case then
Since and Then And (5) can now be written as But modified Bessel function of first kind is So if
we let we obtain
Hence If we now compare (6) and (7), we see that if we set , which is arbitrary, to be , then we
obtain
But this is (7). Hence we found the first solution, which is
The above was for . Now we find the second solution for . From (4)
For
For
For
And so on. Since the solution is assumed to be then
But as we found above, we obtain that , therefore
Modified Bessel function of second kind is . The above should result in for by setting to
appropriate arbitrary value. I need to work out this final manipulation later. Hence we find .
Therefore, the solution is But
Hence And from Let hence Or
Verification
eq:=diff(y(x),x)+x^(-a-1)*y(x)^2-x^a = 0;
num:=x^(1/2+a)*BesselI(1+a,2*sqrt(x))-_C1*x^(1/2+a)*BesselK(1+a,2*sqrt(x));
den:=BesselI(a,2*sqrt(x))+_C1*BesselK(a,2*sqrt(x));
my_sol:=num/den;
odetest(y(x)=my_sol,eq);
0