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

"Why Does Ice Float?"

Updated: Sep 23, 2023

Simply Science 8


Ice is solid water and floats because it is less dense than liquid water.

Penguins on ice

Water molecules contain two hydrogen atoms and one oxygen atom, bonded together to form a V-shaped molecule. These molecules are attracted to each other through hydrogen bonding, which involves the positive hydrogen end of one molecule being attracted to the negative oxygen end of another.

liquid water structure

When water freezes and turns into ice, the hydrogen bonds arrange themselves in a hexagonal lattice structure. This arrangement causes water molecules to spread out and form a crystal lattice with relatively large spaces between them. These spaces create a less dense structure than the liquid water molecules, where they are more closely packed.

ice structure

As a result, the density of ice is about 0.92 grams per cubic centimetre (g/cm³), whereas the density of liquid water is approximately 1.00 g/cm³. Because ice is less dense, it floats on top of liquid water.





logo sciteach





bottom of page