Internal
problem
ID
[19405]
Book
:
DIFFERENTIAL
EQUATIONS
WITH
APPLICATIONS
AND
HISTORICAL
NOTES
by
George
F.
Simmons.
3rd
edition.
2017.
CRC
press,
Boca
Raton
FL.
Section
:
Chapter
2.
First
order
equations.
Section
7
(Homogeneous
Equations).
Problems
at
page
67
Problem
number
:
5
(d)
Date
solved
:
Thursday, October 02, 2025 at 04:22:36 PM
CAS
classification
:
[[_homogeneous, `class C`], _rational, [_Abel, `2nd type`, `class A`]]
ode:=diff(y(x),x) = (x+y(x)-1)/(x+4*y(x)+2); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==(x+y[x]-1)/(x+4*y[x]+2); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Too large to display
from sympy import * x = symbols("x") y = Function("y") ode = Eq((-x - y(x) + 1)/(x + 4*y(x) + 2) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out