Internal
problem
ID
[10787]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
Additional
non-linear
first
order
Problem
number
:
789
Date
solved
:
Wednesday, March 05, 2025 at 12:42:19 PM
CAS
classification
:
[[_1st_order, `_with_symmetry_[F(x),G(x)]`], _Riccati]
ode:=diff(y(x),x) = -(ln(x-1)-coth(1+x)*x^2-2*coth(1+x)*x*y(x)-coth(1+x)-coth(1+x)*y(x)^2)/ln(x-1); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == (Coth[1 + x] + x^2*Coth[1 + x] - Log[-1 + x] + 2*x*Coth[1 + x]*y[x] + Coth[1 + x]*y[x]^2)/Log[-1 + x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((-x**2/tanh(x + 1) - 2*x*y(x)/tanh(x + 1) - y(x)**2/tanh(x + 1) + log(x - 1) - 1/tanh(x + 1))/log(x - 1) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
IndexError : Index out of range: a[1]