Internal
problem
ID
[2358]
Book
:
Differential
equations
and
their
applications,
3rd
ed.,
M.
Braun
Section
:
Section
1.10.
Page
80
Problem
number
:
15
Date
solved
:
Saturday, March 29, 2025 at 11:59:00 PM
CAS
classification
:
[_Bernoulli]
With initial conditions
ode:=diff(y(t),t) = 1/4*(1+cos(4*t))*y(t)-1/800*(1-cos(4*t))*y(t)^2; ic:=y(0) = 100; dsolve([ode,ic],y(t), singsol=all);
ode=D[y[t],t]==1/4*(1+Cos[4*t])*y[t]-1/800*(1-Cos[4*t])*y[t]^2; ic={y[0]==100}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq((1 - cos(4*t))*y(t)**2/800 - (cos(4*t) + 1)*y(t)/4 + Derivative(y(t), t),0) ics = {y(0): 100} dsolve(ode,func=y(t),ics=ics)