Internal
problem
ID
[13317]
Book
:
Differential
Equations
by
Shepley
L.
Ross.
Third
edition.
John
Willey.
New
Delhi.
2004.
Section
:
Chapter
2,
Section
2.4.
Special
integrating
factors
and
transformations.
Exercises
page
67
Problem
number
:
14
Date
solved
:
Monday, March 31, 2025 at 07:51:22 AM
CAS
classification
:
[[_homogeneous, `class C`], _rational, [_Abel, `2nd type`, `class A`]]
With initial conditions
ode:=4*x+3*y(x)+1+(x+y(x)+1)*diff(y(x),x) = 0; ic:=y(3) = -4; dsolve([ode,ic],y(x), singsol=all);
ode=(4*x+3*y[x]+1)+(x+y[x]+1)*D[y[x],x]==0; ic={y[-2]==2}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(4*x + (x + y(x) + 1)*Derivative(y(x), x) + 3*y(x) + 1,0) ics = {y(3): -4} dsolve(ode,func=y(x),ics=ics)
ValueError : Couldnt solve for initial conditions