Internal
problem
ID
[10053]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
67
Date
solved
:
Sunday, March 22, 2026 at 09:14:03 PM
CAS
classification
:
[[_2nd_order, _missing_x], [_2nd_order, _reducible, _mu_x_y1]]
20.399 (sec)
Entering second order ode missing \(x\) solverThis is missing independent variable second order ode. Solved by reduction of order by using substitution which makes the dependent variable \(y\) an independent variable. Using
Then
Hence the ode becomes
Which is now solved as first order ode for \(p(y)\).
Entering first order ode separable solverThe ode
is separable as it can be written as
Where
Integrating gives
Solving for \(p\) gives
For solution (1) found earlier, since \(p=y^{\prime }\) then the new first order ode to solve is
Entering first order ode autonomous solverUnable to integrate (or intergal too complicated), and since no initial conditions are given, then the result can be written as
Singular solutions are found by solving
for \(y\). This is because of dividing by the above earlier. This gives the following singular solution(s), which also has to satisfy the given ODE.
For solution (2) found earlier, since \(p=y^{\prime }\) then the new first order ode to solve is
Entering first order ode autonomous solverUnable to integrate (or intergal too complicated), and since no initial conditions are given, then the result can be written as
Singular solutions are found by solving
for \(y\). This is because of dividing by the above earlier. This gives the following singular solution(s), which also has to satisfy the given ODE.
The above solution was found not to satisfy the ode or the IC. Hence it is removed.
Summary of solutions found
ode:=3*y(x)*diff(diff(y(x),x),x)+y(x) = 5; dsolve(ode,y(x), singsol=all);
Maple trace
Methods for second order ODEs: --- Trying classification methods --- trying 2nd order Liouville trying 2nd order WeierstrassP trying 2nd order JacobiSN differential order: 2; trying a linearization to 3rd order trying 2nd order ODE linearizable_by_differentiation trying 2nd order, 2 integrating factors of the form mu(x,y) trying differential order: 2; missing variables -> Computing symmetries using: way = 3 -> Computing symmetries using: way = exp_sym -> Calling odsolve with the ODE, diff(_b(_a),_a)*_b(_a)+1/3*(_a-5)/_a = 0, _b( _a) *** Sublevel 2 *** Methods for first order ODEs: --- Trying classification methods --- trying a quadrature trying 1st order linear trying Bernoulli <- Bernoulli successful <- differential order: 2; canonical coordinates successful <- differential order 2; missing variables successful
ode=3*y[x]*D[y[x],{x,2}]+y[x]==5; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(3*y(x)*Derivative(y(x), (x, 2)) + y(x) - 5,0) ics = {} dsolve(ode,func=y(x),ics=ics)
Python version: 3.12.3 (main, Aug 14 2025, 17:47:21) [GCC 13.3.0] Sympy version 1.14.0
classify_ode(ode,func=y(x)) ('2nd_nonlinear_autonomous_conserved', '2nd_nonlinear_autonomous_conserved_Integral')