David Radcliffe <dradcli...@gmail.com> added the comment:

I think that binomial(n, k) should return 0 when k > n or k < 0. This is a 
practical consideration. I'm concerned about evaluating sums involving binomial 
coefficients. Mathematicians are often rather loose about specifying the upper 
and lower bounds of summation, because the unwanted terms are zero anyway. 
These formulas should not result in value errors when they are implemented 
directly.

To give a simplistic example, the sum of the first n positive integers is 
binomial(n+1, 2), and the formula should still work if n is zero.

----------
nosy: +David Radcliffe

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue35431>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to