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 gold would the U.S. Treasury have to pay out from the nation's bullion depository at Fort Knox to fully pay off the national debt of $16.222 trillion (as of 1 November 2012)?
Quick side note: That figure is some $5.595 trillion higher than the $10.627 trillion it was back on 20 January 2009, when Barack Obama was sworn into office.
To answer the question, we've updated our tool for converting cash into an equivalent value in gold! Now, in addition to figuring out how big a solid gold cube would have to be to correspond to a given amount of gold at current spot market prices, it will now figure out how many standard 20-feet long by 8.5 feet wide by 8.0 feet tall intermodal shipping containers would need to used to transport the gold to all the people to whom the government owes all that government-issued debt!
What we find when we plug in the numbers as of 1 November 2012 is that the entire national debt of the United States is the equivalent of a solid gold cube that is nearly 80 feet tall by 80 feet long by 80 feet wide. Transporting all that gold would require over 431 of those standard 20-foot long intermodal shipping containers.
The only problem with that is that all of the gold that has ever been mined on Planet Earth would only make a solid gold cube that is 66.1 feet high by 66.1 feet long by 66.1 feet wide, which would work out to fill just over 249 of those 20-foot standard shipping containers. Even if Fort Knox held all the gold in the world, the U.S. Treasury would still be more than 182 shipping containers short of being able to pay off the national debt in gold at today's spot prices.
President Obama's contribution of $5,595 billion to the U.S. national debt during his term in office through 1 November 2012 would be represented by a solid gold cube that is 55.7 feet high by 55.7 feet long by 55.7 feet wide, which would represent about 60% of all the gold that is known to exist in the world. It would take just over 149 standard shipping containers to hold all that gold if each container were completely filled with no air gaps.
Laid out end to end, those 149 standard shipping containers would be almost six-tenths of a mile in length. That's just over one-third of the length of the 431.5 shipping containers that would hold all the gold representing the United States' entire public debt outstanding.
Image Source: Juwelier Lachenmann GmbH
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.