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

“I’ve Heard That Sharks Can’t Stay Still. Is This True?”

Simply Science 6


Sharks are indeed capable of staying still in the water, but their ability to do so can vary depending on the species and the circumstances. Some sharks are more capable of remaining stationary than others, and their ability to do so is often related to their hunting and feeding behaviour.

Picture of a Shark

Many sharks have a method of gaining oxygen known as "ram ventilation." They must swim continuously to force water over their gills and extract oxygen from it. If they were to stop swimming, they could suffocate because they wouldn't receive enough oxygen. This is true for many active, pelagic (open ocean) species like the great white shark.


In contrast, some species of sharks are adapted to a more, shall we say, sedentary lifestyle. Bottom-dwelling sharks like the nurse shark or angel shark don’t rely on ram ventilation. These sharks can rest on the ocean floor (Benthic Species) and pump water over their gills without having to move continuously.


There are some species of sharks that can hover or stay relatively stationary in the water, using their pectoral fins to create lift and maintain their position. This is often observed in species like the hammerhead shark, which can hover motionless near the ocean floor.


Some sharks, such as grey reef sharks, also use currents to their advantage when they want to rest. By positioning themselves in areas with strong currents, they can maintain water flow over their gills and don’t have to actively swim – a great opportunity to have a nap!


Strangely, some sharks, like the mako shark, engage in "yo-yo swimming." They swim up to the warmer surface waters to raise their body temperature and then slowly descend to cooler depths to rest. During the descent, they may remain relatively still.


So, the idea that sharks can't stay still is not entirely accurate. While many species of shark need to keep swimming to maintain oxygen flow over their gills, there are exceptions, and some sharks have adaptations that allow them to rest or hover in the water.


Quite an amazing fish …


logo sciteach





bottom of page