Internal
problem
ID
[10359]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
352
Date
solved
:
Sunday, March 30, 2025 at 04:25:03 PM
CAS
classification
:
unknown
ode:=diff(y(x),x)*(cos(y(x))-sin(alpha)*sin(x))*cos(y(x))+(cos(x)-sin(alpha)*sin(y(x)))*cos(x) = 0; dsolve(ode,y(x), singsol=all);
ode=Cos[x]*(Cos[x] - Sin[\[Alpha]]*Sin[y[x]]) + Cos[y[x]]*(Cos[y[x]] - Sin[\[Alpha]]*Sin[x])*D[y[x],x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") Alpha = symbols("Alpha") y = Function("y") ode = Eq((-sin(Alpha)*sin(x) + cos(y(x)))*cos(y(x))*Derivative(y(x), x) + (-sin(Alpha)*sin(y(x)) + cos(x))*cos(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out