Internal
problem
ID
[18664]
Book
:
Differential
equations.
An
introduction
to
modern
methods
and
applications.
James
Brannan,
William
E.
Boyce.
Third
edition.
Wiley
2015
Section
:
Chapter
2.
First
order
differential
equations.
Section
2.4
(Differences
between
linear
and
nonlinear
equations).
Problems
at
page
79
Problem
number
:
6
Date
solved
:
Thursday, October 02, 2025 at 03:19:16 PM
CAS
classification
:
[_linear]
With initial conditions
ode:=ln(t)*diff(y(t),t)+y(t) = cot(t); ic:=[y(2) = 3]; dsolve([ode,op(ic)],y(t), singsol=all);
ode=Log[t]*D[y[t],t]+y[t]==Cot[t]; ic={y[2]==3}; 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 = {y(2): 3} dsolve(ode,func=y(t),ics=ics)
Timed Out