A round robin tournament was played among thirteen teams. Each team played every other team exactly once. At the conclusion of the tournament, it happened that each team won six games and lost six games.
Define a circular triangle in a round robin tournament to be a set of three different teams in which none of the three teams beat both of the other two teams. How many circular triangles are in this tournament?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
First, WLOG, label the teams 1 , 2 , … , 1 3 . Then, to represent the problem in matrix (or table) form, see the picture below:
In the matrix, each column (row too) will have 6 1 s and 0 s. Hence, there will two "symmetrically inverse" triangles (each with equal numbers of 1 and 0 as each other) in the matrix over the yellow coloured diagonals (where the team are matched against itself). Symmetric in the sense that if in one triangle has a cell ( x 1 , y 1 ) with 1 , then the cell in the other triangle reflected over the yellow diagonal will be 0 or the opposite of 1 . ( Can you explain why? )
As such, we only need to focus on one triangle, namely the blue one highlighted above. Notice that for a circular triangle to be found in a set of 3 unordered and distinct teams say ( A , B , C ) then, every team has to win 1 game in that set.
In addition to satisfy the conditions for a circular triangle, we see that the triangle must have a 0 and 1 in the column with 2 cells and 1 in the other as shown - refer to the green triangle (sry the matrix as a whole doesn't make sense): ( Can you see why? - Hint: Try to plot the above ABC team above )
Thus, we just need to find number of triangles of the form above in our matrix to be done!
Lemma Realise that the matrix shows one example of a possible configuration of loss and wins among the teams. Now, I claim that the number of circular triangles for 1 3 teams will be the same no matter how I rearrange the 1 s and 0 s in my matrix. I don't have a vigorous proof for this but you can see it as the teams are not ordered meaning that if I put Team 1 won against Team 2 here, it could jolly well mean the same thing as saying that Team 5 in another matrix won against Team 7 .
Solutions! So, I arrange the wins and losses in the matrix above to facilitate counting of the triangles of the form above. Notice that if the first cell I choose is ( 1 , 2 ) , then, I can only have cells ( 1 , 8 ) and cell ( 2 , 8 ) to form a circular triangle. If I chose cell ( 1 , 3 ) , then, I can have 2 choices: cells ( 1 , 8 ) and ( 3 , 8 or cells ( 1 , 9 ) and ( 3 , 9 ) . Repeating this we can just get: - For column C 1 : there are 1 + 2 + 3 + 4 + 5 + 6 = 2 1 circular triangles formed.
Hence, adding up we get total number of circular triangles is 2 1 + 2 0 + 1 8 + 1 5 + 1 1 + 6 = 9 1 .