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
Once upon a time, economist Arthur C. Pigou proposed that by imposing taxes upon things that might create excess social costs, those costs could be reduced.
Called a "Pigovian Tax", a classic example of this kind of tax in action would be the special excise taxes that many states impose upon tobacco products, where the excess social costs might be the increased spending for health care to deal with smoking-related ailments.
Here, if Pigou's taxes really work, we should see the consumption of tobacco products fall as the taxes imposed on them are raised substantially enough to affect the purchasing decisions of those who might consume them.
Let's use the state of Hawaii as a case study here, because Hawaii has been greatly increasing their taxes on tobacco products over the last several years. Here, the typical excise tax imposed by the upon a pack of cigarettes has increased from $1.00 in 2000 to $3.20 per pack in 2011, with 60% of that increase having taken place since 2008. During that same time, the federal excise tax on tobacco has increased from $0.34 per pack to $1.01 per pack, and the typical retail price of a pack of cigarettes in Hawaii has risen from $4.05 in 2000 to $9.27 in 2011.
But unlike every other state in the U.S., Hawaiians can't just jump in their cars and make a quick run for the border for the sake of buying bootleg tobacco products to avoid their state's very high tobacco taxes, which has risen to now rank fourth in the nation, behind only New York, Rhode Island and Connecticut.
That means that if Pigovian taxes can really work to significantly reduce the consumption of tobacco products anywhere, they're going to work in the islands in the middle of the Pacific Ocean that make up the state of Hawaii.
We've tapped the state's most recently issued report on its tax revenue collections from its excise tax on tobacco products for each of its fiscal years from 2000 through 2011. We then used that data, along with the state's tax on each 20-count pack of cigarettes, to calculate the equivalent quantity of packs of cigarettes consumed in the state for each of those years.
Our chart below reveals what we found:
Here, we see that the consumption of tobacco products actually rose in every year from 2000 through 2005, before beginning to fall in the years from 2005 through 2009.But we see that 2009 really marked a bottom in consumption - the consumption of tobacco products has bounced back in 2010 from that low point and has held steady 2011, despite the state continuing to increase its taxes on tobacco products in each of those years.
What this data indicates is that whatever benefits that Pigovian taxes might be able to provide have diminishing returns. Past a certain point, they will fail to achieve their objectives of meaningfully reducing the excess social costs for the ails they are meant to fix. Instead, these kinds of taxes would appear to simply become a vehicle by which politicians may raise tax revenue by imposing a discriminatory tax policy aimed at an "undesirable" minority.
This outcome is quite different from what we anticipated might happen when we last looked at Hawaii's taxes on tobacco. We're definitely surprised.
State of Hawaii. Department of the Attorney General. Report on the Tobacco Enforcement Special Fund. Fiscal Year 2010-2011. [PDF document]. 9 January 2012.
Labels: taxes
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.