FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
BMI: A 200-Year-Old Formula That Developers Keep Getting Wrong
How-ToMachine Learning

BMI: A 200-Year-Old Formula That Developers Keep Getting Wrong

via Dev.toMichael Lip2h ago

Adolphe Quetelet was a Belgian astronomer and mathematician, not a physician. In 1832, he analyzed population data and noticed that body weight scaled roughly with the square of height. He proposed a simple index: weight divided by height squared. Nearly two centuries later, this formula -- now called the Body Mass Index -- is used by every doctor's office, insurance company, and fitness app on the planet. As a developer who builds health tools, I find BMI fascinating not because it is a good measure of individual health (it has serious limitations) but because it is an excellent case study in how a simple formula gets adopted, misused, and defended all at the same time. The Formula BMI in metric units is straightforward: BMI = weight (kg) / height (m)^2 For a person who weighs 75 kg and is 1.75 m tall: BMI = 75 / (1.75)^2 BMI = 75 / 3.0625 BMI = 24.5 The implementation is trivially simple: def calculate_bmi ( weight_kg , height_m ): if height_m <= 0 : raise ValueError ( " Height must

Continue reading on Dev.to

Opens in a new tab

Read Full Article
0 views

Related Articles

Your CLAUDE.md Is a Suggestion. Hooks Make It Law.
How-To

Your CLAUDE.md Is a Suggestion. Hooks Make It Law.

Medium Programming • 1h ago

The Hidden Complexity of Citation Formatting (And Why I Automated It)
How-To

The Hidden Complexity of Citation Formatting (And Why I Automated It)

Dev.to Beginners • 2h ago

The Widmark Formula: How BAC Is Actually Calculated
How-To

The Widmark Formula: How BAC Is Actually Calculated

Dev.to Tutorial • 2h ago

Three Ways to Talk to Claude Remotely When You’re Not at Your Desk
How-To

Three Ways to Talk to Claude Remotely When You’re Not at Your Desk

Medium Programming • 2h ago

The Anatomy of a Good Box Shadow (and Why Most Look Fake)
How-To

The Anatomy of a Good Box Shadow (and Why Most Look Fake)

Dev.to Tutorial • 3h ago

Discover More Articles