// 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 Wright Brothers Take to the Skies in the First Powered Flight

#9 Science in History


17th December 1903


On this day in 1903, the Wright brothers make their first successful flight in a powered aircraft at Kitty Hawk, North Carolina.


Their glider was the first heavier-than-air craft to achieve sustained and, importantly, controlled flight with a pilot aboard. Orville and Wilbur Wright had been experimenting with gliders since 1900, but it wasn't until December 17th that they achieved their goal of powered flight.


In total, they made four brief flights that morning, the longest lasting 59 seconds and covering 852 feet (260 metres).


Their aircraft was a biplane glider called ‘The Wright Flyer’. Constructed out of spruce wood, muslin fabric, and bicycle parts and powered by a 12-horsepower gasoline engine, it flew for 12 seconds, covering 120 feet.


This event marked the beginning of the age of aviation.







 

Suggested Reading


"To Conquer the Air: The Wright Brothers and the Great Race for Flight " by James Tobin: an inspiring and captivating account of the Wright Brothers' journey to flight.


"The Wright Brothers: The Dramatic Story Behind the Legend" by David McCullough: Through extensive research, McCullough paints a vivid picture of these men’s upbringing in Dayton Ohio as well as their tireless efforts to make aviation possible.



On the Web


"The Story of the Wright Brothers" - CBS Sunday Morning (YouTube)


Recent Posts

See All
bottom of page