Internal
problem
ID
[6903]
Book
:
Differential
Equations,
By
George
Boole
F.R.S.
1865
Section
:
Chapter
7
Problem
number
:
19
Date
solved
:
Tuesday, September 30, 2025 at 04:03:16 PM
CAS
classification
:
[[_homogeneous, `class C`], _dAlembert]
ode:=y(x)-1/(1+diff(y(x),x)^2)^(1/2) = x+diff(y(x),x)/(1+diff(y(x),x)^2)^(1/2); dsolve(ode,y(x), singsol=all);
ode=y[x]-1/Sqrt[1+(D[y[x],x])^2]==(x+D[y[x],x]/Sqrt[1+(D[y[x],x])^2]); 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 + y(x) - Derivative(y(x), x)/sqrt(Derivative(y(x), x)**2 + 1) - 1/sqrt(Derivative(y(x), x)**2 + 1),0) ics = {} dsolve(ode,func=y(x),ics=ics)