Internal
problem
ID
[15989]
Book
:
INTRODUCTORY
DIFFERENTIAL
EQUATIONS.
Martha
L.
Abell,
James
P.
Braselton.
Fourth
edition
2014.
ElScAe.
2014
Section
:
Chapter
2.
First
Order
Equations.
Exercises
2.4,
page
57
Problem
number
:
38
Date
solved
:
Monday, March 31, 2025 at 02:22:09 PM
CAS
classification
:
[_exact]
With initial conditions
ode:=cos(t)^2-sin(t)^2+y(t)+(sec(y(t))*tan(y(t))+t)*diff(y(t),t) = 0; ic:=y(0) = 0; dsolve([ode,ic],y(t), singsol=all);
ode=(Cos[t]^2-Sin[t]^2+y[t])+(Sec[y[t]]*Tan[y[t]]+t)*D[y[t],t]==0; ic={y[0]==0}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq((t + tan(y(t))/cos(y(t)))*Derivative(y(t), t) + y(t) - sin(t)**2 + cos(t)**2,0) ics = {y(0): 0} dsolve(ode,func=y(t),ics=ics)
Timed Out