How it works?
MEP uses a table of probabilities that indicate how likely either candidate is to win each state.
In the time span of only a few seconds, it runs huge numbers of simulations of possible outcomes of the election, in terms of which states will cast their votes, in an all or nothing fashion, for each candidate. For each possible outcome it calculates how many electoral votes each candidate would get, and calculates which candidate would win (or if there would be a tie).
By repeated sampling of possible outcomes according to the estimated probabilities, the program rapidly settles on an overall probability that each candidate will win the election, and the probability of a tie.
This is called Monte Carlo simulation.
Related Work
MEP was a precursor to a series of Monte Carlo prediction tools I wrote including my my 2006 World Cup Soccer Predictor and Betting Advisor.
It's safe to say that mysterious and reclusive DC member Skrommel single-handedly built the Coding Snacks section of the DonationCoder forum, where people request small custom applications. Coding in the Autohotkey scripting language, Skrommel is also one of the fastest coders we've seen -- when he is on the prowl it's not uncommon for him to finish coding a request before most of us have had time to even read it. He also typically shares his source code along with the compiled utility, which makes it possible for others to extend and customize his tools.
- Number of programs available: 80+
- Last updated: 2017
- Visit skrommel's page to browse his apps and download them here: http://www.dcmembers.com/skrommel.
- Visit skrommel's section on our forum: here.
Mouser's 2004 Election Predictor
Mouser's 2004 Election Predictor (MEP) was an offline Monte Carlo simulation program for estimating the likelihood that a given candidate will win the United States Presidential Election Electoral College, based on estimates of how each state is leaning, and taking into account the electoral college all-or-nothing voting system. It allowed users to fill in a table of how likely each state is to vote for a given candidate, and based on these numbers, ran large numbers of (Monte Carlo) simulations for each state, and calculated the odds of each candidate winning the electoral college. It used online poll results to estimate probabilities and was used on election night as states results come in to constantly give updated estimate of candidates chances.
Note: Nowadays such Monte Carlo simulations are not uncommon and would be performed by an online website, rather than a standalone desktop utility.

