Internal
problem
ID
[6632]
Book
:
Schaums
Outline.
Theory
and
problems
of
Differential
Equations,
1st
edition.
Frank
Ayres.
McGraw
Hill
1952
Section
:
Chapter
5.
Equations
of
first
order
and
first
degree
(Exact
equations).
Supplemetary
problems.
Page
33
Problem
number
:
26
(b)
Date
solved
:
Wednesday, March 05, 2025 at 01:34:03 AM
CAS
classification
:
[_separable]
ode:=1+y(x)^2 = (x^2+x)*diff(y(x),x); dsolve(ode,y(x), singsol=all);
ode=1+y[x]^2==(x+x^2)*D[y[x],x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((-x**2 - x)*Derivative(y(x), x) + y(x)**2 + 1,0) ics = {} dsolve(ode,func=y(x),ics=ics)