Internal
problem
ID
[13878]
Book
:
APPLIED
DIFFERENTIAL
EQUATIONS
The
Primary
Course
by
Vladimir
A.
Dobrushkin.
CRC
Press
2015
Section
:
Chapter
2,
First
Order
Equations.
Problems
page
149
Problem
number
:
Problem
1(b)
Date
solved
:
Monday, March 31, 2025 at 08:16:00 AM
CAS
classification
:
[_separable]
ode:=x^2*diff(y(x),x) = 1+y(x)^2; dsolve(ode,y(x), singsol=all);
ode=x^2*D[y[x],x]==1+y[x]^2; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x**2*Derivative(y(x), x) - y(x)**2 - 1,0) ics = {} dsolve(ode,func=y(x),ics=ics)