Internal
problem
ID
[12539]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
2,
linear
second
order
Problem
number
:
1260
Date
solved
:
Wednesday, October 01, 2025 at 01:57:22 AM
CAS
classification
:
[[_2nd_order, _missing_y]]
ode:=x*(x-1)*diff(diff(y(x),x),x)+((a1+b1+1)*x-d1)*diff(y(x),x)+a1*b1*d1 = 0; dsolve(ode,y(x), singsol=all);
ode=a1*b1*d1 + (-d1 + (1 + a1 + b1)*x)*D[y[x],x] + (-1 + x)*x*D[y[x],{x,2}] == 0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a1 = symbols("a1") b1 = symbols("b1") d1 = symbols("d1") y = Function("y") ode = Eq(a1*b1*d1 + x*(x - 1)*Derivative(y(x), (x, 2)) + (-d1 + x*(a1 + b1 + 1))*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out