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

Uranus' 'King' and 'Queen' Discovered

Updated: Jul 21, 2023

#19 Science in History

11 January 1787


On this day in 1787, William Herschel discovers the two largest moons of Uranus, six years after discovering the planet.

The two moons were named Oberon and Titania, after characters from Shakespeare's play "A Midsummer Night's Dream."


Oberon, the outermost of the two moons, is named after the king of the fairies in the play. It is the second largest of Uranus' moons and is known for its heavily cratered surface. Titania, named after the queen of the fairies in the play, is the largest of Uranus' moons. It is thought to have a mostly icy surface with a few large impact basins.


The discovery of Oberon and Titania showed that Uranus, like the other giant planets in the solar system, has a system of moons orbiting around it. Since the discovery of Oberon and Titania, many more Uranian moons have been discovered. Currently, there are a total of 29 known moons orbiting Uranus.





bottom of page