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
A little over three months ago, a momentous event passed with little notice. The economy of the planet Mars came into existence.
The occasion was marked in Nature, though neither the author of the report nor those directly involved in the achievement were fully aware of the significance of what they achieved on 6 September 2021. Here's the basic story of the accomplishment as they understood it:
After a failed attempt last month, NASA’s Perseverance rover has successfully drilled, extracted and stored a sample of Martian rock — the first ever Mars sample destined to be flown back to Earth for study.
“This is a momentous achievement,” said NASA administrator Bill Nelson in a statement.
When the rover first attempted the manoeuvre, on 6 August, the rock it was trying to sample crumbled into powder before making it into a sample tube. The second attempt, on 1 September at a different location several hundred metres away, went smoothly: the drill bit pulled a slim cylinder out of a 70-centimetre-long rock named Rochette. Engineers then paused the process so that they could photograph the core in its sample tube, to ensure it was intact, before sealing the specimen inside days later, on 6 September.
The core from Rochette now rests in Perseverance’s belly, hermetically sealed and ready to wait many years until future spacecraft can retrieve it and any other cores the rover manages to collect. The goal is to gather about 35 cores representing the geological history of Jezero Crater, Perseverance’s landing site — which was home to a river delta billions of years ago and might contain evidence of ancient Martian life.
Here's a short one-minute video documenting the Perseverance probe's drilling operation:
To be sure, this is not the first drilling operation on Mars, nor it the first time a rock sample has been moved or examined by an automated rover or lander on Mars. What makes this remote, robotically-performed operation different is what was done with the rock sample that was collected. It was put into inventory where it will remain stored until it might be exported from Mars.
These actions differentiate Perseverance's activity from all the missions to Mars that preceded it. That difference is meaningful in an economic sense, because it marks the first change ever recorded in the amount of inventory of a good produced for future interplanetary trade on Mars. We would argue this production along with the intent to transact or trade the produced good now being stored qualifies the production of the rock sample as a genuine economic activity. Without the intent to trade, the rover's work would not be meaningfully different from the activities of say a squirrel storing nuts or a roving herd of buffalo disturbing rocks while grazing on the prairie, which we don't think anyone would classify as economic events.
Let's put an economic value on the rover's economic activity. In this case, the cylindrical rock sample that is approximately 13-mm in diameter and 60-mm long, or rather, 7,964 cubic millimeters in volume. On 23 February 2021, Christie's auctioned a Martian meteorite sample measuring 91 mm x 79 mm x 2 mm (a volume of 14,378 cubic millimeters) for $40,000. Assuming the meteorite's material has a similar density, that would give an estimated value of Perseverance's first Martian rock sample of $22,156.
That's a low end estimate. Christie's also auctioned a smaller sample, measuring 26 mm x 12 mm x 2 mm (a volume of 624 cubic millimeters), for $13,760. If that price is more reflective of the value of the first rock core sample currently held in inventory on Mars, its value would be $175,616.
Since then, the Perseverance rover has collected two more samples. Therefore, based on what we know today, the first estimate of Mars' GDP can be found by multiplying the estimated value of one of its rock samples by three. The product of that math has a huge error band, likely falling somewhere between $66,468 and $526,848 during the current Martian quarter!
The real question though is this the right way to go about estimating GDP on a faraway planet with a robotic population? What really does qualify as economic production in this case? Do any non-human actions qualify as economic activity?
If you can answer these questions, well, the sky is no longer the limit, is it?
Our anniversary posts typically represent the biggest ideas and celebration of the original work we develop here each year. Here are our landmark posts from previous years:
We marked our 2013 anniversary in three parts, since we were telling a story too big to be told in a single blog post! Here they are:
Resuming our list of anniversary posts....
Labels: economics, gdp, ideas, technology
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.