Internal
problem
ID
[18622]
Book
:
Differential
equations.
An
introduction
to
modern
methods
and
applications.
James
Brannan,
William
E.
Boyce.
Third
edition.
Wiley
2015
Section
:
Chapter
2.
First
order
differential
equations.
Section
2.1
(Separable
equations).
Problems
at
page
44
Problem
number
:
36
Date
solved
:
Thursday, October 02, 2025 at 03:17:22 PM
CAS
classification
:
[_separable]
With initial conditions
ode:=diff(y(t),t) = t*y(t)*(4-y(t))/(t+1); ic:=[y(0) = 2]; dsolve([ode,op(ic)],y(t), singsol=all);
ode=D[y[t],t]==t*y[t]*(4-y[t])/(1+t); ic={y[0]==2}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
{}
from sympy import * t = symbols("t") y = Function("y") ode = Eq(-t*(4 - y(t))*y(t)/(t + 1) + Derivative(y(t), t),0) ics = {y(0): 2} dsolve(ode,func=y(t),ics=ics)