Internal
problem
ID
[24251]
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.
Exercises
at
page
21
Problem
number
:
16
Date
solved
:
Thursday, October 02, 2025 at 10:02:00 PM
CAS
classification
:
[_separable]
ode:=diff(x(t),t) = sin(x(t))^2*cos(t)^3; dsolve(ode,x(t), singsol=all);
ode=D[x[t],t]==Sin[ x[t] ]^2 *Cos[t]^3; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(-sin(x(t))**2*cos(t)**3 + Derivative(x(t), t),0) ics = {} dsolve(ode,func=x(t),ics=ics)