Internal
problem
ID
[9081]
Book
:
Second
order
enumerated
odes
Section
:
section
1
Problem
number
:
10
Date
solved
:
Sunday, March 30, 2025 at 02:06:27 PM
CAS
classification
:
[[_2nd_order, _quadrature]]
Time used: 0.363 (sec)
Solve
This is second order ode with missing dependent variable \(y\). Let
Then
Hence the ode becomes
Which is now solved for \(u(x)\) as first order ode.
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 \(u^{\prime }=f(x)\), then we only need to integrate \(f(x)\).
Solving Eq. (2)
Since the ode has the form \(u^{\prime }=f(x)\), then we only need to integrate \(f(x)\).
In summary, these are the solution found for \(u(x)\)
For solution \(u = \frac {2 x^{{3}/{2}}}{3}+c_1\), since \(u=y^{\prime }\left (x \right )\) then we now have a new first order ode to solve which is
Since the ode has the form \(y^{\prime }=f(x)\), then we only need to integrate \(f(x)\).
In summary, these are the solution found for \((y)\)
Will add steps showing solving for IC soon.
Summary of solutions found
ode:=diff(diff(y(x),x),x)^2 = x; dsolve(ode,y(x), singsol=all);
Maple trace
Methods for second order ODEs: Successful isolation of d^2y/dx^2: 2 solutions were found. Trying to solve each\ resulting ODE. *** Sublevel 2 *** Methods for second order ODEs: --- Trying classification methods --- trying a quadrature <- quadrature successful ------------------- * Tackling next ODE. *** Sublevel 2 *** Methods for second order ODEs: --- Trying classification methods --- trying a quadrature <- quadrature successful
ode=(D[y[x],{x,2}])^2==x; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x + Derivative(y(x), (x, 2))**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)