Internal
problem
ID
[8763]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
51
Date
solved
:
Sunday, March 30, 2025 at 01:30:41 PM
CAS
classification
:
[[_2nd_order, _missing_y]]
Time used: 0.425 (sec)
Solve
This is second order ode with missing dependent variable
Then
Hence the ode becomes
Which is now solved for
The ode
is separable as it can be written as
Where
Integrating gives
We now need to find the singular solutions, these are found by finding for what values
for
Now we go over each such singular solution and check if it verifies the ode itself and any initial conditions given. If it does not then the singular solution will not be used.
Therefore the solutions found are
In summary, these are the solution found for
For solution
Since the ode has the form
For solution
Since the ode has the form
In summary, these are the solution found for
Will add steps showing solving for IC soon.
Summary of solutions found
Time used: 0.196 (sec)
Solve
Writing the ode as
Comparing (1) and (2) shows that
Applying the Liouville transformation on the dependent variable gives
Then (2) becomes
Where
Substituting the values of
Comparing the above to (5) shows that
Therefore eq. (4) becomes
Equation (7) is now solved. After finding
The first step is to determine the case of Kovacic algorithm this ode belongs to. There are 3 cases depending on the order of poles of
Case |
Allowed pole order for |
Allowed value for |
1 |
|
|
2 |
Need to have at least one pole
that is either order |
no condition |
3 |
|
|
The order of
The poles of
Attempting to find a solution using case
Looking at higher order poles of order
Let
The partial fraction decomposition of
There is pole in
Using eq. (1B), taking the sum up to
The above shows that the coefficient of
Now we need to find
Hence
Since the order of
The following table summarizes the findings so far for poles and for the order of
pole |
pole order | |
|
|
| | | | |
Order of |
|
|
|
|
| | |
Now that the all
Where
Since
Substituting the above values in the above results in
Now that
Let
Substituting the above in eq. (1A) gives
The equation is satisfied since both sides are zero. Therefore the first solution to the ode
The first solution to the original ode in
Which simplifies to
The second solution
Substituting gives
Therefore the solution is
Will add steps showing solving for IC soon.
Summary of solutions found
ode:=t^2*diff(diff(y(t),t),t)-2*diff(y(t),t) = 0; dsolve(ode,y(t), singsol=all);
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)] checking if the LODE is missing y <- LODE missing y successful
ode=t^2*D[y[t],{t,2}]-2*D[y[t],t]==0; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(t**2*Derivative(y(t), (t, 2)) - 2*Derivative(y(t), t),0) ics = {} dsolve(ode,func=y(t),ics=ics)