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

The Remarkable Discovery of the Coelacanth

#11 Science in History

22 December 1938


The 'Living Fossil' that provides insight into evolution


The discovery of the coelacanth is one of the most remarkable zoological discoveries of the 20th century. The coelacanth is a primitive fish that was thought to have gone extinct with the dinosaurs 65 million years ago.



It's December 1938 and South African museum curator, Marjorie Courtenay-Latimer, receives a call from a local fisherman who had caught a strange fish (she was always on the lookout for novel specimens). Marjorie recognized the fish as something special and sent a sketch of it to an ichthyologist, J.L.B. Smith. Smith identified the fish as a coelacanth, a species that had been thought to be extinct for millions of years.


Smith and Courtenay-Latimer travelled to the fishing village of East London, South Africa, to examine the fish. They confirmed that it was indeed a coelacanth, and the news of the discovery spread quickly.


Since then, more coelacanths have been found in the Indian Ocean off the coast of South Africa and in the Comoros Islands. The coelacanth is now considered a living fossil, and its discovery has provided scientists with valuable insight into the evolution of fish.







bottom of page