Solved – Probabilities of betting odds not adding up to 1

conditional probabilitylogisticprobability

I am currently studying logistic regression. So the Probability(p(x)) of assigning an outcome is calculated as :

$\frac{p}{1-p} = e^{\beta_0 +\beta_1X} $

Further, I read that the fraction on the left is also called odds, frequently used in betting references.

So I went to a betting website, here were the odds given by them for a football match.
Chelsea vs West Brom ( Win Draw Win : 1.5, 4, 7.5)

Now I understand that they would have used a program to come up the odds.

But I figured that using the odds, I should be able to calculate the probabilities, that their software is assigning to each of the outcome.

When doing the calculations : I got 0.4 prob of Chelseas win, 0.2 of Draw and 0.11 chance of West Brom Win.

Why is this not adding up to 1?

Best Answer

Decimal odds can be turned into their implied probabilities via the formula: $P=1/odds$. If you do this and sum you get 1.05 so I am guessing there is a small rounding errors in the decimal odds reported.

In response to the comment below, yes I am sure since these are,decimal odds . What is missing in this formula is the overhead that a "bookie" often uses to make the odds lower.

This formula is: $odds = 1/(P + \sigma)$, If you assume that the $\sigma$ are the same you can calculate this bias, and the probability will sum to 1.

Also see this post: How to convert sport odds into percentage? Asking essentially the same question.