Internal
problem
ID
[5347]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Part
II.
Chapter
1.
THE
DIFFERENTIAL
EQUATION
IS
OF
FIRST
ORDER
AND
OF
FIRST
DEGREE,
page
223
Problem
number
:
740
Date
solved
:
Tuesday, September 30, 2025 at 12:32:59 PM
CAS
classification
:
unknown
ode:=diff(y(x),x)*cos(y(x))*(cos(y(x))-sin(A)*sin(x))+cos(x)*(cos(x)-sin(A)*sin(y(x))) = 0; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]*Cos[y[x]]*(Cos[y[x]]- Sin[A]*Sin[x])+Cos[x]*(Cos[x]-Sin[A]*Sin[y[x]])==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") A = symbols("A") y = Function("y") ode = Eq((-sin(A)*sin(x) + cos(y(x)))*cos(y(x))*Derivative(y(x), x) + (-sin(A)*sin(y(x)) + cos(x))*cos(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out