Internal
problem
ID
[4089]
Book
:
Applied
Differential
equations,
Newby
Curle.
Van
Nostrand
Reinhold.
1972
Section
:
Examples,
page
35
Problem
number
:
3
Date
solved
:
Tuesday, March 04, 2025 at 05:25:26 PM
CAS
classification
:
[[_homogeneous, `class C`], _dAlembert]
Solve
Time used: 0.708 (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
Substituing the above solution for
Summary of solutions found
ode:=y(x)-x = diff(y(x),x)^2*(1-2/3*diff(y(x),x)); dsolve(ode,y(x), singsol=all);
Maple trace
`Methods for first order ODEs: *** Sublevel 2 *** 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=y[x]-x==D[y[x],x]^2*(1-2/3* D[y[x],x]); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Too large to display
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x - (1 - 2*Derivative(y(x), x)/3)*Derivative(y(x), x)**2 + y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out