Assignment 5b
Approach
For this assignment, I will calculate how each player was expected to perform based on their pre-tournament Elo rating and the ratings of their opponents. FFor each game, I will calculate the expected score using the Elo formula:
\[ E_A = \frac{1}{1 + 10^{(R_B-R_A)/400}} \]
where \(R_A\) is the player’s rating and \(R_B\) is the opponent’s rating. I use the expected-score formula described in How Elo Ratings Actually Work on Chess.com.
I will add the expected scores across all rounds to get each player’s expected tournament score and compare it with the actual points earned. The difference will be used to identify the five players who most overperformed and the five who most underperformed their Elo expectations.