Internal
problem
ID
[5703]
Book
:
Differential
Equations,
By
George
Boole
F.R.S.
1865
Section
:
Chapter
2
Problem
number
:
1.5
Date
solved
:
Sunday, March 30, 2025 at 10:03:20 AM
CAS
classification
:
[_separable]
ode:=sin(x)*cos(y(x))-cos(x)*sin(y(x))*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=Sin[x]*Cos[y[x]]-Cos[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(sin(x)*cos(y(x)) - sin(y(x))*cos(x)*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)