From the picture above, regarding the numerator only, how did they get n(n - 1)....(n - [r - 1]) * (n - r)(n - r - 1)*...*2*1 = n!
?
It just doesn't make sense to me. I tried it with real numbers too. Let n = 7, r = 3
7(7 - 1)(7- 1 - 1)(7 - [3 - 1])(7 - 3)(7 - 3 - 1])....*2*1
= 7(7 - 1)(7 - 2)(7 - 2)(7 - 3)(7 - 4)...*2*1
(7 - 2) appears twice, so it's not 7!, it's 7!*(7 - 2)
Maybe I missed something? Maybe it's supposed to be read in another way? I fully understand how we get from n! / [(n - r)!*r!) to [n(n - 1)(n - 2)...(n - [r - 1)] / r! , but this picture tells me how to get from the latter to the former, and I don't understand it!
Source:
http://gcecompilation.com/wp-content/uploads/2017/Pure%20Mathematics%20-1.pdf
page 136
First, let's note that there is no real problem in the case you tried; you wrote an unnecessary factor of (7-2).
What it says, for n=7, r=3, is:
Code:
[FONT=courier new][COLOR=#26282A]n(n - 1)...(n - [r - 1]) * (n - r)(n - r - 1)*...*2*1 =
[/COLOR][/FONT][FONT=courier new][COLOR=#26282A]7(7 - 1)...(7 - [3 - 1]) * (7 - 3)(7 - 3 - 1)*...*2*1 =
7( 6 )...( 5 ) * ( 4 )( 3 )*...*2*1 = 7![/COLOR][/FONT]
The ellipses don't really do anything in this case.
A more typical example would be for n=9, r=4:
Code:
[FONT=courier new][COLOR=#26282A]n(n - 1)...(n - [r - 1]) * (n - r)(n - r - 1)*...*2*1 =
[/COLOR][/FONT][FONT=courier new][COLOR=#26282A]9(9 - 1)...(9 - [4 - 1]) * (9 - 4)(9 - 4 - 1)*...*2*1 =
9( 8 )...( 6 ) * ( 5 )( 4 )*...*2*1 = 9*8*7*6*5*4*3*2*1 = 9![/COLOR][/FONT]
Now, you are supposed to read such expressions intelligently, knowing that they are just an attempt to express a typical case, which might not make sense taken literally. For example, with n=5, r=2, it literally says this:
Code:
[FONT=courier new][COLOR=#26282A]n(n - 1)...(n - [r - 1]) * (n - r)(n - r - 1)*...*2*1 =
[/COLOR][/FONT][FONT=courier new][COLOR=#26282A]5(5 - 1)...(5 - [2 - 1]) * (5 - 2)(5 - 2 - 1)*...*2*1 =
5( 4 )...( 4 ) * ( 3 )( 2 )*...*2*1[/COLOR][/FONT]
where the 4 and the 2 are both duplicated. But it doesn't mean that; it means "start at 5 and continue down as far as you need to; at some point you will reach 4, and keep going; and end up with 1. Everything there except n, n-r, and 1 is only there to show that numbers are decreasing by 1 each time. This notation is just a way to avoid sigma notation, which is less natural to beginners. Don't let a notation that is meant to make things easier trip you up!
The important thing is that they are showing that if you multiply the numerator and denominator by the factorial of the next number down, (n-r)!, the resulting numerator is n!. Do you see that? For your example, this is
Code:
[FONT=courier new]7*6 5*4*3*2*1 7*6*5*4*3*2*1 7!
--- * --------- = --------------- = ----
2*1 5*4*3*2*1 [FONT=courier new]2*1 * 5*4*3*2*1 2!5![/FONT][/FONT]