{
  "slug": "weight-converter-kg-lbs",
  "title": "Weight Converter (kg to lbs)",
  "category": "Conversions",
  "category_slug": "conversions",
  "tier": 1,
  "summary": "Convert weight between kilograms and pounds using the internationally defined conversion factor.",
  "description": "This calculator converts weight between kilograms and pounds using the internationally defined conversion factor of 1 kg = 2.20462262185 lb, established under the 1959 international yard and pound agreement. It accepts a weight value in either kilograms or pounds and returns the equivalent in the opposite unit, along with supplementary conversions to stone and grams. The conversion applies the exact avoirdupois pound definition maintained by NIST and the International Bureau of Weights and Measures.",
  "page_url": "https://fitmetriclab.com/en/tools/conversions/weight-converter-kg-lbs/",
  "api_url": "https://fitmetriclab.com/api/tools/weight-converter-kg-lbs.json",
  "formula": {
    "id": "weight_converter",
    "expression": "\\text{lb} = \\text{kg} \\times 2.20462",
    "variables": [
      {
        "symbol": "w",
        "description": "Weight in kg"
      }
    ]
  },
  "inputs": [
    {
      "id": "kg",
      "label": "Weight",
      "type": "number",
      "unit": "kg",
      "default": 80,
      "min": 0.1,
      "max": 500,
      "step": 0.1
    }
  ],
  "worked_example": {
    "inputs": {
      "kg": 80
    },
    "expected_output": "176.37 lb"
  },
  "result_summary_template": "With a weight of {kg} kg, the tool converts to pounds using the standard conversion factor 2.20462, yielding {result}.",
  "methodology": "The tool applies the internationally defined conversion constant 1 kg = 2.20462262185 lb, adopted under the 1959 international yard and pound agreement. This exact relationship derives from the avoirdupois pound definition of 0.45359237 kg, maintained by the U.S. National Institute of Standards and Technology (NIST) and the International Bureau of Weights and Measures (BIPM).",
  "sources": [
    {
      "label": "National Institute of Standards and Technology. Weights and Measures Division. Appendix C: General Tables of Units of Measurement. NIST Handbook 44, 2023.",
      "url": "https://www.nist.gov/pml/weights-and-measures"
    },
    {
      "label": "International Bureau of Weights and Measures (BIPM). The International System of Units (SI), 9th edition. 2019.",
      "url": "https://www.bipm.org/en/publications/si-brochure"
    },
    {
      "label": "United Kingdom Weights and Measures Act 1985. Schedule 1: Definitions of Units. UK Legislation, 1985.",
      "url": "https://www.legislation.gov.uk/ukpga/1985/72/schedule/1"
    }
  ],
  "faqs": [
    {
      "question": "Why does the tool use 2.20462 instead of 2.2?",
      "answer": "The value 2.20462262185 is the precise conversion factor derived from the international avoirdupois pound definition of exactly 0.45359237 kg. Rounding to 2.2 introduces cumulative error in larger weights or repeated conversions; 2.20462 balances precision with readability for typical fitness and training applications."
    },
    {
      "question": "How is stone calculated in the secondary details?",
      "answer": "Stone is computed by dividing the pound value by 14, following the UK and Irish convention where 1 stone = 14 pounds. This unit remains common for bodyweight reporting in those regions and appears in some strength sports contexts. The tool rounds to two decimal places for practical display."
    },
    {
      "question": "Does the conversion factor change at different weight ranges?",
      "answer": "No. The conversion is a fixed linear relationship defined by international standards, independent of magnitude. Whether converting 0.5 kg or 500 kg, the same constant applies because it derives from the formal definition of the pound, not empirical measurement or context-dependent adjustments."
    },
    {
      "question": "Can this tool convert troy ounces or other weight systems?",
      "answer": "This calculator handles only avoirdupois pounds, kilograms, stone, and grams. Troy ounces, used for precious metals, follow a different definition (1 troy ounce = 31.1035 grams versus 1 avoirdupois ounce = 28.3495 grams). The tool does not include apothecary, metric ton, or other specialized systems."
    },
    {
      "question": "Why does the code mention a unit-toggle pill?",
      "answer": "The frontend interface allows toggling the input field between kg and lbs display modes for convenience. Internally, the math engine always receives the value in kilograms as the canonical unit, then applies the conversion factor to produce outputs. This design separates display flexibility from calculation consistency."
    }
  ],
  "related_tools": [
    {
      "slug": "band-resistance",
      "title": "Resistance Band Weight Equivalent Converter",
      "api_url": "https://fitmetriclab.com/api/tools/band-resistance.json",
      "page_url": "https://fitmetriclab.com/en/tools/conversions/band-resistance/"
    },
    {
      "slug": "distance-converter",
      "title": "Distance Converter (km to miles)",
      "api_url": "https://fitmetriclab.com/api/tools/distance-converter.json",
      "page_url": "https://fitmetriclab.com/en/tools/conversions/distance-converter/"
    },
    {
      "slug": "height-converter",
      "title": "Height Converter (cm to feet/inches)",
      "api_url": "https://fitmetriclab.com/api/tools/height-converter.json",
      "page_url": "https://fitmetriclab.com/en/tools/conversions/height-converter/"
    }
  ],
  "last_updated": "2026-04-22",
  "price": {
    "value": 0,
    "currency": "USD"
  },
  "runs_in_browser": true,
  "disclaimer": "Educational estimate produced from a published formula. Not medical, nutritional, or training advice. Calculations are deterministic — apply the formula to the inputs to reproduce the result."
}