Income Tax Rates Canada Calculator

Pounds to Stone & Pounds Converter

Result

How to Convert Pounds (lbs) to Stone (st) and Pounds (lbs)

While the metric system is widely used globally, many people in the United Kingdom and Ireland still measure body weight using stones and pounds. Understanding the conversion between these units is essential for health tracking, fitness goals, and general weight measurement.

The Conversion Formula

The relationship between pounds and stones is fixed at 14 pounds per stone. To convert a total weight in pounds into stones and pounds, you use the following logic:

  1. Calculate Stone: Divide the total pounds by 14. The whole number (integer) is your "Stone" value.
  2. Calculate Remaining Pounds: Take the remainder of that division. This is your "Pounds" value.

Formula:
Stone = Total Lbs รท 14 (floor)
Remaining Lbs = Total Lbs % 14

Practical Examples

  • 150 lbs: 150 divided by 14 equals 10 with a remainder of 10. Result: 10 st 10 lbs.
  • 200 lbs: 200 divided by 14 equals 14 with a remainder of 4. Result: 14 st 4 lbs.
  • 126 lbs: 126 divided by 14 equals exactly 9. Result: 9 st 0 lbs.

Quick Conversion Table

Pounds (lbs) Stone & Pounds (st/lbs)
140 lbs10 st 0 lbs
165 lbs11 st 11 lbs
182 lbs13 st 0 lbs
210 lbs15 st 0 lbs

Why Use This Calculator?

Manual division can lead to errors, especially when dealing with decimal points. Our converter handles the precise math instantly, providing you with a clean "Stone and Pounds" output that is commonly used on medical scales and fitness apps throughout the UK. This tool is particularly useful for those following weight loss programs that report progress in weekly stone milestones.

function calculateStonePounds() { var totalLbs = document.getElementById('weightLbs').value; var resultArea = document.getElementById('resultArea'); var finalWeight = document.getElementById('finalWeight'); var decimalResult = document.getElementById('decimalResult'); if (totalLbs === "" || isNaN(totalLbs) || totalLbs < 0) { alert("Please enter a valid weight in pounds."); resultArea.style.display = "none"; return; } var pounds = parseFloat(totalLbs); var stoneCount = Math.floor(pounds / 14); var remainingLbs = (pounds % 14).toFixed(1); // Clean up .0 from the pounds if it exists if (remainingLbs.endsWith('.0')) { remainingLbs = Math.floor(remainingLbs); } var stoneLabel = stoneCount === 1 ? "st" : "st"; var lbsLabel = remainingLbs === "1" ? "lb" : "lbs"; finalWeight.innerHTML = stoneCount + " " + stoneLabel + " " + remainingLbs + " " + lbsLabel; var stoneDecimal = (pounds / 14).toFixed(2); decimalResult.innerHTML = "Equivalent to " + stoneDecimal + " stones total (decimal)"; resultArea.style.display = "block"; }

Leave a Comment