Internal
problem
ID
[16067]
Book
:
INTRODUCTORY
DIFFERENTIAL
EQUATIONS.
Martha
L.
Abell,
James
P.
Braselton.
Fourth
edition
2014.
ElScAe.
2014
Section
:
Chapter
2.
First
Order
Equations.
Review
exercises,
page
80
Problem
number
:
2
Date
solved
:
Monday, March 31, 2025 at 02:38:31 PM
CAS
classification
:
[_separable]
ode:=cos(4*x)-8*sin(y(x))*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=Cos[4*x]-8*Sin[y[x]]*D[y[x],x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-8*sin(y(x))*Derivative(y(x), x) + cos(4*x),0) ics = {} dsolve(ode,func=y(x),ics=ics)