Internal
problem
ID
[9079]
Book
:
Second
order
enumerated
odes
Section
:
section
1
Problem
number
:
8
Date
solved
:
Sunday, March 30, 2025 at 02:06:24 PM
CAS
classification
:
[[_2nd_order, _quadrature]]
Time used: 0.665 (sec)
Solve
This is missing independent variable second order ode. Solved by reduction of order by using substitution which makes the dependent variable
Then
Hence the ode becomes
Which is now solved as first order ode for
Solving for the derivative gives these ODE’s to solve
Now each of the above is solved separately.
Solving Eq. (1)
Integrating gives
Solving Eq. (2)
Integrating gives
For solution (1) found earlier, since
Let
Solving for
This has the form
Where
Taking derivative of (*) w.r.t.
Comparing the form
Hence (2) becomes
The singular solution is found by setting
Solving the above for
Substituting these in (1A) and keeping singular solution that verifies the ode gives
The general solution is found when
This ODE is now solved for
Since the ode has the form
Substituing the above solution for
Will add steps showing solving for IC soon.
The solution
was found not to satisfy the ode or the IC. Hence it is removed.
Summary of solutions found
Time used: 0.252 (sec)
Solve
This is second order ode with missing dependent variable
Then
Hence the ode becomes
Which is now solved for
Solving for the derivative gives these ODE’s to solve
Now each of the above is solved separately.
Solving Eq. (1)
Since the ode has the form
Solving Eq. (2)
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
ode:=diff(diff(y(x),x),x)^2 = 1; dsolve(ode,y(x), singsol=all);
Maple trace
Methods for second order ODEs: --- Trying classification methods --- trying a quadrature <- quadrature successful Methods for second order ODEs: --- Trying classification methods --- trying a quadrature <- quadrature successful
Maple step by step
ode=(D[y[x],{x,2}])^2==1; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), (x, 2))**2 - 1,0) ics = {} dsolve(ode,func=y(x),ics=ics)