If for each turn, you draw a random number from a uniform distribution with a range between 1 and 20 inclusive and you add this number to your total sum, what is the average number of turns it would take to go bust (total sum over 21)?
I'm wondering if there's a nicer way to think about this problem, because eventually I had to result to using a computer to figure it out.
Before that, all I could figure out is simple things like the average must be greater than 2, and I tried scaling down the problem to drawing numbers of 1-2, and bust if over 3, in which case the average turns I think was 2.125. But this seemed to provide not very actionable insights. I only had a hunch it would between 2 and 3 turns, and that if the problem with scaled up to larger numbers that it would converge to some value between there.
From using a computer I found that it is true and it converges to
e
So now I'm curious as to why that is but don't know the exact place I should look to. Could someone please help me understand why that is, or point me towards a resource which will help me learn about this thing in particular? It seems like a simple problem so I wonder if there's a more general concept here that has a name and that's commonly taught.