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

From Observation to Revolution: The Collaboration that Changed Astronomy

Updated: Jul 21, 2023

#31 Science in History


04 February 1600


On this day, in 1600, the German astronomer and mathematician Johannes Kepler arrived in Prague to begin his collaboration with Tycho Brahe.

Monument of Tycho Brahe and Johannes Kepler in Prague, Czechia

Johannes Kepler and Tycho Brahe were two of the most important astronomers of the 16th and 17th centuries. Their collaboration played a crucial role in the development of modern astronomy and helped lay the foundations for Isaac Newton's laws of motion and gravitation.


Tycho Brahe was a Danish nobleman and astronomer who made precise observations of the stars and planets using large, elaborate instruments. Despite his success, Brahe did not have a comprehensive understanding of the laws that governed the movements of celestial bodies.


Johannes Kepler was hired by Brahe as an assistant in 1600 and was tasked with analysing the data collected from Brahe's observations. Brahe died the following year but left his data, records and instruments to Kepler. Kepler was fascinated by Brahe's data and spent years working to uncover the underlying laws that governed the movements of the planets.


Kepler's work on Brahe's data led him to develop his three laws of planetary motion, which describe how planets move in elliptical orbits around the sun, with the sun at one focus of the ellipse. These laws, published in 1609 in Kepler's book "Astronomia Nova," proved to be revolutionary, providing a new understanding of the universe.


Without Brahe's detailed data, Kepler would not have been able to develop his laws of planetary motion. The collaboration between Brahe and Kepler was therefore critical in advancing the field of astronomy and paving the way for future discoveries.





bottom of page