TeoPhi

5 Reputation

One Badge

6 years, 112 days

MaplePrimes Activity


These are questions asked by TeoPhi

binomial(x, -1) should be 0 for any x which is not a negative integer.

When assuming x to be a positive integer, the command binomial indeed yields 0:

assume(x, posint); binomial(x, -1);

0

but when assuming x to be non-integer, the binomial command seems to ignore the assumption:

assume(x, Non(integer)); binomial(x, -1);
binomial(x, -1)

How to force the binomial command to take into account all assumptions?

Page 1 of 1