Internal
problem
ID
[9090]
Book
:
Second
order
enumerated
odes
Section
:
section
1
Problem
number
:
19
Date
solved
:
Sunday, March 30, 2025 at 02:06:45 PM
CAS
classification
:
[[_2nd_order, _missing_y]]
Time used: 0.969 (sec)
Solve
This is second order ode with missing dependent variable
Then
Hence the ode becomes
Which is now solved for
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
Integrating gives
Singular solutions are found by solving
for
Substituing the above solution for
In summary, these are the solution found for
For solution
Since the ode has the form
For solution
Since the ode has the form
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+diff(y(x),x) = 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 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 -> Calling odsolve with the ODE, diff(_b(_a),_a) = (_a-_b(_a))^(1/2), _b(_a) , HINT = [[1, 1]] *** Sublevel 3 *** symmetry methods on request 1st order, trying reduction of order with given symmetries: [1, 1] 1st order, trying the canonical coordinates of the invariance group -> Calling odsolve with the ODE, diff(y(x),x) = 1, y(x) *** Sublevel 4 *** Methods for first order ODEs: --- Trying classification methods --- trying a quadrature trying 1st order linear <- 1st order linear successful <- 1st order, canonical coordinates successful <- differential order: 2; canonical coordinates successful <- differential order 2; missing variables successful ------------------- * Tackling next ODE. *** Sublevel 2 *** 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 -> Calling odsolve with the ODE, diff(_b(_a),_a) = -(_a-_b(_a))^(1/2), _b(_a ), HINT = [[1, 1]] *** Sublevel 3 *** symmetry methods on request 1st order, trying reduction of order with given symmetries: [1, 1] 1st order, trying the canonical coordinates of the invariance group <- 1st order, canonical coordinates successful <- differential order: 2; canonical coordinates successful <- differential order 2; missing variables successful
ode=(D[y[x],{x,2}])^2+D[y[x],x]==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) + Derivative(y(x), (x, 2))**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : multiple generators [log(sqrt(-_X0 + x) + 1), sqrt(-_X0 + x)] No algorithms are implemented to solve equation C1 + x - 2*sqrt(-_X0 + x) + 2*log(sqrt(-_X0 + x) + 1)