Internal
problem
ID
[6901]
Book
:
Differential
Equations,
By
George
Boole
F.R.S.
1865
Section
:
Chapter
7
Problem
number
:
17
Date
solved
:
Tuesday, September 30, 2025 at 04:02:38 PM
CAS
classification
:
[[_1st_order, _with_linear_symmetries], _dAlembert]
ode:=x+y(x)*diff(y(x),x) = a*(1+diff(y(x),x)^2)^(1/2); dsolve(ode,y(x), singsol=all);
ode=x+y[x]*D[y[x],x]==a*Sqrt[1+(D[y[x],x])^2]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") y = Function("y") ode = Eq(-a*sqrt(Derivative(y(x), x)**2 + 1) + x + y(x)*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out