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
This is the second of the series of reviews I am writing related to the performance of the calculators that have been developed to provide their users with insight into whether or not the proposed Personal Retirement Account option for Social Security retirement benefits make sense for them. This review focuses on the CATO Institute's contribution to the debate.
The Social Security Benefit calculator produced by the CATO Institute, like the Reid/Schumer Social Security calculator, has a very simple interface. The calculator's user only needs to enter three pieces of data to get results:
As noted in my review of the Reid/Schumer calculator, restricting the individual user to this limited data will significantly oversimplify the real picture for the calculator's user, since it locks the user into the assumptions made by the calculator's creators.
Using $40,000 as the current annual earnings and the ages that would correspond to the same birth years I used to evaluate the Reid/Schumer calculator (beginning with a current age of 30 to correspond with a birth year of 1975), I produced the following results:
Selected CATO Results | ||
---|---|---|
Current Age: 30 (Birth Year: 1975) | ||
Result | Male | Female |
Normal Retirement Age (NRA) | 67 | 67 |
Estimated Annual Benefit | $21,044 | $21,044 |
Individual Account Value at NRA | $355,558 | $379,577 |
Maximum Annuity Purchased at NRA | $28,975 | $26,540 |
I was unable to proceed further in generating data for those born this year, 10 years ago and 20 years ago since the CATO calculator will only produce results for those between 22 and 55 years old. This restriction prevents direct comparisons with similar data that is able to be produced by other calculators.
The CATO calculator takes the differing life expectancies of men and women into account in allocating the accumulated value of the CATO individual account over their actuarially determined remaining lifespan. This is why the value of the Maximum Purchased Annuity for men is higher than that for women, even though the woman's individual account value at retirement is higher - women live longer and have the amount contained within their individual account paid back to them over a longer period of time, which means that they will receive less money per year since it needs to stretch further.
Also note: The means by which the CATO calculator determines the Estimated Annual Benefit from traditional Social Security was developed by ESPlanner, which does not provide free access to its tools, limiting our ability to see how good they might be to reading their testimonials.
When you're using the CATO calculator, you're signed up for the CATO plan for reforming Social Security. The plan effectively starts immediately within the calculator, which would not account for any transition between the traditional Social Security plan and the CATO plan. Whether or not this plan would eventually adopted by the White House and Congress remains to be seen. For what it's worth, it seems to be a nice plan, but we need to look at the assumptions behind it to see how well it holds water.
The CATO plan calls for half the the taxes paid into Social Security for each individual (6.2% of a total 12.4% of annual earnings) to be made available for individual investment accounts. This means that some 4.4% of the individual's annual earnings would be dedicated toward the "traditional" Social Security retirement and survivor's insurance program. The remaining amount would be designated toward providing Social Security's disability benefits. This assumption does not match up with the President's proposals to date, which would restrict the annual contributions to individual accounts to a maximum of 4.0% of their annual earnings once the program is fully phased in, so the program's projected individual account benefits will be significantly skewed to the high end in any direct comparison to what has already been officially proposed.
The CATO plan assumes the traditional Social Security program is reformed to provide a sustainable level of benefits without additional Social Security tax rate increases, but does not outline how in the executive summary provided for the plan, or in the plan itself (available as a 145KB PDF document.) This latter deficiency reflects the fact that no real consensus has yet emerged for dealing with the long-term sustainability of the program.
The CATO calculator assumes that you will begin working at age 22, which means your annual estimated benefit from Social Security may be higher or lower depending upon what age the individual actually begins earning income. For many people, the calculator's assumption that they are starting full-time work at an age of 22 would potentially miss a half-decade's worth of their actual work, so this value is most likely being understated. There are no means to alter this assumption in the calculations.
The math producing the Individual Account Value assumes that the underlying investments in the CATO plan will provide a rate of return equal to 4.95% annually when adjusted for inflation and also accounting for a .25% fee for transaction costs. This assumption is considerably rosier than that used by the Reid/Schumer calculator, but the user has no means by which to adjust it.
The CATO calculator seems to be a polar opposite from the Reid/Schumer calculator. It produces results that may be as optimistic as the Reid/Schumer calculator is pessimistic. Like the Reid/Schumer calculator, the inability to alter key assumptions within the calculator is a key weakness. As a tool, it provides an optimistic view of how an individual would fare under the CATO plan, but this point may be moot since the CATO plan would actually have to be adopted by the Congress and White House to be implemented. Thus far, the indications from both sides of Capitol Hill are that something else will be considered, so the utility of the CATO calculator in evaluating the effects of potential Social Security reform at the individual level is certainly limited.
My next review: The Heritage Foundation's Social Security Calculator!Labels: review
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.