Internal
problem
ID
[1156]
Book
:
Elementary
differential
equations
and
boundary
value
problems,
10th
ed.,
Boyce
and
DiPrima
Section
:
Section
2.2.
Page
48
Problem
number
:
28
Date
solved
:
Saturday, March 29, 2025 at 10:42:47 PM
CAS
classification
:
[_separable]
ode:=diff(y(t),t) = t*y(t)*(4-y(t))/(t+1); dsolve(ode,y(t), singsol=all);
ode=D[y[t],t] == t*y[t]*(4-y[t])/(1+t); ic={}; 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 = {} dsolve(ode,func=y(t),ics=ics)