Finding maximum value of ${n \choose r}$ for given value of n

6.7k Views Asked by At

While I was solving some binomial theorem chapter questions I encountered many questions which asked me me to find maximum value of ${n \choose r}$ for given value of n.

Example: Find n for which $$n!(21-n)! $$ has minimum value ?

I didn't get how to do this without substituting so I looked at the solution , it was given

" $n!(21-n)! =21!/{21 \choose n}$

Thus, for minimum value of $n!(21-n)! $ , ${21 \choose n}$ should be maximum, which is for n=10. "

So I wanted to ask ,

Is there a general result to get the value of r for which ${n \choose r}$ is maximum for given value of n ?

2

There are 2 best solutions below

0
On BEST ANSWER

For $n$ even, $r=n/2$. For $n$ odd, the maximum occurs at $r=(n-1)/2$ and at $r=(n+1)/2$.

Proof: Let's exclude trivial cases assuming that $n\ge 3$. Since $\binom nk=\binom n{n-k}$ it suffices to show that $\binom nk<\binom nr$ for $k<r$, where $r=\lfloor n/2 \rfloor$.

But $$\binom nk=\frac{n(n-1)\cdots(n-k+1)}{k!}$$ $$\binom nr=\frac{n(n-1)\cdots(n-r+1)}{r!}$$ Dividing, $$\frac{\binom nr}{\binom nk}=\frac{(n-k)(n-k-1)\cdots(n-r+1)}{r(r-1)\cdots(k+1)}$$

Note that $$n-r+1\ge n-\frac{n+1}2+1=\frac{n+1}2> r$$ Since the last factor of the numerator is greater than the first factor of the denominator, we have that every factor of the numerator is greater than every factor of the denominator, so this quotient is clearly $>1$.

0
On

Assume that $l+k=n$ and consider $x=l!\times k!$. We are to find the values of $l$ and $k$ such that $x$ gets its minimum value.

Dividing $$x=l!\times k!=1\times 2\times \cdots\times l\ \ \ \color{red}{\times}\ \ \ 1\times 2\times \cdots \times k$$ by

$$y=(l-1)!\times (k+1)!=1\times 2\times \cdots\times (l-1) \ \ \ \color{red}{\times}\ \ \ 1\times 2\times \cdots \times (k+1)$$

we have $\frac{x}{y}=\frac{l}{k+1}$ as the result. It is seen that $x>y$ if and only if $l>k+1$. So, the minimum of $x$ is obtained when $l$ and $k$ are the closest possible values to each other.

In your case, we have $l+k=21$, and so the minimum is obtained when $l=10$ and $k=11$.