Internal
problem
ID
[2340]
Book
:
Differential
equations
and
their
applications,
3rd
ed.,
M.
Braun
Section
:
Section
1.9.
Page
66
Problem
number
:
5
Date
solved
:
Saturday, March 29, 2025 at 11:56:50 PM
CAS
classification
:
[_exact, [_Abel, `2nd type`, `class A`]]
ode:=sec(t)*tan(t)+sec(t)^2*y(t)+(tan(t)+2*y(t))*diff(y(t),t) = 0; dsolve(ode,y(t), singsol=all);
ode=Sec[t]*Tan[t]+Sec[t]^2*y[t]+(Tan[t]+2*y[t])*D[y[t],t]== 0; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq((2*y(t) + tan(t))*Derivative(y(t), t) + y(t)/cos(t)**2 + tan(t)/cos(t),0) ics = {} dsolve(ode,func=y(t),ics=ics)
Timed Out