Internal
problem
ID
[10366]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
359
Date
solved
:
Wednesday, March 05, 2025 at 10:37:42 AM
CAS
classification
:
[_separable]
ode:=3*diff(y(x),x)*sin(x)*sin(y(x))+5*cos(x)^4*y(x) = 0; dsolve(ode,y(x), singsol=all);
ode=5*Cos[x]^4*y[x] + 3*Sin[x]*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(5*y(x)*cos(x)**4 + 3*sin(x)*sin(y(x))*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)