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
How much life insurance do you need?
That's the question we're asking today, as our latest tool is designed to put you in the right ballpark when it comes to making sure your loved ones have the resources they need to live the way they would if you were alive and providing for them.
However, we're only going to consider term life insurance for our tool. Sure, you could opt for a universal or whole life policy, or some other kind of hybrid policy, but really, when you get right down to it, all of these are just term life insurance policies that have some kind of investment vehicle attached to them, for which you still need to answer the question of "how much life insurance do you need?"
Our tool below is inspired by one that Certified Financial Planner Jeff Rose of Good Financial Cents used in his post "How Much Term Life Insurance Do You Need to Buy?" We reverse engineered the results he obtained from the tool he used for the example he considered (but for which he failed to provide a link!)
Our default numbers are the same as those he used for his example. If they don't apply to your situation, well, don't complain to us, change them!
The tricky thing about using this tool is considering the balance between income needed to support your survivors and debt payoff. For instance, if your policy provides enough to pay off all the different parts of your debt, such as your mortgage, car payments, student loans, child's college education, etc., then you likely don't need to replace the part of your income that goes to cover these things today. And vice versa - if you're replacing the income that cover your portion of the payments for all these different debts, why double up?
Beyond that, the interest rate that your benefit payout is assumed to earn through the years is where your survivors greatest risk lies. They'll need to account not just for the typical real rate of return that might be expected from where the invest the life insurance payout from your policy in the event of your death, but also the rate of inflation, so that the erosion in the value of money over time doesn't disadvantage them. Historically, the long-term average rate of inflation in the U.S. is 3.3%. These two rates should be added together to produce the interest rate used in the tool above.
Labels: personal finance, 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.