Internal
problem
ID
[8761]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
49
Date
solved
:
Sunday, March 30, 2025 at 01:30:38 PM
CAS
classification
:
[[_Emden, _Fowler]]
Time used: 0.096 (sec)
Solve
This is Euler second order ODE. Let the solution be
Simplifying gives
Since
Or
Equation (1) is the characteristic equation. Its roots determine the form of the general solution. Using the quadratic equation the roots are
The roots are complex conjugate of each others. Let the roots be
Where in this case
Using the values for
Using Euler relation, the expression
Will add steps showing solving for IC soon.
Summary of solutions found
Time used: 0.160 (sec)
Solve
In normal form the ode
Becomes
Where
Applying change of variables
Where
Let
This ode is solved resulting in
Using (6) to evaluate
Substituting the above in (3) and noting that now
But in terms of
Hence the above ode becomes
The above ode is now solved for
Simplifying gives
Since
Or
Equation (1) is the characteristic equation. Its roots determine the form of the general solution. Using the quadratic equation the roots are
The roots are complex conjugate of each others. Let the roots be
Where in this case
Using the values for
Using Euler relation, the expression
Will add steps showing solving for IC soon.
The above solution is now transformed back to
Will add steps showing solving for IC soon.
Summary of solutions found
Time used: 0.223 (sec)
Solve
In normal form the ode
Becomes
Where
Applying change of variables
Where
Let
Substituting the above into (4) results in
Therefore ode (3) now becomes
The above ode is now solved for
Now from (6)
Substituting the above into the solution obtained gives
Will add steps showing solving for IC soon.
Summary of solutions found
Time used: 0.177 (sec)
Solve
In normal form the ode
Becomes
Where
Applying change of variables on the depndent variable
Let the coefficient of
Substituting the earlier values found for
Solving (5) for
Substituting this value in (3) gives
Using the substitution
Then (7) becomes
The above is now solved for
is separable as it can be written as
Where
Integrating gives
Taking the exponential of both sides the solution becomes
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
Now that
Hence
Will add steps showing solving for IC soon.
Summary of solutions found
Time used: 0.202 (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 poles of order 2. The partial fractions decomposition of
For the pole at
Since the order of
Since the
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
The above gives
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)-3*diff(y(t),t)*t+5*y(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 <- LODE of Euler type successful
Maple step by step
ode=t^2*D[y[t],{t,2}]-3*t*D[y[t],t]+5*y[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)) - 3*t*Derivative(y(t), t) + 5*y(t),0) ics = {} dsolve(ode,func=y(t),ics=ics)