Internal
problem
ID
[18782]
Book
:
Introductory
Course
On
Differential
Equations
by
Daniel
A
Murray.
Longmans
Green
and
Co.
NY.
1924
Section
:
Chapter
IV.
Singular
solutions.
problems
at
page
45
Problem
number
:
Ex.
1
Date
solved
:
Monday, March 31, 2025 at 06:14:25 PM
CAS
classification
:
[_quadrature]
ode:=y(x)^2*(1+diff(y(x),x)^2) = r^2; dsolve(ode,y(x), singsol=all);
ode=y[x]^2*(1+D[y[x],x])^2==r^2; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") r = symbols("r") y = Function("y") ode = Eq(-r**2 + (Derivative(y(x), x)**2 + 1)*y(x)**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)