Internal
problem
ID
[10784]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
Additional
non-linear
first
order
Problem
number
:
786
Date
solved
:
Sunday, March 30, 2025 at 06:39:58 PM
CAS
classification
:
[[_homogeneous, `class D`], _Riccati]
ode:=diff(y(x),x) = (y(x)*ln(x)+cosh(x)*x*a*y(x)^2+cosh(x)*x^3*b)/x/ln(x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == (b*x^3*Cosh[x] + Log[x]*y[x] + a*x*Cosh[x]*y[x]^2)/(x*Log[x]); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") y = Function("y") ode = Eq(Derivative(y(x), x) - (a*x*y(x)**2*cosh(x) + b*x**3*cosh(x) + y(x)*log(x))/(x*log(x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out