Internal
problem
ID
[18445]
Book
:
Elementary
Differential
Equations.
By
R.L.E.
Schwarzenberger.
Chapman
and
Hall.
London.
First
Edition
(1969)
Section
:
Chapter
4.
Autonomous
systems.
Exercises
at
page
69
Problem
number
:
3
Date
solved
:
Monday, March 31, 2025 at 05:29:30 PM
CAS
classification
:
[[_Emden, _Fowler], [_2nd_order, _linear, `_with_symmetry_[0,F(x)]`]]
Time used: 0.068 (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
Since the roots are real and distinct, then the general solution is
Where
Will add steps showing solving for IC soon.
Summary of solutions found
Time used: 0.030 (sec)
Solve
The ode satisfies this form
Where
Multiplying both sides of the ODE by the integrating factor
Integrating once gives
Integrating again gives
Hence the solution is
Or
Will add steps showing solving for IC soon.
Summary of solutions found
Time used: 0.122 (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
Since the roots are real and distinct, then the general solution is
Where
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.253 (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.074 (sec)
Solve
In normal form the given ode is written as
Where
Calculating the Liouville ode invariant
Since the Liouville ode invariant does not depend on the independent variable
is used to change the original ode to a constant coefficients ode in
Hence (3) becomes
Applying this change of variable to the original ode results in
Which is now solved for
The above ode can be simplified to
Integrating twice gives the solution
Will add steps showing solving for IC soon.
Now that
But from (5)
Hence (7) becomes
Will add steps showing solving for IC soon.
Summary of solutions found
Time used: 0.126 (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.143 (sec)
Solve
Given an ode of the form
This method reduces the order ode the ODE by one by applying the transformation
This results in
And now the original ode becomes
If the term
By Using
The above ode is first order ode which is solved for
This method works only if the term
The above shows that for this ode
Hence the ode in
Now by applying
Which is now solved for
The ode for
Which is now solved for
Replacing
Will add steps showing solving for IC soon.
Summary of solutions found
Time used: 0.048 (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
There are no poles in
Since
Using the above, the solution for the original ode can now be found. 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(x(t),t),t)-2*diff(x(t),t)*t+2*x(t) = 0; dsolve(ode,x(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[x[t],{t,2}]-2*D[x[t],t]+2*x[t]==0; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(t**2*Derivative(x(t), (t, 2)) - 2*t*Derivative(x(t), t) + 2*x(t),0) ics = {} dsolve(ode,func=x(t),ics=ics)