Internal
problem
ID
[3668]
Book
:
Differential
equations
and
linear
algebra,
Stephen
W.
Goode
and
Scott
A
Annin.
Fourth
edition,
2015
Section
:
Chapter
1,
First-Order
Differential
Equations.
Section
1.8,
Change
of
Variables.
page
79
Problem
number
:
Problem
49
Date
solved
:
Tuesday, March 04, 2025 at 05:04:42 PM
CAS
classification
:
[_Bernoulli]
ode:=2*diff(y(x),x)+y(x)*cot(x) = 8/y(x)*cos(x)^3; dsolve(ode,y(x), singsol=all);
ode=2*D[y[x],x]+y[x]*Cot[x]==8/y[x]*Cos[x]^3; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(y(x)/tan(x) + 2*Derivative(y(x), x) - 8*cos(x)**3/y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)