Internal
problem
ID
[9080]
Book
:
Second
order
enumerated
odes
Section
:
section
1
Problem
number
:
10
Date
solved
:
Friday, April 25, 2025 at 05:40:21 PM
CAS
classification
:
[[_2nd_order, _quadrature]]
Time used: 0.478 (sec)
Solve
This is second order ode with missing dependent variable
Then
Hence the ode becomes
Which is now solved for
Time used: 0.109 (sec)
Let
Isolating
Now we generate an ode in
Which is now solved for
Since the ode has the form
Now that we have found solution
Eliminating
Summary of solutions found
In summary, these are the solution found for
For solution
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
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)