Internal
problem
ID
[8928]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
4.0
Problem
number
:
36
Date
solved
:
Sunday, March 30, 2025 at 01:55:33 PM
CAS
classification
:
[[_2nd_order, _exact, _linear, _homogeneous]]
Solve
Using series expansion around
The type of the expansion point is first determined. This is done on the homogeneous part of the ODE.
The following is summary of singularities for the above ode. Writing the ode as
Where
Combining everything together gives the following summary of singularities for the ode as
Regular singular points :
Irregular singular points :
Since
Let the solution be represented as Frobenius power series of the form
Then
Substituting the above back into the ode gives
Which simplifies to
The next step is to make all powers of
Substituting all the above in Eq (2A) gives the following equation where now all powers of
The indicial equation is obtained from
When
Or
Since
Since the above is true for all
Solving for
Since
Solving for
Since
Or
Or
Where
Solving for
Which for the root
At this point, it is a good idea to keep track of
| | |
| | |
For
Which for the root
And the table now becomes
|
|
|
|
| |
| | |
For
Which for the root
And the table now becomes
|
|
|
|
| |
| | |
| | |
For
Which for the root
And the table now becomes
|
|
|
|
|
|
|
| |
| | |
|
|
|
For
Which for the root
And the table now becomes
|
|
|
|
|
|
|
| |
| | |
| | |
|
|
|
For
Which for the root
And the table now becomes
|
|
|
|
|
|
|
|
|
|
| |
| | |
|
|
|
|
|
|
Using the above table, then the solution
Now the second solution
Where
Therefore
Since the limit does not exist then the log term is needed. Therefore the second solution has the form
Therefore
Substituting these back into the given ode
Which can be written as
But since
Eq (7) simplifes to
Substituting
Since
Which simplifies to
The next step is to make all powers of
Substituting all the above in Eq (2A) gives the following equation where now all powers of
For
Which
is solved for
For
Which when replacing the above values found already for
Solving the above for
For
Which when replacing the above values found already for
Solving the above for
For
Which when replacing the above values found already
for
Solving the above for
For
Which when replacing the above values found already for
Solving the above for
Now that we found all
Using the above value found for
Therefore the homogeneous solution is
Hence the final solution is
Order:=6; ode:=x*(x-1)*diff(diff(y(x),x),x)+3*diff(y(x),x)*x+y(x) = 0; dsolve(ode,y(x),type='series',x=0);
Maple trace
Methods for second order ODEs: --- Trying classification methods --- trying a quadrature checking if the LODE has constant coefficients checking if the LODE is of Euler type trying a symmetry of the form [xi=0, eta=F(x)] <- linear_1 successful
Maple step by step
ode=x*(x-1)*D[y[x],{x,2}] +3*x*D[y[x],x]+y[x] == 0; ic={}; AsymptoticDSolveValue[{ode,ic},y[x],{x,0,5}]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x*(x - 1)*Derivative(y(x), (x, 2)) + 3*x*Derivative(y(x), x) + y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics,hint="2nd_power_series_regular",x0=0,n=6)