Internal
problem
ID
[4218]
Book
:
Advanced
Mathematica,
Book2,
Perkin
and
Perkin,
1992
Section
:
Chapter
11.3,
page
316
Problem
number
:
6
Date
solved
:
Tuesday, September 30, 2025 at 07:07:35 AM
CAS
classification
:
[_quadrature]
ode:=diff(y(x),x) = 3*cos(y(x))^2; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==3*Cos[y[x]]^2; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-3*cos(y(x))**2 + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)