What is the smallest value beside 1 of a binomial with two integer values > 0?

55 Views Asked by At

I'm searching for the smallest possible value of a binomial(a, b) where a >= b and both values are greater than 0. I calculated a few binomials and always got the result a as the smallest possible value. Is this always the case or just a coincidence?

1

There are 1 best solutions below

3
On BEST ANSWER

The $a^\text{th}$ row (the top row is the $0^\text{th}$) of Pascal's triangle contains all of the binomial coefficients of the form $$\binom{a}{b}$$

The smallest non-$1$ element of each row is $$\binom{a}{1}=\binom{a}{a-1}=a$$

Thus, your hypothesis is correct.


The smallest non-$1$ value over all pairs occurs for $a=2$:

$$\binom{2}{1}=\boxed{2}$$