Internal
problem
ID
[5674]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Various
37
Problem
number
:
1135
Date
solved
:
Sunday, March 30, 2025 at 09:59:06 AM
CAS
classification
:
[_quadrature]
ode:=diff(y(x),x)*sin(diff(y(x),x))+cos(diff(y(x),x)) = y(x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]*Sin[D[y[x],x]]+ Cos[D[y[x],x]]==y[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-y(x) + sin(Derivative(y(x), x))*Derivative(y(x), x) + cos(Derivative(y(x), x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : multiple generators [_X0, tan(_X0/2)] No algorithms are implemented to solve equation 2*_X0*tan(_X0/2)/(tan(_X0/2)**2 + 1) + (1 - tan(_X0/2)**2)/(tan(_X0/2)**2 + 1) - y(x)