I am trying to use Sympy's symbolic integration to find a closed form for a definite integral. In particular, I run
from sympy import *
x, s, H = symbols('x s H', real=True, nonnegative=True)
integrate(1/((1-s)**(1/2-H)*(x-s)**(1/2-H)),(s,0,1))
Unfortunately, with Python 2.7.11 my Jupyter runs and runs and runs. Maybe it helps to strengthen the assumptions adding
0<H<1/2 and x>1
but I didn't find out how to do it.
Remark I have also used Mathematica's symbolic integration capabilities to do it and it has come up with a Gauss hypergeometric function. Unfortunately, evaluating that function returns a complex number which doesn't really make sense in evaluating a real integral. Hence my hope that SymPy might help.