Internal
problem
ID
[5689]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Part
II.
Chapter
2.
THE
DIFFERENTIAL
EQUATION
IS
OF
FIRST
ORDER
AND
OF
SECOND
OR
HIGHER
DEGREE,
page
278
Problem
number
:
376
Date
solved
:
Tuesday, September 30, 2025 at 01:57:53 PM
CAS
classification
:
[_quadrature]
ode:=(1+diff(y(x),x)^2)^(1/2)+a*diff(y(x),x) = x; dsolve(ode,y(x), singsol=all);
ode=Sqrt[1+(D[y[x],x])^2]+ a*D[y[x],x]==x; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") y = Function("y") ode = Eq(a*Derivative(y(x), x) - x + sqrt(Derivative(y(x), x)**2 + 1),0) ics = {} dsolve(ode,func=y(x),ics=ics)