Internal
problem
ID
[9034]
Book
:
First
order
enumerated
odes
Section
:
section
1
Problem
number
:
50
Date
solved
:
Wednesday, March 05, 2025 at 07:15:03 AM
CAS
classification
:
[[_homogeneous, `class C`], _dAlembert]
Solve
Time used: 0.257 (sec)
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
Summary of solutions found
ode:=diff(y(x),x)^2 = x+y(x); dsolve(ode,y(x), singsol=all);
Maple trace
`Methods for first order ODEs: -> Solving 1st order ODE of high degree, 1st attempt trying 1st order WeierstrassP solution for high degree ODE trying 1st order WeierstrassPPrime solution for high degree ODE trying 1st order JacobiSN solution for high degree ODE trying 1st order ODE linearizable_by_differentiation trying differential order: 1; missing variables trying dAlembert <- dAlembert successful`
Maple step by step
ode=(D[y[x],x])^2==x+y[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x - y(x) + Derivative(y(x), x)**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)