Internal
problem
ID
[17990]
Book
:
DIFFERENTIAL
EQUATIONS
WITH
APPLICATIONS
AND
HISTORICAL
NOTES
by
George
F.
Simmons.
3rd
edition.
2017.
CRC
press,
Boca
Raton
FL.
Section
:
Chapter
1.
The
Nature
of
Differential
Equations.
Separable
Equations.
Section
2.
Problems
at
page
9
Problem
number
:
1
(o)
Date
solved
:
Thursday, March 13, 2025 at 11:18:28 AM
CAS
classification
:
[_quadrature]
ode:=1+y(x)^2+y(x)^2*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=1+y[x]^2+y[x]^2*D[y[x],x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(y(x)**2*Derivative(y(x), x) + y(x)**2 + 1,0) ics = {} dsolve(ode,func=y(x),ics=ics)