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
No, we're not talking about the former insurance company pitchmen from a series of highly entertaining commercials who later went on to star in a lackluster US sitcom. Instead, we're talking about the original cavemen who worked out that even if one caveman is an all-around better hunter-gatherer compared to another, less capable hunter-gatherer, it still may make a lot of sense for them to each specialize in a given task and trade with one another (HT: Free Exchange):
Even if Iga is better than Og at both fishing and fruit gathering --
-- It takes Og 3 hours to catch a fish and would take 4 hours for him to gather some fruit,
-- While it only takes Iga 1 hour to gather some fruit, and 2 hours to catch a fish,
Then is still pays for Iga to get her fish from Og. She could gather 2 meals of fruit and swap one of them for Og's second fish.
Because that way Iga works only 2 hours for a meal of fruit and fish, instead of 3 if she was self-sufficient, and Og only works 6 hours, instead of 7 if he was self-sufficient.
As we see in this example, Iga is the superstar hunter-gatherer, able to leave hapless Og in the dust when it comes to both fishing and fruit gathering. But, as the example points out, they both come out ahead when they divide the hunting-gathering tasks between them and trade with one another. Both end up with the same amount of food as they did before, but now, they have a lot more time to do all other things cavemen would do if they didn't have to spend so much time barely eking out a subsistence level of existence!
But, what if Iga wasn't such an over-achiever compared to Og? Or, what if Iga was even more of a hunting-gathering dynamo? What if Iga and Og combined their efforts? Would it still make sense for Iga and Og to trade with each other?
To find out, we pulled a page straight out of the caveman playbook: we built a tool! In the input fields below, enter how many hours each it takes for Iga or Og to catch 1 fish and gather fruit for 1 meal on their own. The tool will work out the math for four different scenarios, each of which will result in two fish being caught and fruit for two meals being gathered:
So, here we go - the default data is taken directly from the example above, and the tool will find the number of hours that both Iga and Og need to achieve their tasks for these situations, as well as how many hours they save over doing each task individually (here, positive values indicate that time is saved, while negative results indicate that more time was required than what was needed to work individually):
In playing with the numbers, we find that the best benefits come from trade where Iga and Og perform the task in which at least one has a comparative advantage! Perhaps that helps explain the prehistoric graffiti that was found recently written on the wall of an ancient cave:
Trade better than wheel! And fire!
There's no clear indication if either Iga or Og were the culprits, although when you think about it, free trade would be the greatest invention of all time.
The following is courtesy of Art Carden at Division of Labour, who neatly summarized how economists across the ideological spectrum view the benefits of the gains of trade:
We had an interesting discussion about presidential candidates' stances on trade before my 11:00 AM class yesterday. Trade is an issue that definitely cuts across economists' ideological spectrum. Here's Greg Mankiw on Barack Obama's anti-NAFTA stance, including an instructive quote from his colleague Larry Summers on NAFTA's success. Here's Paul Krugman on "Ricardo's Difficult Idea." Finally, here's Brad DeLong explaining why comparative advantage is the most misunderstood concept in economics.
"Trade Promotes Economic Progress" is #4 among the "Ten Key Elements of Economics."
Labels: economics, tool, trade
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.