First I have to expand it then find the fourth term, right? But how do I do that?
How do I find the fourth term in the coefficient of the expansion of $(a - 4b)^9$
-
3Define fourth term. – 2012-04-11
3 Answers
If you're aware of the binomial theorem, you have that
$(a-4b)^9=\sum\limits_{k=0}^9 {9 \choose k}a^k (-1)^{9-k} (4b)^{9-k}$
$(a-4b)^9=\sum\limits_{k=0}^9 {9 \choose k}a^k (-1)^{k+1} (4b)^{9-k}$
The fourth term is then the case $k=3$, from which
$c_3 = {9 \choose 3}a^3 (-1)^{4} (4b)^{6}=344064a^3b^{6}$
Since you might probably want the other symetrical coefficient, it is
${9 \choose 6}a^6 (-1)^{7} (4b)^{3}=-5376a^6 b^{3}$
-
0@EmileOkada I looked at it from the other side. – 2012-04-11
The binomial expansion in the general form is $(x+y)^n={n\choose0}x^n+{n\choose1}x^{n-1}y+\cdots+{n\choose n-1}xy^{n-1}+{n\choose n}y^n=\sum_{k=0}^{n}{n\choose k}x^{n-k}y^k$
In your case $n=9$, $x=a$ and $y=-4b$. Since the fourth term is when $k=3$ you get ${9\choose3}a^6(-4b)^3=84a^6(-64)b^3=-5376a^6b^3$
The Binomial Theorem tells us that $(x+y)^n=\sum_{i=0}^n {n\choose i}x^iy^{n-i}.$
But what the heck is that? Ok, lets start with $(x+y)^n = \underbrace{(x+y)(x+y)\cdots(x+y)}_{\text{n times}}$. Now, all we have to do is expand this out! So basically each term in our sum is going to be the result of picking an $x$ or a $y$ from each element in this product. For example, if we choose the $x$ from every term we'll end up with $x^n$. In fact, there are no other ways to get $x^n$ because we need all of the $x$s, there's no choice involved. What if we choose $n-1$ $x$s and $1$ $y$? Then the $y$ could come from any of the terms in the product, so there are $n$ ways to choose the $y$, and then we have no choice left for the $x$s. This means that in the expanded formula we'll have $\underbrace{x^{n-1}y+x^{n-1}y+\cdots+x^{n-1}y}_{\text{n times}} = nx^{n-1}y$. Now we see that for each term, the coefficient is simply the number of different ways to choose that number of $x$s and $y$s from the product. This is exactly what $n \choose i$ means, and we compute it by ${n\choose i} = \frac{n!}{i!(n-i)!}.$
That was a long explanation, but basically what it boils down to is the fourth term of $(a−4b)^9$ is, from the binomial theorem, ${n\choose i}x^{n-i}y^i = {9\choose3}(a)^6(-4b)^3.$
(Here $i$ is $3$ because the first term has $i =0$).
-
0I think you could make the shorter question. In how many ways can we write $x^{n-k}y^{k}$ for $k=0,1,\dots,n$? – 2012-04-20