Internal
problem
ID
[10805]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
Additional
non-linear
first
order
Problem
number
:
807
Date
solved
:
Friday, March 14, 2025 at 02:34:00 AM
CAS
classification
:
[NONE]
ode:=diff(y(x),x) = -1/(-x-_F1(y(x)-ln(x))*y(x)*exp(y(x))); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == -(-x - E^y[x]*F1[-Log[x] + y[x]]*y[x])^(-1); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") F1 = Function("F1") ode = Eq(Derivative(y(x), x) + 1/(-x - F1(y(x) - log(x))*y(x)*exp(y(x))),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out