Internal
problem
ID
[4087]
Book
:
Applied
Differential
equations,
Newby
Curle.
Van
Nostrand
Reinhold.
1972
Section
:
Examples,
page
35
Problem
number
:
1
Date
solved
:
Tuesday, September 30, 2025 at 07:02:28 AM
CAS
classification
:
[_quadrature]
ode:=y(x) = diff(y(x),x)+1/2*diff(y(x),x)^2; dsolve(ode,y(x), singsol=all);
ode=y[x]==D[y[x],x]+1/2*(D[y[x],x])^2; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(y(x) - Derivative(y(x), x)**2/2 - Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)