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
The U.S. government's 2017 fiscal year officially ended on 30 September 2017. At that time, we knew that the total public debt outstanding of the U.S. government increased by $671.5 billion from the end of the previous fiscal year, rising from $19,573 billion (or $19.6 trillion) to $20,245 billion (or $20.2 trillion) during FY2017.
But what we didn't know was exactly how much the U.S. government owed to many of its major creditors, particularly foreign interests, where we have had to wait for subsequent revisions to find out! A little over six months later, those revisions are now in the rear view mirror, where the following chart shows who the U.S. government's major creditors were at the end of FY 2017:
According to the U.S. Treasury Department, the U.S. government spent some $665.7 billion more than it collected in taxes during its 2017 fiscal year. The difference between this figure and the $671.5 billion that the total national debt actually rose can be attributed to the government's net borrowing to fund things like Federal Direct Student Loans, which collectively account for nearly $1.1 trillion of the government's $20.2 trillion debt, or 5.4% of the total public debt outstanding.
Put differently, the U.S. national debt would be 5.4% less at roughly $19.1 trillion if not for the federal government's takeover of the student loan industry from the private sector in March 2010. Since that time, approximately $1 of every $10 that the U.S. government has borrowed has been for the purpose of funding its student loan program.
Overall, 69% of the U.S. government's total public debt outstanding is held by U.S. individuals and institutions, while 31% is held by foreign entities. China has resumed its position as the top foreign holder of U.S. government-issued debt, with directly accounting for 6.8% between institutions on the Chinese mainland and Hong Kong, taking over from Japan, whose share of U.S. government-issued debt holdings has dropped to 5.4%.
Beyond that, about 2.1% of the U.S. national debt is held by institutions in Belgium and Ireland, largely as a consequence of these nations' roles as international banking centers, where their holdings often represent those of other nations, particularly China in recent years. The United Kingdom, with 1.2% of the U.S. total public debt outstanding, falls into this category as well.
The largest single institution holding U.S. government-issued debt is Social Security's Old Age and Survivors Insurance Trust Fund, which is considered to be an "Intragovernmental" holder of the U.S. national debt, and which holds 13.9% of the nation's total public debt outstanding. The share of the national debt held by Social Security's main trust fund is expected to fall as that government agency cashes out its holdings to pay promised levels of Social Security benefits, where its account is expected to be fully depleted in just 17 years. Under current law, after Social Security's trust fund runs out of money in 2034, all Social Security benefits would be reduced by 23% according to the agency's projections.
The largest single "private" institution that has loaned money to the U.S. government is the U.S. Federal Reserve, which accounts for nearly one out of every eight dollars borrowed by the U.S. government. It lent nearly all of that total since 2008, mainly through the various quantitative easing programs it operated from 2009 through 2015 in its attempt to stimulate the U.S. economy enough to keep it from falling back into recession. In September 2017, the Fed announced that it would begin reducing its holdings of U.S. government-issued debt.
Update 24 July 2018: We made some minor corrections to the chart to reflect revised data. The original version is available here.
U.S. Treasury. The Debt To the Penny and Who Holds It. [Online Application]. 30 September 2017.
Federal Reserve Statistical Release. H.4.1. Factors Affecting Reserve Balances. Release Date: 28 September 2017. [Online Document].
U.S. Treasury. Major Foreign Holders of Treasury Securities. Accessed 18 April 2018.
U.S. Treasury. Monthly Treasury Statement of Receipts and Outlays of the United States Government for Fiscal Year 2017 Through September 30, 2017. [PDF Document].
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.