Is this failure of a trivial integral known ?

>>> from sympy import symbols, Lambda, beta
>>> x, a, b = symbols("x, a, b")
>>> dgamma = Lambda((x, a, b), x**(a-1)*(1-x)**(b-1)/beta(a, b))
>>> dgamma(x, a+1, b+1).integrate((x, 0, 1)).simplify() # Works as expected
1
>>> dgamma(x, a, b).integrate((x, 0, 1)).simplify() # Never returns !

If this is not known, how to report this problem efficiently ?
​

-- 
You received this message because you are subscribed to the Google Groups 
"sympy" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sympy/ce49b3ce-4981-4a7c-b754-8ba4c2a1cfe4o%40googlegroups.com.

Reply via email to