Internal
problem
ID
[17203]
Book
:
INTRODUCTORY
DIFFERENTIAL
EQUATIONS.
Martha
L.
Abell,
James
P.
Braselton.
Fourth
edition
2014.
ElScAe.
2014
Section
:
Chapter
2.
First
Order
Equations.
Exercises
2.2,
page
39
Problem
number
:
23
Date
solved
:
Thursday, October 02, 2025 at 01:52:25 PM
CAS
classification
:
[_separable]
ode:=tan(y(x))*sec(y(x))^2*diff(y(x),x)+cos(2*x)^3*sin(2*x) = 0; dsolve(ode,y(x), singsol=all);
ode=Tan[y[x]]*Sec[y[x]]^2*D[y[x],x]+Cos[2*x]^3*Sin[2*x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(sin(2*x)*cos(2*x)**3 + tan(y(x))*Derivative(y(x), x)/cos(y(x))**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)