Internal
problem
ID
[2923]
Book
:
Differential
Equations
by
Alfred
L.
Nelson,
Karl
W.
Folley,
Max
Coral.
3rd
ed.
DC
heath.
Boston.
1964
Section
:
Exercise
8,
page
34
Problem
number
:
11
Date
solved
:
Tuesday, September 30, 2025 at 06:07:11 AM
CAS
classification
:
[_exact]
ode:=3*sin(x)*y(x)-cos(y(x))+(x*sin(y(x))-3*cos(x))*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=(3*y[x]*Sin[x]-Cos[y[x]])+(x*Sin[y[x]]-3*Cos[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((x*sin(y(x)) - 3*cos(x))*Derivative(y(x), x) + 3*y(x)*sin(x) - cos(y(x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out