Internal
problem
ID
[9170]
Book
:
Differential
Equations:
Theory,
Technique,
and
Practice
by
George
Simmons,
Steven
Krantz.
McGraw-Hill
NY.
2007.
1st
Edition.
Section
:
Chapter
1.
What
is
a
differential
equation.
Section
1.7.
Homogeneous
Equations.
Page
28
Problem
number
:
4(d)
Date
solved
:
Tuesday, September 30, 2025 at 06:11:29 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