Internal
problem
ID
[19488]
Book
:
A
Text
book
for
differentional
equations
for
postgraduate
students
by
Ray
and
Chaturvedi.
First
edition,
1958.
BHASKAR
press.
INDIA
Section
:
Book
Solved
Excercises.
Chapter
V.
Singular
solutions
Problem
number
:
Ex
2
page
69
Date
solved
:
Thursday, March 13, 2025 at 02:40:03 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)