Round Robin Tournament Scheduling

7 team schedule

mmitchell · 2 · 3766

mmitchell

  • Newbie
  • *
    • Posts: 1
on: November 30, 2009, 12:38:45 PM
I am trying to make a 7 team round robin , home and away schedule based on strength of teams. The teams are seeded 1-7. This will be a two year schedule with the home and away rotating the second year. For example , the top teams would play the weaker teams one week and then the stronger teams the next week and alternating throughout the season.


wbport

  • Senior Member
  • ****
    • Posts: 129
Reply #1 on: December 02, 2009, 02:46:44 PM
I don't think it can be done if you want to balance home/away as two, maybe three in a row might be the result.

Start by dividing the field into the four top teams and three bottom teams.  For the odd rounds the top four would play the bottom three with a top team getting a bye.  In the even rounds would be pairings of both "simultaneous" round robin tournaments with a bottom team getting a bye.  Randomly assign the top 4 pairing numbers as well as the bottom 3.

Code: [Select]
   1    2    3    4    this line stays put
 -> 5 -> 6 -> 7 -> 8 -> <  rotates
Pairings against 8 indicate a bye.

Putting only three teams in the top section would work as well-- 4, 5, 6, 7 would play 1, 2, 3, 8 instead and you would have only one "top" pairing at a time.

The only way to alternate home/away is to put all seven teams in one RR though.


You might want to check out an earlier request here.
« Last Edit: December 02, 2009, 02:48:58 PM by wbport »