cover image for post 'Evaluating the Acer Teamstory Cup Playoff Race'

Evaluating the Acer Teamstory Cup Playoff Race

These are the standings of the group stage of the Acer team story cup as of November 3rd. Each team plays against all others once for a total of 9 games. The best 4 teams advance to the playoffs.

1WesternWolves6–235–23+12
2TeamAcer5–128–15+13
3QuanticGaming5–126–22+4
4Axiom3–219–15+4
5TeamLiquid3–325–25
6mousesports3–321–23-2
7Millenium2–319–23-4
8compLexityGaming2–420–25-5
9InvictusGaming1–518–28-10
10Empire-Ence1–724–36-12

So with 14 outstanding matchups the question is: which teams are already qualified? Which teams are eliminated?

Procedure

A simple method to look at these questions is the magic number. The number is very easy to calculate, but also very crude. A team might clinch the playoffs or be eliminated long before the magic number confirms it. Also, since each team has only 9 clan wars, there tend to be a lot of ties and the map differential matters. The magic number does not usually consider tie breaking.

This is why I’m using enumeration to determine exact rank ranges for each team. For each clan war there are 10 potential outcomes (5:0, … 5:4, 4:5, …, 0:5). Checking all those outcomes directly isn’t feasible with 14 games left, but the number of cases to consider is much smaller if the analysis is split in two phases:

  1. All 214 (16384) combinations of wins and losses are considered while ignoring the number of maps won by the losing team for now. For every combination the points for each team are counted, and the teams are ranked by points. No tie breaking is applied; instead the potential range of ranks is noted.
  2. Next, for each of the 16384 outcomes separately, we determine the exact best or worst case rank of our teams adding map wins to the equation.

Step 1: Ranges based of Wins/Losses

The procedure is as follows: Check all 214 combinations of winners for the 14 matchup. For each combination calculate the ranking based on points only. If the considered team is tied with other teams, then note the best and worst rank of this group. For instance, if the team has the second most points tied with four other teams, then the true rank is between 2 and 5.

Result for Western Wolves

These are the resulting ranges for the leading Western Wolves. There are 4 combinations where they are one of six teams with the same number of wins, and 2 combinations where the team has the second most points tied with 5 other teams. On the bright side there are 1862 combinations where the team comes up at uncontested first place.

groupcount%
1 – 1186211.36%
1 – 2320019.53%
1 – 3197612.06%
1 – 49085.54%
1 – 51781.09%
1 – 640.02%
2 – 212787.80%
2 – 3250015.26%
2 – 4182411.13%
2 – 52201.34%
2 – 620.01%
3 – 313768.40%
3 – 49765.96%
3 – 5160.10%
4 – 4640.39%

Step 2: Look at individual combinations

From the previous table we know that there are instance where Western Wolves has the same record as the sixth ranked team. We don’t know though if the map differential tie breaker will ever put the team there. To find out, we have a closer look at those 6 combinations where the team might be sixth.

Here is one of the two combinations where the first six teams (Millenium, Team Acer, Western Wolves, Team Liquid, mousesports, Quantic Gaming) all have 6 wins and 3 losses:

  1. Millenium wins against Team Acer
  2. Millenium wins against compLexity Gaming
  3. Quantic Gaming wins against Axiom
  4. mousesports wins against Western Wolves
  5. Millenium wins against Invictus Gaming
  6. Team Liquid wins against Axiom
  7. compLexity Gaming wins against Team Acer
  8. mousesports wins against Axiom
  9. Team Acer wins against Invictus Gaming
  10. Team Liquid wins against Quantic Gaming
  11. mousesports wins against Quantic Gaming
  12. Millenium wins against Axiom
  13. Invictus Gaming wins against compLexity Gaming
  14. Team Liquid wins against Empire-Ence

For this combination check all potential worst case scenarios for the Western Wolves. Even though the winner for each matchup is given, there are still 5 different ways to win, i.e., 5:0, 5:1, 5:2, 5:4, or 5:4. Fortunately, there are many cases where the worst case is obvious, or where the result has no effect on the tie breaking procedure:

  • case a: Western Wolves loses all remaining matches 0:5
  • case b: all teams that are tied in points with Western Wolves win 5:0 against teams that are not tied in points.
  • case c: all teams that are tied in points with Western Wolves lose 4:5 against teams that are not tied in points.
  • case d: if two teams play against each other that are tied with Western Wolves, check all 5 possible numbers of maps won by the losing team.
  • case e: if two teams play against each other that are both not tied with Western Wolves, the result doesn’t matter.

Accordingly, this is one of the worst case scenarios for Western Wolves. The instance and number of considered results is noted in the last two columns.

ResultTypeCases
TeamAcer3:5Milleniumd2*
Millenium5:compLexityGamingb1
QuanticGaming5:Axiomb1
WesternWolves:5mousesportsa1
InvictusGaming:5Milleniumb1
Axiom:5TeamLiquidb1
compLexityGaming5:4TeamAcerc1
mousesports5:Axiomb1
TeamAcer5:InvictusGamingb1
TeamLiquid5:4QuanticGamingd5
QuanticGaming4:5mousesportsd5
Axiom:5Milleniumb1
InvictusGaming5:3compLexityGaminge1
Empire-Ence:5TeamLiquidb1

* Team Acer led 3:1 when the game was stopped, hence, 0:5, 1:5, and 2:5 aren’t possible. In total there are just 3*5*5 = 75 combinations.

The resulting standings after those results are as follows.

1TeamAcer6–340–25+15
2Millenium6–339–26+13
3TeamLiquid6–340–29+11
4mousesports6–336–27+9
5QuanticGaming6–339–32+7
6WesternWolves6–335–28+7
7compLexityGaming3–628–39-11
8Axiom3–619–35-16
9InvictusGaming2–723–41-18
10Empire-Ence1–824–41-17

Western Wolves gets the same differential as Quantic Gaming in this setting, but has less wins which puts the team last of all 6:3 teams. So there is still a scenario where Western Wolves misses the playoffs.

Best Case

The procedure to determine the best case is very similar:

  • the considered team wins all remaining matches 5:0
  • all teams that are tied in points with our team win 5:4 against teams that are not tied in points.
  • all teams that are tied in points with our team lose 0:5 against teams that are not tied in points.
  • if two teams play against each other that are tied with our team, check all 5 possible numbers of maps won by the losing team.
  • if two teams play against each other that are both not tied with our team, the result doesn’t matter.

Results

Applying the procedure to all 10 teams leads to those ranges:

TeamW/Lmapsdiffpot.ranks
1WesternWolves6–235–23121–6
2TeamAcer5–128–15131–8
3QuanticGaming5–126–2241–8
4Axiom3–219–1541–9
5TeamLiquid3–325–251–9
6mousesports3–321–23-21–9
7Millenium2–319–23-41–10
8compLexityGaming2–420–25-52–10
9InvictusGaming1–518–28-104–10
10Empire-Ence1–724–36-128–10

Even with 14 games remaining it is possible to exactly determine the worst and best case rank for all teams. Mathematically all except the last team can still clinch the playoffs, 7 teams are even contenders for the top spot. On the other hand, no team is qualified yet. Even at 6-2, the first team might fall as far as sixth place.