Internal
problem
ID
[24402]
Book
:
A
short
course
in
Differential
Equations.
Earl
D.
Rainville.
Second
edition.
1958.
Macmillan
Publisher,
NY.
CAT
58-5010
Section
:
Chapter
2.
Equations
of
the
first
order
and
first
degree.
Miscellaneous
Exercises
at
page
45
Problem
number
:
19
Date
solved
:
Thursday, October 02, 2025 at 10:25:08 PM
CAS
classification
:
[_separable]
ode:=diff(x(t),t) = cos(x(t))*cos(t)^2; dsolve(ode,x(t), singsol=all);
ode=D[x[t],t]==Cos[x[t]]*Cos[t]^2; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(-cos(t)**2*cos(x(t)) + Derivative(x(t), t),0) ics = {} dsolve(ode,func=x(t),ics=ics)
Timed Out