Predictive Hacks

KENO: Highway Robbery

keno

Keno is a popular lotter-like gambling game where there are 80 numbers (from 1 to 80) and in every draw it returns 20 numbers out of 80. The player can choose how many numbers would like to play, usually it is from 1 to 12 unique numbers. Every lottery/casino defines its own pay-off. We will discuss about OPAP’s pay-off which can be found here, or for convenience at the image below:



Expected Return Formula

The Expected Value is the expected return of a discrete distribution.

Let \(X\) be a random variable with a finite number of finite outcomes \(x_1,x_2,…,x_k\) occurring with probabilities \(p_1, p_2,…,p_k\), respectively. The expectation of \(X\) is defined as:

\(E[X]= \sum_{i=1}^{k}x_ip_i\)

Thus, in our case we need to find the probability of each number to be drawn and its corresponding pay-off. The successes (i.e. the drawn numbers) follow the Hypergeometric distribution which is:

\(Pr(X=k) = \frac{ {K \choose k} {N-K \choose n-k} }{ {N \choose n} }\)

where:

  • \(N\) is the population size, in our case 80.
  • \(K\) is the number of success states in the population, in our case 20.
  • \(n\) is the number of draws.
  • \(k\) is the number of observed successes.

Google Spreadsheets have the build-in function of calculating the Hypergeometric distribution which is the HYPGEOM.DIST(num_successes, num_draws, successes_in_pop, pop_size) . We have created a Google Spreadsheet here which estimates the Expected Return as well as the Variance for all Keno games (i.e. from choosing 1 number up to 12 numbers). You can go through this example and you can use it as a starting point for other similar lottery problems.

Expected Return per Keno Game

The table below represents the expected return for each Keno game plus the variance assuming that the player bets 1$.

Numbers PlayedReturnVariance
10.62501.17
20.68041.42
30.69389.06
40.692031.06
50.6999135.28
60.6907338.99
70.6996621.00
80.69001,145.83
90.69781,708.01
100.69311,782.85
110.69124,345.94
120.69782,352.80

Q: How much I will make in Keno?

For every 1$ that you play, it is expected to get back around 0.7$, in other words it is expecting to LOSE 30% of your money. Then, why people keep playing this game? This is a difficult question to be answered, and there is no unique answer since every player has his\her own reasons, but we have to keep in mind that people have different utility functions. So, the key part in the pay-off is the variance which shows how volatile is the pay-off which means that even with 1$ there is a chance to make a significant amount of money!

NB: The returns we represented above were before taxes. In Greece, the taxation is 15% for profits from 100€ to 500€ and 20% for any profit amount above 500€!

Just FYI, the probability to get 12 out of 12 correct numbers in Keno, is 1 over 478,261,833 which is less likely than the probability of the mankind to disappear within the next few years!

PS: Still I cannot explain people who play just one number! The probability to win is 1 out of 4 and the pay-off is 2.5 times!!! What is the point to enter a game where it is expected to lose 37% of your money for having the chance to get back just 2.5 times your money! It is much better to go to the casino to play roulette…

Share This Post

Share on facebook
Share on linkedin
Share on twitter
Share on email

8 thoughts on “KENO: Highway Robbery”

  1. I just like the helpful info you supply on your articles.

    I will bookmark your weblog and take a look at again right here frequently.
    I’m rather sure I will be informed a lot of new stuff proper right here!
    Best of luck for the following!

    Reply
  2. Great post. I was checking continuously this weblog and I am impressed!
    Very useful info specially the remaining part :
    ) I handle such info much. I used to be looking for this particular information for a very
    long time. Thank you and best of luck.

    Reply
  3. Hello! I’m at work browsing your blog from my new
    iphone! Just wanted to say I love reading your blog and look
    forward to all your posts! Keep up the excellent work!

    Reply
  4. Howdy! I could have sworn I’ve been to this web site before but after looking at many of the articles I realized it’s new to me.
    Anyways, I’m certainly pleased I found it and I’ll be bookmarking
    it and checking back regularly!

    Reply

Leave a Comment

Subscribe To Our Newsletter

Get updates and learn from the best

More To Explore

Python

Image Captioning with HuggingFace

Image captioning with AI is a fascinating application of artificial intelligence (AI) that involves generating textual descriptions for images automatically.

Python

Intro to Chatbots with HuggingFace

In this tutorial, we will show you how to use the Transformers library from HuggingFace to build chatbot pipelines. Let’s