How can a program calculate combinations for three players without repetition?

  • Thread starter Thread starter Oljeg
  • Start date Start date
  • Tags Tags
    combinations
AI Thread Summary
To calculate combinations for three players without repetition over multiple rounds, a combinatorial design approach is necessary. For 21 players, each player must participate in matches such that no pair of players faces each other more than once. The total number of matches required can be calculated using the formula n(n-1)/3, resulting in 140 matches for 21 players. The discussion highlights the importance of understanding permutations and combinations in finite math to derive the correct formula. Ultimately, a program can be designed to input the number of players and rounds to generate the required match combinations.
Oljeg
Messages
1
Reaction score
0
Hi, I am trying to find the solution (formula) for doing the following:
For any number of players (divisible by three), I need to calculate a number of rounds (in my case 8) for three players to play each other without any repetition.
So the first round of etc. 21 players would be:
1,2,3 4,5,6, 7,8,9 10,11,12 13,14,15 16,17,18 19,20, 21 and I am looking for the combinations for the next 7 rounds so that no one plays the same player again. Eventually, I would like to design a program with number of players and rounds as an input variable.

Regards,
Oljeg
 
Mathematics news on Phys.org
Have you studied finite math at all? There are formulas for permutations and combinations that you would likely find useful (combinations in your case, not permutations, since it doesn't matter who sits in what chair in your scenario)
 
Are you saying that each match involves three players? That's an odd kind of match! If each player must play each other player once, then each of the n players must be involved in (n- 1) matches. If each match involves 3 players, that would be a total of n(n- 1)/3 matches. For n= 21, this is 21(20)/3= 140 matches, 20 rounds of 7 matches per round.
 
Suppose ,instead of the usual x,y coordinate system with an I basis vector along the x -axis and a corresponding j basis vector along the y-axis we instead have a different pair of basis vectors ,call them e and f along their respective axes. I have seen that this is an important subject in maths My question is what physical applications does such a model apply to? I am asking here because I have devoted quite a lot of time in the past to understanding convectors and the dual...
Insights auto threads is broken atm, so I'm manually creating these for new Insight articles. In Dirac’s Principles of Quantum Mechanics published in 1930 he introduced a “convenient notation” he referred to as a “delta function” which he treated as a continuum analog to the discrete Kronecker delta. The Kronecker delta is simply the indexed components of the identity operator in matrix algebra Source: https://www.physicsforums.com/insights/what-exactly-is-diracs-delta-function/ by...
Back
Top