// 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 Tragic Tay Bridge Disaster

Updated: Jul 23, 2023

#15 Science in History

December 28th, 1879







The Tay Bridge Disaster was a devastating event that caused the collapse of the Tay Rail Bridge in Scotland, resulting in the death of 75 people. This tragedy was a result of a faulty design combined with poor construction and maintenance. The disaster marked a turning point in the history of bridge building and it serves as an important lesson to this day.


The Tay Bridge was designed by Thomas Bouch, a renowned engineer who was knighted for his work on the bridge. However, the bridge was ultimately doomed by a number of design flaws, such as inadequate foundations, poorly placed columns, and inadequate wind bracing.

The Tay Bridge Before Collapse

The bridge was built using substandard materials, such

as scrap iron and wood, and by inexperienced labourers. This led to problems such as misaligned columns and weak structures. In addition, the bridge was not properly maintained, resulting in corrosion and rotting of its components.

The night of the disaster was marked by poor weather conditions. The wind was gusting up to 80 mph, which put additional strain on the bridge. This combined with the design flaws and construction issues led to the collapse of the bridge.


The Tay Bridge Disaster is an important reminder of the importance of engineering and construction safety. To this day, engineers and construction workers are trained to ensure that they use the best materials and techniques to create safe and reliable structures. The tragedy of the Tay Bridge Disaster will never be forgotten.










bottom of page