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 does has the U.S. federal government cumulatively borrowed in order to loan money to U.S. students?
Would you believe the answer is nearly $1 trillion dollars?
From January 2009 through October 2015, the U.S. government has borrowed over $820 billion to fund its Federal Direct Student Loan Program, with the cumulative amount sitting at $964 billion as of the end of October 2015. Over that same time, the total U.S. national debt had increased by $7.5 trillion, which means that over one out of every ten dollars that the U.S. government has borrowed since President Obama was sworn into office has gone to fund student loans.
Meanwhile, since 2009, the U.S. student loan default rate has ranged between 11.8% to 14.7%, which is to say that over one out of every eight federal government-funded student loans are not being paid back according to their contractual terms.
U.S. News and World Report's Student Loan Ranger weighs in on the federal government's student debt problems:
Despite an increase in the use and awareness of options such as the income-driven repayment plans, 11.6 percent of student loan borrowers had loans 90 days or more past due during the last quarter, which ended at the end of September. That's higher than the delinquency rate for car loans, mortgages and even credit cards.
Meanwhile, the overall student loan debt balance increased by $13 billion in the same time frame – bringing outstanding student debt balances in this country to $1.2 trillion. To put that in perspective, credit card debt increased $11 billion in the same period to a total of $714 billion, and there's $1.05 trillion in outstanding auto loans – but only 3.4 percent of auto loans are 90 days or more past due.
A footnote reminds readers that these student loan delinquency numbers don't take into account the fact that up to half of the loans in "good standing" are likely not in repayment at all but are postponed because the borrowers are still in or recently separated from school, or are temporarily putting off payment. This means that delinquency rates actually could be twice as high.
Doing some quick back of the envelope math, as of September 2015, the U.S. government's Federal Direct Student Loan program now accounts for 79% of all outstanding student loans in the United States.
U.S. Department of the Treasury. Monthly Treasury Statements. Table 6. Schedule C (Memorandum) - Federal Agency Borrowing Financed Through the Issue of Public Debt Securities. Department of Education: Federal Direct Student Loan Program, Account Balances, Current Fiscal Year, Close of This Month. [Back Issues: November 1998 - September 2015 (PDF Documents)]. Accessed 3 December 2015.
Labels: debt, education, 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.