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
In Political Calculations' year end post for 2005, we concluded that:
Given how relatively flat the National Debt per Capita has been in the last 5 years, I would almost argue that the amount of debt spending agreed to by the U.S. Congress each year takes something like the National Debt per Capita to Income Index into account. Now that the federal government is pushing the edge of the arbitrarily legislated nominal National Debt Limit, it will be interesting to see if this factor plays a role in setting the amount of the increase of this artificial limit.
Yesterday, the Skeptical Optimist forged into the U.S. National Debt Ceiling discussion by proposing that the nation's debt limit should be indexed to the U.S.' National Debt to Income (DTI) ratio, with the debt ceiling automatically set at 80% of the nation's annual Gross Domestic Product.
Using the December 2005 U.S. National Debt ($8,103 billion USD) and U.S. National Income (Nominal GDP = $12,497.8 billion USD) reported by the Skeptical Optimist, indexing the National Debt Ceiling to be 80% of the U.S.' Nominal GDP would place the debt limit at just under $10 trillion USD at $9,998 billion USD. At present, using the Skeptical Optimist's reported data, the U.S. DTI ratio is 64.8%.
But shouldn't we also take U.S. population growth into account in setting this limit? Since federal government spending is, in good part, apportioned according to the size of the U.S. population, I believe it would make more sense to automatically adjust the U.S. National Debt Ceiling to be in step with something like Political Calculations' National Debt per Capita to Income Index.
Here's what that would mean. Using December 2005's National Debt and Nominal GDP data, as well as today's estimate of the U.S. population of 297,855,637, the National Debt per Capita to Income Index is 2.18 (the current National Debt per Capita is $27,204). If we use the Skeptical Optimist's proposed 80% DTI level to cap the National Debt Ceiling, the National Debt per Capita to Income Index would be 2.69, corresponding to a National Debt per Capita of $33,567 USD. Now, here's the good news - setting the U.S. National Debt Ceiling according to the National Debt per Capita to Income Index would ensure that every individual's share of the U.S. National Debt would not rise above this figure, at least in the constant terms of December 2005's Nominal GDP.
In other words, by using the National Debt per Capita to Income Index, we get a solid debt cap (on a per Capita basis) that's flexible enough to accommodate both GDP growth and population growth.
And all that has to happen to make this possible is for the politicians to willingly give up their unlimited desire to demagogue the issue....
Labels: national debt
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.