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