Internal
problem
ID
[5696]
Book
:
Differential
and
integral
calculus,
vol
II
By
N.
Piskunov.
1974
Section
:
Chapter
1
Problem
number
:
example
page
46
Date
solved
:
Sunday, March 30, 2025 at 10:02:47 AM
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)