Internal
problem
ID
[8768]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
56
Date
solved
:
Sunday, March 30, 2025 at 01:30:50 PM
CAS
classification
:
[[_2nd_order, _quadrature]]
Time used: 0.049 (sec)
Solve
Integrating once gives
Integrating again gives
Will add steps showing solving for IC soon.
Summary of solutions found
Time used: 0.118 (sec)
Solve
This is second order non-homogeneous ODE. In standard form the ODE is
Where
Where
This is second order with constant coefficients homogeneous ODE. In standard form the ODE is
Where in the above
Since
exponential function is never zero, then dividing Eq(2) throughout by
Equation (2) is the characteristic equation of the ODE. Its roots determine the general solution form.Using the quadratic formula
Substituting
Hence this is the case of a double root
Therefore the homogeneous solution
The particular solution
Where
In the Variation of parameters
Where
Which gives
Therefore
Which simplifies to
Which simplifies to
Therefore Eq. (2) becomes
Which simplifies to
Hence
And Eq. (3) becomes
Which simplifies to
Hence
Therefore the particular solution, from equation (1) is
Therefore the general solution is
Will add steps showing solving for IC soon.
Summary of solutions found
Time used: 0.141 (sec)
Solve
An ode of the form
is exact if
For the given ode we have
Hence
Therefore (1) becomes
Hence the ode is exact. Since we now know the ode is exact, it can be written as
Integrating gives
Substituting the above values for
We now have a first order ode to solve which is
Since the ode has the form
Will add steps showing solving for IC soon.
Summary of solutions found
Time used: 0.080 (sec)
Solve
This is second order ode with missing dependent variable
Then
Hence the ode becomes
Which is now solved for
Since the ode has the form
In summary, these are the solution found for
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.087 (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
Since
Which simplifies to
The second solution
Since
Therefore the solution is
This is second order nonhomogeneous ODE. Let the solution be
Where
The homogeneous solution is found using the Kovacic algorithm which results in
The particular solution
Where
In the Variation of parameters
Where
Which gives
Therefore
Which simplifies to
Which simplifies to
Therefore Eq. (2) becomes
Which simplifies to
Hence
And Eq. (3) becomes
Which simplifies to
Hence
Therefore the particular solution, from equation (1) is
Therefore the general solution is
Will add steps showing solving for IC soon.
Summary of solutions found
ode:=diff(diff(y(t),t),t) = f(t); dsolve(ode,y(t), singsol=all);
Maple trace
Methods for second order ODEs: --- Trying classification methods --- trying a quadrature <- quadrature successful
Maple step by step
ode=D[y[t],{t,2}]==f[t]; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(-f(t) + Derivative(y(t), (t, 2)),0) ics = {} dsolve(ode,func=y(t),ics=ics)