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
Although we don't go there often, we're not ones to shy away from personal topics here at Political Calculations. We are, after all, the only blog out there that gets into your paycheck, goes into your house to see if you should switch to compact fluorescents and helps you figure out how much diet soda your system can safely handle.
But now we're getting really personal with our latest tool, adapted from math posted by Geek Logik author Garth Sundem at his blog, asking the question "What are the chances your marriage will last?"
While the Geek Logik blog post contains three separate equations for helping decide various marital topics (the other two answer the questions "should we get married" and "how many kids should we have"), we were intrigued by the statistics that underlie the question of marital sustainability. Here's what Garth wrote about the data:
... the first is based on solid statistics -- an 11,000-person study by the CDC that expolored factors that help and hurt a marriage's chances of working (for example, they found that if a woman is married before age 24, her chances of staying married for 15 years decreased by 30%). These statistics were easy to write in math terms, and the equation does fairly accurately predict your chances of being married at time "T". Granted there are other factors that might help or hurt your specific marriage, but the CDC study found that, for most people, these are the biggest factors. Remember that the average for all marriages is only about 50% and if you get a low number, please accept my very best wishes in bucking the odds.
There's not much more than to go straight to the math, captured in our tool below (please click here for a working version if you're accessing this article on a site that republishes our RSS news feed):
Having coded the math, let's reassure you that the result isn't processed through any sort of normal probability distribution. It is, at best, an approximation. Just change the default "religiousness" value to 10 (aka "the pope") and you'll get a better than 100% probability level! Aside from these quirks of math however, you'll still be able get a somewhat realistic approximation of the odds that you'll be married for your "Xth" anniversary over a pretty wide range of the distribution curve.
Now that you've seen the generic probability that you'll still be married to your current spouse at the anniversary of your marriage that you entered, you may have more questions than answers. If the probability is really low, that might be a good place to begin a conversation with your spouse. If the probability is high, you may already have a strong foundation for a successful marriage. Just remember that it never hurts to make it stronger.
Labels: geek logik, probability, tool
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.