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]
ode:=y(x)-x = diff(y(x),x)^2*(1-2/3*diff(y(x),x)); dsolve(ode,y(x), singsol=all);
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