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

Edmond Halley's Prediction is Confirmed

#12 Science in History

25 December 1758


Astronomer Johann Georg Palitzsch spots the comet's return

Halley's Comet in 1066 depicted in the Bayeux Tapestry

On Christmas Day 1758, Johann Georg Palitzsch observed a comet, in the constellation of Pisces, which he correctly identified as ‘Halley's Comet’. Edmond Halley had predicted in 1705 the return of the comet to the Earth's vicinity every 75.5 years. This was the first time since its last appearance in 1682 that the comet had been seen again.


The discovery, made at the Dresden observatory in Germany, was met with great excitement and admiration from astronomers around the world. Palitzsch had helped to confirm Halley's prediction that the comet would return around every 76 years.


Halley couldn’t celebrate the confirmation – he had died 16 years before.




bottom of page