{
  "slug": "muscular-potential",
  "title": "Muscular Potential Calculator",
  "category": "Body Composition",
  "category_slug": "body-composition",
  "tier": 2,
  "summary": "Estimate maximum drug-free lean body mass from height, wrist, and ankle using Casey Butt's equations.",
  "description": "This calculator applies Casey Butt's published model of maximum drug-free lean body mass, derived from the measurements of drug-free bodybuilding champions spanning several decades of contest records. The model predicts a lean-mass ceiling from height together with wrist and ankle circumference — two girths dominated by bone and connective tissue that serve as proxies for skeletal frame size — evaluated at a chosen body-fat percentage. The tool converts metric inputs to inches, evaluates the equation, and reports estimated maximum lean mass in kilograms plus the total body weight that lean mass implies at the chosen body-fat level. The output describes the ceiling observed in an exceptional historical sample, not a promise about any individual.",
  "page_url": "https://fitmetriclab.com/en/tools/body-composition/muscular-potential/",
  "api_url": "https://fitmetriclab.com/api/tools/muscular-potential.json",
  "formula": {
    "id": "muscular_potential",
    "expression": "\\text{LBM}_{lb} = H^{1.5} \\left( \\frac{\\sqrt{W}}{22.667} + \\frac{\\sqrt{A}}{17.0104} \\right) \\left( 1 + \\frac{F}{224} \\right)",
    "variables": [
      {
        "symbol": "H",
        "description": "Height in inches"
      },
      {
        "symbol": "W",
        "description": "Wrist circumference in inches"
      },
      {
        "symbol": "A",
        "description": "Ankle circumference in inches"
      },
      {
        "symbol": "F",
        "description": "Body-fat % at which the ceiling is evaluated"
      }
    ]
  },
  "inputs": [
    {
      "id": "height_cm",
      "label": "Height",
      "type": "number",
      "unit": "cm",
      "default": 180,
      "min": 150,
      "max": 220,
      "step": 0.5
    },
    {
      "id": "wrist_cm",
      "label": "Wrist Circumference",
      "type": "number",
      "unit": "cm",
      "default": 17.5,
      "min": 12,
      "max": 25,
      "step": 0.1
    },
    {
      "id": "ankle_cm",
      "label": "Ankle Circumference",
      "type": "number",
      "unit": "cm",
      "default": 22.5,
      "min": 18,
      "max": 30,
      "step": 0.1
    },
    {
      "id": "bf_pct",
      "label": "Body Fat % for Prediction",
      "type": "number",
      "unit": "%",
      "default": 10,
      "min": 5,
      "max": 20,
      "step": 0.5
    }
  ],
  "worked_example": {
    "inputs": {
      "height_cm": 180,
      "wrist_cm": 17.5,
      "ankle_cm": 22.5,
      "bf_pct": 10
    },
    "expected_output": "82.2 kg"
  },
  "result_summary_template": "For a {height_cm} cm frame with a {wrist_cm} cm wrist and {ankle_cm} cm ankle, the model estimates a drug-free lean-mass ceiling of {result} at {bf_pct}% body fat.",
  "methodology": "Casey Butt's published model of maximum drug-free lean body mass, fitted to the measurements of drug-free bodybuilding champions from historical contest records: LBM (lb) = H^1.5 × (√W ÷ 22.667 + √A ÷ 17.0104) × (1 + F ÷ 224), with H, W, A in inches and F the body-fat percentage at which the prediction is evaluated. Metric inputs are converted at 2.54 cm/in; the result is converted to kilograms at 2.2046 lb/kg. Total body weight at F% body fat = lean mass ÷ (1 − F ÷ 100). The equation describes the ceiling observed in an exceptional male sample and has no published female form.",
  "sources": [
    {
      "label": "Kouri EM, Pope HG Jr, Katz DL, Oliva P. Fat-free mass index in users and nonusers of anabolic-androgenic steroids. Clin J Sport Med. 1995;5(4):223-8.",
      "url": "https://pubmed.ncbi.nlm.nih.gov/7496846/"
    },
    {
      "label": "Schutz Y, Kyle UU, Pichard C. Fat-free mass index and fat mass index percentiles in Caucasians aged 18-98 y. Int J Obes Relat Metab Disord. 2002;26(7):953-60.",
      "url": "https://pubmed.ncbi.nlm.nih.gov/12080449/"
    }
  ],
  "faqs": [
    {
      "question": "Why does the model use wrist and ankle circumference?",
      "answer": "Because those girths, taken at the narrowest points of the joints, consist mostly of bone, tendon, and skin — training changes them very little. That makes them usable proxies for skeletal frame size, the structural variable Butt found most predictive of how much lean tissue the champions in his dataset carried. Height captures the frame's length; wrist and ankle capture its thickness at the upper and lower body respectively. The square roots in the equation mean the model treats joint girth as informative but damped — a 1 cm wrist difference shifts the estimate by only a couple of kilograms."
    },
    {
      "question": "What data is the equation built from?",
      "answer": "Butt's published analysis compiled the competition statistics of drug-free bodybuilding champions across several decades of contest records — heights, contest weights, body-fat estimates, and joint measurements — and fitted equations to the most muscular physiques observed at each frame size. It is a descriptive model of an extreme historical sample: the right tail of the drug-free muscularity distribution, not the average trainee. The dataset is entirely male and reflects contest-condition physiques, which is why the model is stated in terms of lean mass at a specified body-fat percentage."
    },
    {
      "question": "Does the output mean that lean mass is attainable for me?",
      "answer": "The model estimates the ceiling observed in drug-free champions who shared a similar skeletal frame; it cannot say whether any particular person can approach that figure. Frame size is one genetic variable among several — muscle belly lengths, fibre-type distribution, tendon insertion points, and hormonal environment all shaped who ended up in the source data, and none of them appear in the equation. The defensible reading is as an upper reference line: the closer a measured lean mass sits to the model's output, the closer that physique is to the edge of what the drug-free contest record contains."
    },
    {
      "question": "How does this relate to the FFMI ceiling of about 25?",
      "answer": "Kouri and colleagues' 1995 study reported that fat-free mass index in their drug-free lifter sample topped out around 25, and that figure became a widely quoted population-level reference. Butt's model addresses the same question but conditions on frame size: a lifter with heavy wrists and ankles gets a higher predicted ceiling than a fine-jointed lifter of the same height, where a single FFMI cut-off treats them identically. For average joint sizes the two approaches tend to agree within a few kilograms; they diverge most at unusual frame proportions, which is exactly the information the wrist and ankle terms add."
    },
    {
      "question": "Why does the predicted lean mass rise with the body-fat input?",
      "answer": "The (1 + F ÷ 224) term encodes an observation from the contest data: physiques carrying somewhat more body fat also held slightly more lean tissue, an effect commonly attributed to the physiological environment of a less depleted state. The slope is gentle — moving the input from 5% to 15% raises the predicted ceiling by about 4.5% — but it means the model's output is always tied to the stated body-fat level. The tool reports both numbers together, lean mass and the total weight it implies at that percentage, so the pair can be read as one scenario rather than as separate facts."
    }
  ],
  "related_tools": [
    {
      "slug": "ffmi-calculator",
      "title": "FFMI Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/ffmi-calculator.json",
      "page_url": "https://fitmetriclab.com/en/tools/body-composition/ffmi-calculator/"
    },
    {
      "slug": "lean-body-mass",
      "title": "Lean Body Mass Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/lean-body-mass.json",
      "page_url": "https://fitmetriclab.com/en/tools/body-composition/lean-body-mass/"
    },
    {
      "slug": "body-fat-navy",
      "title": "Body Fat Percentage (Navy Method)",
      "api_url": "https://fitmetriclab.com/api/tools/body-fat-navy.json",
      "page_url": "https://fitmetriclab.com/en/tools/body-composition/body-fat-navy/"
    }
  ],
  "last_updated": "2026-08-08",
  "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."
}