Internal
problem
ID
[16083]
Book
:
INTRODUCTORY
DIFFERENTIAL
EQUATIONS.
Martha
L.
Abell,
James
P.
Braselton.
Fourth
edition
2014.
ElScAe.
2014
Section
:
Chapter
2.
First
Order
Equations.
Review
exercises,
page
80
Problem
number
:
18
Date
solved
:
Monday, March 31, 2025 at 02:41:13 PM
CAS
classification
:
[_exact]
ode:=tan(y(t))-t+(t*sec(y(t))^2+1)*diff(y(t),t) = 0; dsolve(ode,y(t), singsol=all);
ode=(Tan[y[t]]-t)+(t*Sec[y[t]]^2+1)*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(-t + (t/cos(y(t))**2 + 1)*Derivative(y(t), t) + tan(y(t)),0) ics = {} dsolve(ode,func=y(t),ics=ics)
Timed Out