... for this strategy to work I need to know how many losess I can expect to see in a row.
So if I have a 33.333% chance of winning each of my games at +200 whats the most losses in a row I can expect on average over 1500 games?
So if I have a 33.333% chance of winning each of my games at +200 whats the most losses in a row I can expect on average over 1500 games?
Before you pull out the pen and paper, however, I'll caution you that no closed form solution to the problem exists and so is probably best solved by writing a computer program to determine a solution for any given inputs (in this case a win probability of 33 1 3 %, and a series length of 1,500 games).
There's been some talk as of late on how best to get started with quantitative programming. Personally, I've found the best way to learn how to write a certain type of program is just to dive right in. So that said, if anyone wants to give this a whirl, they're certainly more than welcome. Otherwise, I'll post my Perl solution to this problem tomorrow. (If you want to download Perl, you can get the latest Windows version here and can find other versions here.)
The mechanics of the solution, btw, are pretty straightforward. I detailed the solution to the problem of calculating the probability of seeing a streak of at least a given length in this post.