Internal
problem
ID
[8782]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
70
Date
solved
:
Sunday, March 30, 2025 at 01:35:41 PM
CAS
classification
:
[[_2nd_order, _quadrature]]
Time used: 0.530 (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
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
ode:=a*y(x)*diff(diff(y(x),x),x)+b*y(x) = 0; dsolve(ode,y(x), singsol=all);
Maple trace
Methods for second order ODEs: --- Trying classification methods --- trying a quadrature <- quadrature successful
Maple step by step
ode=a*y[x]*D[y[x],{x,2}]+b*y[x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") y = Function("y") ode = Eq(a*y(x)*Derivative(y(x), (x, 2)) + b*y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)