Internal
problem
ID
[7259]
Book
:
Mathematical
Methods
in
the
Physical
Sciences.
third
edition.
Mary
L.
Boas.
John
Wiley.
2006
Section
:
Chapter
8,
Ordinary
differential
equations.
Section
4.
OTHER
METHODS
FOR
FIRST-ORDER
EQUATIONS.
page
406
Problem
number
:
6
Date
solved
:
Tuesday, September 30, 2025 at 04:26:29 PM
CAS
classification
:
unknown
ode:=cos(x)*cos(y(x))+sin(x)^2-(sin(x)*sin(y(x))+cos(y(x))^2)*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=(Cos[x]*Cos[y[x]]+Sin[x]^2)-(Sin[x]*Sin[y[x]]+Cos[y[x]]^2)*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)*sin(y(x)) - cos(y(x))**2)*Derivative(y(x), x) + sin(x)**2 + cos(x)*cos(y(x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out