to your HTML Add class="sortable" to any table you'd like to make sortable Click on the headers to sort Thanks to many, many people for contributions and suggestions. Licenced as X11: http://www.kryogenix.org/code/browser/licence.html This basically means: do what you want with it. */ var stIsIE = /*@cc_on!@*/false; sorttable = { init: function() { // quit if this function has already been called if (arguments.callee.done) return; // flag this function so we don't do the same thing twice arguments.callee.done = true; // kill the timer if (_timer) clearInterval(_timer); if (!document.createElement || !document.getElementsByTagName) return; sorttable.DATE_RE = /^(\d\d?)[\/\.-](\d\d?)[\/\.-]((\d\d)?\d\d)$/; forEach(document.getElementsByTagName('table'), function(table) { if (table.className.search(/\bsortable\b/) != -1) { sorttable.makeSortable(table); } }); }, makeSortable: function(table) { if (table.getElementsByTagName('thead').length == 0) { // table doesn't have a tHead. Since it should have, create one and // put the first table row in it. the = document.createElement('thead'); the.appendChild(table.rows[0]); table.insertBefore(the,table.firstChild); } // Safari doesn't support table.tHead, sigh if (table.tHead == null) table.tHead = table.getElementsByTagName('thead')[0]; if (table.tHead.rows.length != 1) return; // can't cope with two header rows // Sorttable v1 put rows with a class of "sortbottom" at the bottom (as // "total" rows, for example). This is B&R, since what you're supposed // to do is put them in a tfoot. So, if there are sortbottom rows, // for backwards compatibility, move them to tfoot (creating it if needed). sortbottomrows = []; for (var i=0; i
Alex Tabarrok recently kicked a hornet's nest when he asked "What is the probability of a nuclear war?", where he focused on survey results compiled by Luisa Rodriguez that put the unique event probability of a nuclear war breaking out anywhere in the world at 1.17%, where he went on to estimate that the probability of a nuclear war taking place during the 75-year lifespan of a child born today would be about 60%.
Here is how he arrived at those lifetime odds:
For a child born today (say 75 year life expectancy) these probabilities (.0117) suggest that the chance of a nuclear war in their lifetime is nearly 60%, (1-(1-.0117)^75). At an annualized probability of .009 which is the probability from accident analysis it’s approximately 50%.
That math formula provides the key to estimating the probability of any unique event occurring within any set period of time, which we've incorporated into the following tool. If you're accessing this article on a site that republishes our RSS news feed, please click through to our site to access a working version.
The default numbers in our tool are taken directly from Alex' example, where we find the probability of a nuclear war happening sometime in the next 75 years is 58.6%.
But the tool, and the math behind it, can be used to consider the odds of any unique event, where you're welcome to substitute numbers that apply for whatever scenario you would like to consider.
Let's consider a more fun scenario. In 2019, the St. Louis Blues hockey team went from being in dead last place in the league at the beginning of January to winning the Stanley Cup for the first time ever in its 52-year history six months later. The team won an 'ESPY' for "Best Comeback" in sports.
As unique events go, the Blues 2018-2019 season stands out as especially unique. Let's consider some odds:
What would the odds be of the Blues repeating their Stanley Cup-winning season during their next 52 seasons?
Averaging all these percentage probabilities together gives us an aggregate probability of 1.47%. Over the next 52 years, the tool suggests the Blues have a 53.7% probability of winning the cup a second time.
That's more likely than a nuclear war breaking out somewhere on Earth during the next 52 years, which would have nearly a 46% probability of occurring. Which outcome would you rather cheer for?
Welcome to the blogosphere's toolchest! Here, unlike other blogs dedicated to analyzing current events, we create easy-to-use, simple tools to do the math related to them so you can get in on the action too! If you would like to learn more about these tools, or if you would like to contribute ideas to develop for this blog, please e-mail us at:
ironman at politicalcalculations
Thanks in advance!
Closing values for previous trading day.
This site is primarily powered by:
The tools on this site are built using JavaScript. If you would like to learn more, one of the best free resources on the web is available at W3Schools.com.