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
Part of the attraction of the government's "Cash for Clunkers" taxpayer-financed subsidy for new car purchases is the claim that by replacing gas guzzling vehicles with newer, more fuel-efficient ones will greatly benefit the environment.
But will it really? How long might it take for taxpayers to get to enjoy the "green" benefit for the $4,500 tax credit they're being required to provide?
Environmental economists like Matt Kahn ask questions like these and, fortunately for us, also work out the math to answer them! Our tool below is based upon his math and will answer the question of how long taxpayers will have to wait to get their money's worth of green benefits from the new vehicles acquired through the "Cash for Clunkers" trade-in program in the form of reduced carbon emissions from operating the vehicles.
Just enter the indicated data in the tool below. While most of the data is easily obtainable, the data related to carbon dioxide may not be. The EPA's estimate of 19.4 lbs per gallon is what we've entered for the amount of CO2 produce per gallon of fuel consumed (HT: Michael Roberts). Meanwhile, the cost of CO2 per ton in the calculation refers to the marginal social cost of an additional ton of carbon dioxide, which is subject to debate. Currently, the cost of a ton of CO2 in Europe is roughly $19 per metric ton (or $17.24 per U.S. short ton), but many argue that value doesn't incorporate the full "social" cost. We've used Matt's estimate of $35 per ton in the tool below for that figure, but you're more than welcome to change it!
Using the default numbers, we find that it takes a very long time for taxpayers to get their money's worth for what they were required to spend to support the "Cash for Clunkers" program. At 26.5 years, the time needed to obtain the perceived benefits of reduced CO2 emissions will very likely outstrip the useful life of the new "green" vehicle, suggesting that taxpayers will never realize a positive environmental return on the $4,500 they provided to subsidize the new car sale.
In the tool above, we've incorporated the assumption that the money provided by U.S. taxpayers to those trading in their "clunkers" is at a 0% rate of interest. As Matt notes, if the interest rate is positive, it significantly increases the amount of time the taxpayer must wait to get a positive return on their "investment" in putting a greener vehicle on the road in place of a less fuel-efficient one.
We'll also note that greater fuel efficiency tends to increase the amount of driving, which would also act to increase the amount of time required to obtain a "green" payback. While we've set the annual miles driven for each type of vehicle to be the same in the tool above, you can change the data to account for this effect.
On the other side of the balance, there may be other benefits that may be realized beyond CO2 reduction from operating a more fuel-efficient vehicle, such as the net reduction of other emissions that may reduce the time needed for taxpayers to get a positive benefit from subsidizing new vehicle sales through this government program.
Labels: economics, environment, politics, tool
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.