Internal
problem
ID
[13234]
Book
:
Differential
Equations
by
Shepley
L.
Ross.
Third
edition.
John
Willey.
New
Delhi.
2004.
Section
:
Chapter
2,
section
2.2
(Separable
equations).
Exercises
page
47
Problem
number
:
16
Date
solved
:
Monday, March 31, 2025 at 07:42:27 AM
CAS
classification
:
[_separable]
With initial conditions
ode:=8*cos(y(x))^2+csc(x)^2*diff(y(x),x) = 0; ic:=y(1/12*Pi) = 1/4*Pi; dsolve([ode,ic],y(x), singsol=all);
ode=(8*Cos[y[x]]^2)+Csc[x]^2*D[y[x],x]==0; ic={y[Pi/12]==Pi/4}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(8*cos(y(x))**2 + Derivative(y(x), x)/sin(x)**2,0) ics = {y(pi/12): pi/4} dsolve(ode,func=y(x),ics=ics)
Timed Out