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
What are the odds that your investment in the S&P 500 will last as long as you need in retirement?
The answer to that question depends upon the answers to three additional questions:
The S&P 500 and its predecessor indices have been around long enough where we have historic data we can use to answer the last question, where we can assume the future will be similar to what has occurred in the past. That leaves the remaining factors, which have been addressed by Wade Pfau in his 2015 update to the 1998 Trinity Study, which estimated what a safe withdrawal rate would be for a variety of retirement portfolios made up of stocks and bonds with historic data from 1926 through 2014.
We've approximated the results of Pfau's math as it would apply for having 100% of your money invested in the S&P 500, where you can estimate the odds that the portion of your retirement nest egg invested in the S&P 500 will last as long as you might need to fund your retirement. If you're reading this article on a site that republishes our RSS news feed, click here to access a working version of this tool! (Alternatively, here's static snapshot of the tool with its results for the default data).
If you're like an average American, you can reasonably expect to live at least 15 years after you retire, so we've set that figure as the shortest period of time you can select in the tool. Meanwhile, the math assumes that you will adjust how much you might withdraw each year to account for the effect of inflation, where you would maintain a steady "real" withdrawal rate from your S&P 500 investment in retirement.
What the tool doesn't address is whether that percentage you might withdraw from your investment will provide the amount of income you would like to spend, where even if you might be successful in sustaining your S&P 500 investment, you might find yourself on the wrong end in the investing equivalent of one of Zeno's paradoxes as the balance of your retirement fund dwindles over time. Ultimately, the figure you have to work with will be set by the total you've accumulated in your investment before you might retire, where the following tools explore different ways to arrive at your personal retirement savings target.
We may come back at a future date to develop a tool that can accommodate having different percentages invested in stocks and bonds. If Pfau's data is any indication, there is a blend of the two types of investment vehicles that can produce better odds of success for a retirement fund that will last as long as your retirement than just the "stocks only" scenario we considered in this tool.
Meanwhile, if you'd like to get a better sense of some of the analysis that drives the math behind this tool, Paul Merriman works through a historical example with real life numbers and returns.
Labels: investing, math, personal finance, SP 500, 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.