Internal
problem
ID
[1173]
Book
:
Elementary
differential
equations
and
boundary
value
problems,
10th
ed.,
Boyce
and
DiPrima
Section
:
Section
2.4.
Page
76
Problem
number
:
12
Date
solved
:
Saturday, March 29, 2025 at 10:44:27 PM
CAS
classification
:
[_separable]
ode:=diff(y(t),t) = cot(t)*y(t)/(1+y(t)); dsolve(ode,y(t), singsol=all);
ode=D[y[t],t] == Cot[t]*y[t]/(1+y[t]); ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(Derivative(y(t), t) - y(t)/((y(t) + 1)*tan(t)),0) ics = {} dsolve(ode,func=y(t),ics=ics)