Internal
problem
ID
[5797]
Book
:
Ordinary
Differential
Equations,
By
Tenenbaum
and
Pollard.
Dover,
NY
1963
Section
:
Chapter
2.
Special
types
of
differential
equations
of
the
first
kind.
Lesson
8
Problem
number
:
Differential
equations
with
Linear
Coefficients.
Exercise
8.13,
page
69
Date
solved
:
Sunday, March 30, 2025 at 10:18:03 AM
CAS
classification
:
[[_homogeneous, `class C`], _rational, [_Abel, `2nd type`, `class A`]]
With initial conditions
ode:=y(x)+7+(2*x+y(x)+3)*diff(y(x),x) = 0; ic:=y(0) = 1; dsolve([ode,ic],y(x), singsol=all);
ode=(y[x]+7)+(2*x+y[x]+3)*D[y[x],x]==0; ic=y[0]==1; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((2*x + y(x) + 3)*Derivative(y(x), x) + y(x) + 7,0) ics = {y(0): 1} dsolve(ode,func=y(x),ics=ics)
Timed Out