Internal
problem
ID
[5324]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Various
26
Problem
number
:
736
Date
solved
:
Sunday, March 30, 2025 at 07:57:13 AM
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