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
It has often been said that two things in life are certain: death and taxes. In reality, there's a third certainty to go along with the first two: while people are alive, they'll attempt to avoid the taxes.
What brings this up is a recent paper by David Joulfaian on The Behavioral Response of Wealth Accumulation to Estate Taxation: Time Series Evidence, which is available online as a 562KB PDF document (HT: The Tax Foundation's Tax Policy Blog.)
Part of the paper's approach is very interesting - Joulfaian determines what the equivalent income tax would be if the estate tax were levied all through life, as opposed to just at the end. That kind of math is too interesting to pass up, and Political Calculations offers the following tool, which may be used to estimate what additional percentage of their income an individual would have to pay if the estate tax were levied this way.
The default data in the table below is for a 21 year old man (with a 54.6 year remaining life expectancy), who will earn a 10% nominal rate of return on his assets, and who may expect to have his estate taxed at the 55% estate tax rate.
Looking at the estate tax in this way, is it any wonder that so many people (particularly the very wealthy) invest so much time and energy in life to avoid having to pay estate taxes? The increased equivalent income tax imposed by the estate tax is driven home in the following chart, taken from Joulfaian's paper, which illustrates the effective income tax rate for a variety of different investment rates of return and age:
Joulfraian estimates that if not for tax avoidance strategies, the taxable amount of estates subject to the tax would be 14 to 27% greater.
What's really amazing though is how little money (as a percentage of total tax receipts) that the U.S. government collects in estate and gift taxes. The following image shows the relative amounts of the various kinds of taxes levied by the U.S. government on the left (HT: The Big Picture):
The $23.7 billion USD of estate taxes that Uncle Sam will collect in 2007 amounts to less than 1% (0.98%) of the anticipated $2.416 trillion USD total of all tax revenues, which makes one wonder why the government should even bother imposing the tax at all? What would happen?
In the conclusion to his paper, Joulfaian finds that: "in the absence of the estate tax, there will be no longer a need to engage in estate planning and employ strategies designed to reduce the reported value of assets." When you consider how successful those facing the estate tax are at avoiding it, and how little it means to the financial well being of the nation, it would seem wise to encourage these individuals to pursue more productive uses of their time by eliminating the death tax altogether.
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.