Internal
problem
ID
[14182]
Book
:
An
elementary
treatise
on
differential
equations
by
Abraham
Cohen.
DC
heath
publishers.
1906
Section
:
Chapter
IV,
differential
equations
of
the
first
order
and
higher
degree
than
the
first.
Article
28.
Summary.
Page
59
Problem
number
:
Ex
1
Date
solved
:
Thursday, October 02, 2025 at 09:25:13 AM
CAS
classification
:
[_quadrature]
ode:=y(x)^2*(1+diff(y(x),x)^2) = a^2; dsolve(ode,y(x), singsol=all);
ode=y[x]^2*(1+(D[y[x],x])^2)==a^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**2 + (Derivative(y(x), x)**2 + 1)*y(x)**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)