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

“What Causes Tides?”

Simply Science 9


Tides are primarily caused by the gravitational interaction between the Earth, the Moon, and the Sun. The gravitational pull of these celestial bodies creates tidal forces that result in the rise and fall of ocean water levels.

tides on clean beach

Here's a simplified explanation of the key factors that cause tides:


Gravitational Pull of the Moon: The Moon exerts a gravitational force on the Earth. This force isn't uniform across the Earth; it's stronger on the side of the Earth facing the Moon and weaker on the opposite side. The difference in gravitational force between these two points leads to a phenomenon called the tidal bulge.


High Tide: The tidal bulge on the side of the Earth facing the Moon results in a high tide.


Low Tide: On the opposite side of the Earth, where the gravitational force is weaker, a second high tide occurs due to the centrifugal force caused by the Earth and Moon's rotation. This forms a second tidal bulge, leading to a second high tide.


Incidentally, the gravitational interaction between the Earth and the Moon has caused the Moon to become tidally locked to the Earth. This means that the same side of the Moon always faces the Earth, and the other side is never visible from Earth!


Gravitational Pull of the Sun: While the Moon's gravitational force is the primary driver of tides, the Sun also exerts a gravitational pull on the Earth. When the Sun, Earth, and Moon align during the full moon and new moon phases, their gravitational forces combine, leading to higher high tides known as spring tides.


Counteracting Forces: In addition to the gravitational forces, the Earth's rotation plays a crucial role. As the Earth rotates on its axis, locations on the Earth's surface move through the two tidal bulges. This movement results in two high tides and two low tides each day.


Tidal Patterns: The exact timing and height of tides can vary depending on the geographic location and local geography, such as the shape of coastlines, bays, and estuaries. These factors can amplify or dampen the tidal range.


Tides are not unique to Earth. They can occur on other celestial bodies with gravitational interactions. For example, the moon Io, one of Jupiter's moons, experiences intense tidal forces due to Jupiter's gravity, causing frequent volcanic eruptions. Jupiter's massive gravity creates tides on its other moon Europa, possibly maintaining a subsurface ocean.


Tidal forces also play a role in the interactions between galaxies. When galaxies come too close to one another, their gravitational interactions can trigger tidal forces that distort their shapes and even lead to galactic collisions.


To Summarise:


Tides are primarily caused by the gravitational pull of the Moon and, to a lesser extent, the Sun, which creates tidal bulges on the Earth.

The Earth's rotation then causes these bulges to move around the planet, resulting in the regular pattern of two high tides and two low tides each day.

The specific timing and height of tides can vary based on location and local geography.

Maths logo

bottom of page