// 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

“Does Rust Eat Iron?”

Simply Science 5


Rust, a flaky reddish-brown substance, can be described as "eating away" at iron, even if it’s not in the biological sense! Rust is the result of a chemical reaction between iron, oxygen, and water, and it causes the deterioration of iron and iron-containing alloys like steel.

Here's how rust formation occurs:


  • Iron or steel surfaces exposed to the atmosphere come into contact with oxygen.

  • The presence of moisture, such as water or even humidity, is necessary for rusting to occur. Water provides the necessary medium for the chemical reaction.

  • The iron in the metal reacts with oxygen and, through a series of reactions, forms rust. The chemical reaction can be simplified as follows:

iron + oxygen + water → hydrated iron oxide (rust)

(hydrated means that water is associated with it)

  • As rust forms, it gradually converts the metal to rust at the surface of the iron or steel. This process weakens the metal and can eventually lead to structural damage or failure if left if not attended to.


So, while "eating away" might not be a literal consumption like the biological process, rusting is a corrosive chemical reaction that gradually erodes iron or steel structures, causing them to weaken and deteriorate over time.



logo sciteach





bottom of page