// StartMathJax Script window.MathJax = {loader: {load: [ 'input/asciimath', 'ui/lazy', 'output/chtml', 'ui/menu']} }; (function() { var script = document.createElement('script'); script.src = "https://cdn.jsdelivr.net/npm/mathjax@3/es5/startup.js"; script.async = true; document.head.appendChild(script); })(); ---------- (Different files) ---------- // UpdateTypeset Script config = { attributes: true, childList: true, subtree: true }; // Callback function to execute when mutations are observed callback = (mutationList, observer) => { for (mutation of mutationList) { if (mutation.type === 'childList') { console.log('A child node has been added or removed.'); MathJax.typeset(); } else if (mutation.type === 'attributes') { console.log(`The ${mutation.attributeName} attribute was modified.`); } } }; // Create an observer instance linked to the callback function observer = new MutationObserver(callback); document.onreadystatechange = () => { if (document.readyState === 'complete') { console.log("Loaded fully according to readyState") targetNode = document.getElementById('content-wrapper') console.log(targetNode) // Start observing the target node for configured mutations observer.observe(targetNode, config); } }
top of page

Spirit of Mars: A Rover's Tale

Updated: Jul 21, 2023

#14 Science in History

03 January 2004


On this day in 2004, Spirit successfully lands on Mars.

The Mars rover ‘Spirit’ was sent to explore the planet Mars as part of NASA's Mars Exploration Rover (MER) mission. The rover was launched on June 10, 2003, and landed on Mars on January 3, 2004. Spirit was one of two rovers that were sent to Mars as part of the MER mission, the other being its twin, Opportunity.


Spirit's main function was to search for evidence of water that may have once existed on the planet, as well as to study the rock and soil composition of the planet. It was also the first rover to use a robotic arm to place scientific instruments directly onto the Martian surface.

The piece with the American flag is made of aluminium recovered from the World Trade Centre "Ground Zero"

Over the course of its mission, Spirit travelled over 4.8 miles (7.73 km) across the surface of Mars, exploring a variety of different geological features and terrains.


After operating on the Martian surface for over six years, the rover began to experience problems with its wheels and was no longer able to move. Despite efforts by NASA engineers to fix the problem, Spirit was eventually declared "dead" in March 2010. It had solidly performed for over 74 months, more than 25 times its original intended lifetime.


All images: Wikipedia, public domain.





bottom of page