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