- Get link
- X
- Other Apps
One of the simplest and most common power ranking models is known as the Bradley-Terry-Luce model, which is equivalent to other famous models such the logistic model and the Elo rating system. I'll be referring to "teams" here, but of course the same ideas apply to any two-participant game.
Let me clarify what I mean when I use the term "power ranking". A power ranking supplies not only a ranking of teams, but also provides numbers that may be used to estimate the probabilities of various outcomes were two particular teams to play a match.
In the BTL power ranking system we assume the teams have some latent (hidden/unknown) "strength" Ri, and that the probability of i beating j is RiRi+Rj. Note that each Ri is assumed to be strictly positive. Where does this model structure come from?
Here are three reasonable constraints for a power ranking model:
Let me clarify what I mean when I use the term "power ranking". A power ranking supplies not only a ranking of teams, but also provides numbers that may be used to estimate the probabilities of various outcomes were two particular teams to play a match.
In the BTL power ranking system we assume the teams have some latent (hidden/unknown) "strength" Ri, and that the probability of i beating j is RiRi+Rj. Note that each Ri is assumed to be strictly positive. Where does this model structure come from?
Here are three reasonable constraints for a power ranking model:
- If Ri and Rj have equal strength, the probability of one beating the other should be 12.
- As the strength of one team strictly approaches 0 (infinitely weak) with the other team fixed, the probability of the other team winning strictly increases to 1.
- As the strength of one team strictly approaches 1 (infinitely strong) with the other team fixed, the probability of the other team winning strictly decreases to 0.
Note that our model structure satisfies all three constraints. Can you think of other simple model structures that satisfy all three constraints?
Given this model and a set of teams and match results, how can we estimate the Ri. The maximum-likelihood estimators are the set of Ri that maximizes the probability of the observed outcomes actually happening. For any given match this probability of team i beating team j is RiRi+Rj, so the overall probability of the observed outcomes of the matches M occurring is L=∏m∈MRw(m)Rw(m)+Rl(m), where w(m) is then winner and l(m) the loser of match m. We can transform this into a sum by taking logarithms; log(L)=log(Rw(m))−log(Rw(m)+Rl(m)). Before going further, let's make a useful reparameterization by setting eri=Ri; this makes sense as we're requiring the Ri to be strictly positive. We then get log(L)=rw(m)−log(erw(m)+erl(m)). Taking partial derivatives we get ∂log(L)∂ri=∑w(m)=i1−erw(m)erw(m)+erl(m)+∑l(m)=i−erl(m)erw(m)+erl(m)=∑w(m)=i1−erieri+erl(m)+∑l(m)=i−erierw(m)+eri=0. But this is just the number of actual wins minus the expected wins! Thus, the maximum likelihood estimators for the ri satisfy Oi=Ei for all teams i, where Oi is the actual (observed) number of wins for team i, and Ei is the expected number of wins for team i based on our model. That's a nice property!
If you'd like to experiment with some actual data, and to see that the resulting fit does indeed satisfy this property, here's an example BTL model using NCAA men's ice hockey scores. You can, of course, actually use this property to iteratively solve for the MLE estimators Ri. Note that you'll have to fix one of the Ri to be a particular value (or add some other constraint), as the model probabilities are invariant with respect to multiplication of the Ri by the same positive scalar.
If you'd like to experiment with some actual data, and to see that the resulting fit does indeed satisfy this property, here's an example BTL model using NCAA men's ice hockey scores. You can, of course, actually use this property to iteratively solve for the MLE estimators Ri. Note that you'll have to fix one of the Ri to be a particular value (or add some other constraint), as the model probabilities are invariant with respect to multiplication of the Ri by the same positive scalar.
Comments
Post a Comment