Internal
problem
ID
[10093]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
80
Date
solved
:
Sunday, March 30, 2025 at 03:15:29 PM
CAS
classification
:
[`y=_G(x,y')`]
ode:=diff(y(x),x)+f(x)*sin(y(x))+(1-diff(f(x),x))*cos(y(x))-diff(f(x),x)-1 = 0; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] + f[x]*Sin[y[x]] + (1-D[ f[x],x])*Cos[y[x]] - D[ f[x],x]- 1==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") f = Function("f") ode = Eq((1 - Derivative(f(x), x))*cos(y(x)) + f(x)*sin(y(x)) - Derivative(f(x), x) + Derivative(y(x), x) - 1,0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE f(x)*sin(y(x)) - cos(y(x))*Derivative(f(x), x) + cos(y(x)) - Derivative(f(x), x) + Derivative(y(x), x) - 1 cannot be solved by the factorable group method