N factorial - general question

  • Thread starter Thread starter michonamona
  • Start date Start date
  • Tags Tags
    Factorial General
michonamona
Messages
120
Reaction score
0
Hello everyone!

Homework Statement


n!/(n-r)! = n(n-1)(n-2)...(n-r+1)

where r is the number of objects we want from n distinct objects (3 billiard balls out of 16)

I don't understand what the last term in the expansion means, the (n-r+1). For example, suppose we have 5 distinct objects and we want to choose 2. This means that n = 5 and r = 2

5x4x3x2x1x(5-2+1)

is this correct?

Thank you for your help
 
Physics news on Phys.org
16!/(16-3)! = 3360 which is P(n,r)

If you want C(n,r)=P(n,r)/r!
 
Last edited:
The notation n(n-1)(n-2)...(n-r+1) actually means to start at n and multiply all the numbers below it until we reach n-r+1.

Therefore with your example where n=5 and r=2, we have that
n-r+1 = 5-2+1 = 4
and we multiply
5 * 4 = 20
where we don't include any factor below 4.

Similarly, if we had n=5 and r=3, then we'd find
n-r+1 = 5-3+1 = 3
so when we evaluated n(n-1)(n-2)...(n-r+1), we'd have
5 * 4 * 3 = 60
(once again, note that we don't include any factor below n-r+1 = 3)

Hope that clarifies things.

-------

Additionally, like cronxeh mentioned, that expression counts permutations. In your example of the billiard balls, we'd want to count combinations, unless you're also giving some order to the choice.
 
Awesome, thanks guys.
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top