Evaluating a summation related to binomial expansion

76 Views Asked by At

How do you evaluate this summation $$\sum_{t=0}^{n}{t\binom{n}{t}x^t(1-x)^{n-t}}$$ where $0 < x < 1?$

2

There are 2 best solutions below

2
On

The easiest way is to write $1-x=a$ for the time being, and then your sum is $$ \sum_{t=0}^n \binom{n}{t}t x^t a^{n-t} = x\frac{d}{dx}\sum_{t=0}^n \binom{n}{t} x^ta^{n-t} = x\frac{d}{dx} (x+a)^n = nx(x+a)^{n-1}, $$ and returning to $1-x$ gives $$ n(x+(1-x))^{n-1} = nx. $$

2
On

A variation of the theme:

We obtain \begin{align*} \sum_{t=0}^nt\binom{n}{t}x^t(1-x)^{n-t}&=n\sum_{t=1}^n\binom{n-1}{t-1}x^t(1-x)^{n-t}\tag{1}\\ &=nx\sum_{t=0}^{n-1}\binom{n-1}{t}x^t(1-x)^{n-1-t}\tag{2}\\ &=nx \end{align*}

Comment:

  • In (1) we use $\binom{n}{t}=\frac{n}{t}\binom{n-1}{t-1}$ and we also start with index $t=1$, since the term with $t=0$ is zero.

  • In (2) we shift the index $t$ by one to start from $t=0$ and factor out $x$.