What is my Lottery Ticket Actually Worth?

What is my Lottery Ticket Actually Worth?

By Max Candocia

|

December 09, 2018

Imagine that you are given the option of either a 100% chance at receiving $100,000 OR a 15% chance of $1,000,000. Which would you choose?

Mathematically speaking, the expected value of the two scenarios above are $100,000 (100% * $100,000) and $150,000 (15% * $1,000,000), respectively, where the expected value is the sum of each possible value times its probability. At first glance, it would seem that the second option is inequivocably better.

Despite the expected value being higher, the answer to the above will vary from person-to-person. Generally people with less money would (or at least should) go with the $100,000 option, as that is easily life-changing money without risk, while people worth millions of dollars can probably afford the extra risk for the extra reward, since missing out on $100,000 may not be nearly as significant.

One alternate metric to use instead of expected value is expected utility. In economics, utility is defined as a function over overall wealth, and the logarithm function is the most common one.

Using a base-10 logarithm, one can calculate the utilities of various amounts of wealth:

plot of chunk log_plot_example2

Under this metric, doubling your wealth and splitting your wealth in half have the same impact, but in opposite directions. Additionally, fair bets always have negative expected utility, although less noticeably so when they aren't as big. As a simple example, imagine having $200 and betting $100 on a coin flip. If you lose, you divide your money by 2, but if you win, you only multiply it by 1.5. The changes in utility is the logarithm of both those numbers, -0.301 and 0.176, respectively, with the negative sign representing a decrease in money/utility.

One can think of expected utility as "expected happiness with money". This is more useful than expected value when dealing with dollar amounts a significant fraction of or higher than one's net worth.

Lottery and Expected Utility

See my Evaluate My Lottery Ticket! app used to perform calculations.

How much is a lottery ticket actually worth to an individual? The expected values of each $2 Powerball® ticket and Mega Millions ticket are about $0.48 and $0.28, respectively, when their jackpots are each $50,000,000 (assume that's the lump sum value) and 300,000,000 individuals buy tickets. With larger jackpots, the expected value goes up, but a proportionate increase in individuals playing will bring that expected value back down due to the chances of multiple people splitting the jackpot.

That being said, for most individuals, while the jackpot may be a significant source of a ticket's expected value, its expected utility is minimal. Imagine that the jackpot is x times someone's net worth, and its probability is 1/x * 1/100,000. The contribution of the jackpot to expected utility is 1/(100,000 * x) * log(net_worth * x), or 1/(100,000 * x) * (log(net_worth) + log(x)). This is what that looks like for someone with a net worth of $50,000, plotted:

plot of chunk log_plot_example

Because the logarithm function increases very slowly, the utility of the ticket effectively decreases as factor of the payout. e.g., if the payout is 10 times higher, then the expected utility is about 10 times less.

Lottery Pools

Some people join with friends or coworkers to pool a bunch of tickets they bought together to split any prizes won by those tickets. While this doesn't affect the expected value of a ticket, it actually increases expected utility, because the probability of winning is more important than the decrease in the prize's value. Below, using expected utility, I have "expected utility break-even" values plotted for both Powerball® and Mega Millions lotteries. These are prices that an individual should value the tickets at given their net worth and the size of any pool they are part of.

plot of chunk pb_breakeven

plot of chunk mm_breakeven

Using expected utility, one can see that the Powerball® tickets have a value from $0.20 to $0.40, depending on one's net worth and how many people join in their pool. Megamillions, on the other hand, is much lower at a range of $0.16 to $0.30, partly due to the fact that a lot of the expected value is loaded into the jackpot, and there aren't as many valuable prizes besides that.

Most people will probably not be part of a pool greater than 25 people, though. For most people, giving them a quarter is financially better than giving them a $2 lottery ticket. Especially for you.

Utility of Each Prize

Each prize of a lottery can be given its own sort of "expected utility". In each case it is simply the probability times the change in utility. Below I've transformed these to dollar values for the prizes for individuals of varying net worth. note how the more valuable prizes tend to add significant value for those with higher net worths, while the most "valuable" prizes for most are, ironically, the $4 prize for matching the "Power Ball" and nothing else. The $50,000 prize for matching 4 white balls plus the "Power Ball" is also somewhat valuable across the board.

plot of chunk individual_utility

For reference, here is the table of probabilities of each payout. The number next to the W indicates how many white balls need to match, and the +PB means that the powerball must also match. Source: https://www.durangobill.com/PowerballOdds.html.

CombinationPayoutProbability
0W+PB$41/38.32
1W+PB$41/91.98
2W+PB$71/701.33
3W$71/579.76
3W+PB$1001/14,494.11
4W$1001/36,525.17
4W+PB$50,0001/913,129.18
5W$1,000,0001/11,688,053.522
5W+PB$50,000,000 (jackpot)1/292,201,338

Other Considerations

Expected utility is a gross over-simplification of how people use and view money, but it is fairly useful for generalizing. What is not taken into account by the model is the often-claimed benefit of dreaming about what one would do with the winning money, or the rush one feels from playing. As far as gambling goes, though, lottery tickets are the worst in terms of payout, yet the most common.

Also, taxes. Again, these don't affect expected utility too much, as the heavily-taxed jackpot hardly affects it, but it can affect intermediate prizes, like $10,000-$50,000 ones, which will have significant taxes on them. This further reduces the value of a lottery ticket, especially since you can't just write off worthless tickets from your taxable income.

You may have noticed that there is an inconsistency in ordering in the Powerball graph where the pool size of 10,000 has a lower break-even price (i.e., higher utility) than 20,000 for a few values of net worth. The reasoning for that is that the expected utility is extremely close to $0.39 for the Powerball values with pool sizes of 10,000 and 20,000. This is combined with a slight numeric instability in my code that arises from approximations when tickets and probabilities cross certain thresholds.

Code

The repository for the code for this analysis is at https://github.com/mcandocia/lottery-ticket-evaluation.

Additionally, the data itself was generated using the Evaluate My Lottery Ticket! app, with a small amount of code copy/pasted into the console to run with less user input.


Tags: 

Recommended Articles

Using AI to Determine Strategy in Machi Koro

One can use neural network-driven AI to simulate games of Machi Koro and determine an optimal strategy using visualizations.

How Likely Are You to be Banned From Reddit?

How Likely Are You to be Banned From Reddit? I got a bot for that.