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
Imagine that you're the proud parent of a soon-to-graduate high school senior who will soon be headed off to college. Should you send them away to a traditional university? Or should you encourage them to pursue their college diploma through an online program while living and working at home ?
To answer this question, we'll consider three options:
We'll also be making the following assumptions:
We found the following cost per credit for the 2008-09 academic year for the three types of institution:
2008-09 Cost of Tuition | ||
---|---|---|
Type of Institution | Cost per Academic Year | Cost per Tuition Credit |
Public University | $6,585 | $219.50 |
Private University | $25,143 | $838.10 |
Online University | Varies | $494.00 |
We next took into account the rate of inflation for university tuition, which the College Board estimates to be roughly 6.5% per year. The table below projects the cost of tuition for each year of attending each type of academic institution:
Year-by-Year Cost of Tuition, Accounting for Inflation | |||
---|---|---|---|
Year | Public University | Private University | Online University |
Year 1 | $ 6,585 | $25,143 | $13,338 |
Year 2 | $ 7,013 | $26,777 | $12,627 |
Year 3 | $ 7,469 | $28,518 | $15,128 |
Year 4 | $ 7,954 | $30,371 | $14,321 |
Year 5 | - | - | $ 11,439 |
Total | $ 29,021 | $110,810 | $ 66,860 |
In the table above, we assume that students attending the online university alternate between 27 and 24 credits each year, which leaves 18 credits left to be earned during the fifth year.
Now that we have the tuition picture, let's consider the cost of room and board for each type of institution. Here, we assume that these costs represent what is required to support your student at college, which would be in addition to those you currently require to support your own household with them at home. We obtained our basic values for room and board by subtracting the cost of tuition from total college costs for 2006-07 academic year data from the College Board (using Figures 3 and 4), then updated it to the current and future years based on the rate of change that they've indicated the year-over-year change between 2007-08 to 2008-09:
Year-by-Year Cost of Room and Board, Accounting for Inflation | |||
---|---|---|---|
Year | Public University | Private University | Online University |
Year 1 | $ 7,760 | $ 7,949 | - |
Year 2 | $ 8,160 | $ 8,349 | - |
Year 3 | $ 8,560 | $ 8,749 | - |
Year 4 | $ 9,360 | $ 9,549 | - |
Year 5 | - | - | - |
Total | $42,800 | $43,745 | - |
Now, we'll add up the totals for tuition and room and board, then find the total cost of each type of institution per credit:
Estimated Total Cost of College and Total Cost per Tuition Credit Earned | |||
---|---|---|---|
Type of Institution | Public University | Private University | Online University |
Total Tuition Cost | $ 29,021 | $110,810 | $ 66,860 |
Total Room and Board Costs | $ 42,800 | $ 43,745 | - |
Estimated Total College Cost | $ 71,821 | $154,555 | $ 66,860 |
Total College Cost per Tuition Credit Earned | $ 598.51 | $1,287.95 | $ 557.17 |
So, we see that when you factor your child's living expenses of being away at college into the picture, even a taxpayer-supported public university may not offer the best deal.
Then again, if you can have your child live at home while attending a traditional university, that might provide the lowest all-round costs. The downside to that scenario though is that the time for classes and commuting would limit your college student's ability to be able to work while going to school.
Labels: education, personal finance
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.