Internal
problem
ID
[5074]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Various
17
Problem
number
:
476
Date
solved
:
Sunday, March 30, 2025 at 06:35:23 AM
CAS
classification
:
[_separable]
ode:=3*y(x)*diff(y(x),x)+5*cot(x)*cot(y(x))*cos(y(x))^2 = 0; dsolve(ode,y(x), singsol=all);
ode=3 y[x] D[y[x],x]+5 Cot[x] Cot[y[x]] Cos[y[x]]^2==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(3*y(x)*Derivative(y(x), x) + 5*cos(y(x))**2/(tan(x)*tan(y(x))),0) ics = {} dsolve(ode,func=y(x),ics=ics)