Internal
problem
ID
[18628]
Book
:
A
short
course
on
differential
equations.
By
Donald
Francis
Campbell.
Maxmillan
company.
London.
1907
Section
:
Chapter
VI.
Certain
particular
forms
of
equations.
Exercises
at
page
74
Problem
number
:
11
Date
solved
:
Thursday, March 13, 2025 at 12:26:52 PM
CAS
classification
:
[[_homogeneous, `class C`], _dAlembert]
ode:=x = y(x)+diff(y(x),x)^2; dsolve(ode,y(x), singsol=all);
ode=x==y[x]+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(x - y(x) - Derivative(y(x), x)**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)