// 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 is the Sky Blue?”

Simply Science 01


The blue colour of the sky is primarily caused by a phenomenon known as Rayleigh scattering.

Blue sky

Here's a simplified explanation of why the sky appears blue:


Sunlight (white light) is composed of a spectrum of colours. Each colour corresponds to a different wavelength, with blue light having shorter wavelengths compared to other colours like red or yellow.


Our Earth's atmosphere is primarily composed of nitrogen (~80%) and oxygen (~20%) molecules. These molecules are much smaller than the wavelengths of visible light. When sunlight enters the Earth's atmosphere, it encounters these tiny molecules. Due to their small size relative to the wavelength of blue light, the molecules interact with it more effectively. This interaction scatters (Rayleigh Scattering) the blue light in all directions.


Because blue light is scattered more than other colours, it appears to come from all parts of the sky. As a result, when we look up, we see a higher concentration of blue light coming towards our eyes. This abundance of scattered blue light gives the sky its characteristic blue colour.


Our eyes are also more sensitive to blue light than violet or ultraviolet light, which is also scattered but is not as easily visible to us. This further enhances our perception of the sky as blue.


logo sciteach





bottom of page