// 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 the Sun Look Yellow?"

Simply Science 03


The Sun appears yellow mainly because of how the Earth's atmosphere scatters sunlight. The Sun emits light across the entire visible spectrum, with various colours ranging from violet and blue to green, yellow, orange, and red. Each of these colours corresponds to a different wavelength of light. This mixture means that the light from the Sun is actually white light.

Yellow Sun

When sunlight passes through the Earth's atmosphere, it interacts with the molecules and particles in the air. This interaction scatters the sunlight in all directions. However, shorter wavelengths of light, such as violet and blue, are scattered more than longer wavelengths, like yellow and red. This phenomenon is known as Rayleigh scattering.


As a result of Rayleigh scattering, when we look at the Sun from the Earth's surface, we see more of the longer-wavelength yellow and red light because they are scattered less. This is why the Sun often appears yellow or orange during sunrise and sunset when its light must pass through a thicker layer of the Earth's atmosphere.


The Sun can also take on different shades of yellow, orange, or red depending on atmospheric conditions, pollution, and other factors. During a sunrise or sunset, for instance, the Sun can appear reddish due to the increased scattering of shorter wavelengths and the longer path its light takes through the atmosphere.

Yellow Sun

 

Similar Questions







logo sciteach





bottom of page