Calculating Possible Combinations in 2 Vectors

  • Thread starter Thread starter King
  • Start date Start date
  • Tags Tags
    Combinations
King
Messages
43
Reaction score
0
Hi all,

I am working on a programming project and want to know how many possible combinations can exist in a particular situation, but I have no idea how to work it out. It isn't homework, I just want to know because I am sure it is a VERY large number and want to make a point.

There are 2 vectors, one vector is one dimensional and is, say, 5 in length with values in it: [ 1 | 2 | 3 | 4 | 5 ] and the second vector is two dimensional and empty (to be filled with the numbers in the one dimensional vector), say like so:
+---------+
| - | - | - |
| - | - | - |
| - | - | - |
+---------+
How would I go about working out working out how many combinations of those 5 numbers can be placed in the above two dimensional vector?
eg. one would be:
+---------+
| 1 | 2 | 3 |
| 4 | 5 | - |
| - | - | - |
+---------+
another:
+---------+
| 1 | 3 | 2 |
| 4 | 5 | - |
| - | - | - |
+---------+

Thank you for any help :smile:
 
Physics news on Phys.org
There are 9 spots and 5 numbers to place in them. First pick 5 of the spots and then calculate the permutation of the 5 numbers in those 5 spots. I think this should be the answer, unless I am misunderstanding completely.

\binom{9}{5} 5! = 15,120

This can also be calculated as the number of 5-permutations of 9 objects, since the first number would have 9 possible spots to occupy, the second would have 8 possibilities, etc...

P(9,5) = 15,120
 
Thanks for the quick reply! But what are permutations? I see that the 120 came from the 5! but I'm not sure what P(9,5) is... :confused:
 
King said:
Thanks for the quick reply! But what are permutations? I see that the 120 came from the 5! but I'm not sure what P(9,5) is... :confused:

P(a, b) is the answer to your question with 9 slots in the matrix and 5 in the vector. It was defined on the spot, it's not a usual symbol.
 
The intermediate step is P(9,5) = 9*8*7*6*5 = 15,120.

Permutations are similar to combinations except in permutations, the order matters. In combinations, the order does not.
 
Thank you very much for the help :smile:
 
Hi all, I've been a roulette player for more than 10 years (although I took time off here and there) and it's only now that I'm trying to understand the physics of the game. Basically my strategy in roulette is to divide the wheel roughly into two halves (let's call them A and B). My theory is that in roulette there will invariably be variance. In other words, if A comes up 5 times in a row, B will be due to come up soon. However I have been proven wrong many times, and I have seen some...
Namaste & G'day Postulate: A strongly-knit team wins on average over a less knit one Fundamentals: - Two teams face off with 4 players each - A polo team consists of players that each have assigned to them a measure of their ability (called a "Handicap" - 10 is highest, -2 lowest) I attempted to measure close-knitness of a team in terms of standard deviation (SD) of handicaps of the players. Failure: It turns out that, more often than, a team with a higher SD wins. In my language, that...

Similar threads

Back
Top