Internal
problem
ID
[6038]
Book
:
A
treatise
on
ordinary
and
partial
differential
equations
by
William
Woolsey
Johnson.
1913
Section
:
Chapter
2,
Equations
of
the
first
order
and
degree.
page
20
Problem
number
:
8
Date
solved
:
Wednesday, March 05, 2025 at 12:10:22 AM
CAS
classification
:
[_separable]
ode:=sin(x)*cos(y(x)) = cos(x)*sin(y(x))*diff(y(x),x); dsolve(ode,y(x), singsol=all);
ode=Sin[x]*Cos[y[x]]==Cos[x]*Sin[y[x]]*D[y[x],x]; 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)