This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
WHAT ARE YOUR ODDS OF WINNING FOOTBALL BETTING / JACKPOT? | |
TLDR: | |
if total cash(c) = participants(p) x individual ammount(a) | |
and number of bets available(b) = c / stake ammount(s) | |
and universe of bets in x matches(u) = 3 ^ number of matches(m) | |
then | |
percent chance(pc) = (((p x a) / s) x 100) / (3 ^ m) | |
pc = (b x 100) / u |