// 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 Announcement of the Discovery of Insulin: A Breakthrough in the Treatment of Diabetes

Updated: Jul 21, 2023

#35 Science in History

11th February 1922


On February 11, 1922, a research paper was published in the Journal of Laboratory and Clinical Medicine, co-written by Dr. Frederick Banting and Dr. Charles Best, entitled "The Internal Secretion of the Pancreas." This paper announced the discovery of insulin, a hormone produced by the pancreas that regulates glucose levels in the blood. This breakthrough in medical science would change the lives of people with diabetes forever.

Charles H. Best and Frederick G. Banting with one of the diabetic dogs used in their experiments.

Before the discovery of insulin, people with diabetes were faced with a grim prognosis. The condition was characterized by high levels of glucose in the blood, which could lead to a range of debilitating symptoms, including blindness, amputations, and death. There was no effective treatment, and people with diabetes were often confined to a life of poverty, unable to work and dependent on others for their care.


Banting had a big problem from the start - he had no research experience so approached Professor J.J.R. McLeod at the University of Toronto for help. Although McLeod had little confidence in the enterprise, Banting managed to convince him to supply lab space and resources.


Banting and Best's discovery of insulin revolutionized the treatment of diabetes. By removing the pancreas from dogs and extracting insulin from the gland, they were able to demonstrate that insulin could regulate glucose levels in the blood and prevent the symptoms of diabetes. The production of insulin soon became a lifesaving treatment for people with diabetes.


Insulin’s discovery was not without challenges. Early insulin preparations were crude and impure, and the extraction process was time-consuming and costly. Despite these challenges, insulin was quickly adopted as a treatment for diabetes, and the discovery was recognized with the Nobel Prize in Physiology or Medicine in 1923. The Nobel Prize was awarded jointly to McLeod and Banting and, astonishingly, not to Charles Best.


In his acceptance speech for the Nobel Prize, Banting recognized Best's important contributions to the discovery of insulin and acknowledged the close collaboration between the two researchers. He went on to announce that he would be sharing half of his award with Best, as a token of his appreciation for Best's contributions to the project.


Banting and Best's discovery of insulin is widely regarded as one of the greatest achievements in the history of medicine. Today, millions of people with the condition can live full and active lives thanks to the discovery of insulin.





bottom of page