{
  "slug": "sinclair-coefficient",
  "title": "Sinclair Coefficient Calculator",
  "category": "Strength Training",
  "category_slug": "strength-training",
  "tier": 2,
  "summary": "Compare Olympic weightlifting totals across bodyweight categories using the IWF Sinclair formula.",
  "description": "This calculator computes a Sinclair coefficient total, which normalizes an Olympic weightlifting total (snatch plus clean & jerk) across bodyweight categories using the International Weightlifting Federation's official Sinclair formula. It requires the lifter's total lifted, bodyweight, and sex, then applies the 2021–2024 quadrennium constants to produce a coefficient-adjusted total that allows direct comparison of lifters at different bodyweights. The formula uses a logarithmic scaling function below a sex-specific bodyweight cutoff (193.61 kg for males, 153.76 kg for females) and returns the raw total for lifters at or above that threshold.",
  "page_url": "https://fitmetriclab.com/en/tools/strength-training/sinclair-coefficient/",
  "api_url": "https://fitmetriclab.com/api/tools/sinclair-coefficient.json",
  "formula": {
    "id": "sinclair_coefficient",
    "expression": "S = T \\times 10^{A \\,(\\log_{10}(BW_{kg} / b))^{2}} \\text{ if } BW_{kg} < b, \\quad \\text{else } S = T",
    "variables": [
      {
        "symbol": "T",
        "description": "Total lifted in kg"
      },
      {
        "symbol": "B",
        "description": "Body weight in kg"
      },
      {
        "symbol": "s",
        "description": "Sex (male/female)"
      }
    ]
  },
  "inputs": [
    {
      "id": "total_kg",
      "label": "Total Lifted",
      "type": "number",
      "unit": "kg",
      "default": 500,
      "min": 50,
      "max": 1500,
      "step": 1
    },
    {
      "id": "bodyweight_kg",
      "label": "Body Weight",
      "type": "number",
      "unit": "kg",
      "default": 80,
      "min": 30,
      "max": 300,
      "step": 0.1
    },
    {
      "id": "sex",
      "label": "Sex",
      "type": "select",
      "unit": null,
      "default": 1,
      "options": [
        {
          "value": 1,
          "label": "Male"
        },
        {
          "value": 0,
          "label": "Female"
        }
      ]
    }
  ],
  "worked_example": {
    "inputs": {
      "total_kg": 500,
      "bodyweight_kg": 80,
      "sex": 1
    },
    "expected_output": "638.93"
  },
  "result_summary_template": "For a {sex} athlete with a body weight of {bodyweight_kg} kg and a total lifted of {total_kg} kg, the Sinclair Coefficient formula estimates a normalized total of {result}.",
  "methodology": "Applies the IWF Sinclair formula: Sinclair_total = total_kg × 10^(A × (log₁₀(bodyweight_kg / b))²) when bodyweight < b, else total_kg when bodyweight ≥ b. Uses 2021–2024 quadrennium constants (male A=0.722762521, b=193.609535; female A=0.787004341, b=153.757335) published in IWF Technical and Competition Rules.",
  "sources": [
    {
      "label": "International Weightlifting Federation. IWF Technical and Competition Rules & Regulations. 2021–2024.",
      "url": "https://iwf.sport/rules-regulations/"
    },
    {
      "label": "Sinclair RG. Normalizing the weightlifting performance of athletes of different body masses. Canadian Journal of Applied Sport Sciences. 1985;10(3):146–150.",
      "url": "https://pubmed.ncbi.nlm.nih.gov/4053257/"
    },
    {
      "label": "Takano B. Weightlifting programming: a winning coach's guide. Catalyst Athletics. 2012.",
      "url": "https://www.catalystathletics.com/"
    }
  ],
  "faqs": [
    {
      "question": "What is the Sinclair Coefficient?",
      "answer": "The Sinclair Coefficient is a dimensionless multiplier that adjusts an Olympic weightlifting total to account for bodyweight, enabling fair comparison across weight classes. Lighter athletes receive a coefficient greater than 1.0; heavier athletes at or above the reference bodyweight receive 1.0."
    },
    {
      "question": "Why do the constants change every four years?",
      "answer": "The IWF recalculates the A and b parameters each Olympic quadrennium using updated world-record and competition data to ensure the formula reflects current performance standards. Training methods, depth of talent pools, and anti-doping enforcement all shift over time."
    },
    {
      "question": "Can I use this calculator for powerlifting or strongman totals?",
      "answer": "No. The Sinclair formula is derived from Olympic weightlifting competition results (snatch plus clean-and-jerk). Powerlifting uses separate formulas such as Wilks, IPF Points, or DOTS; strongman events lack a standardized pound-for-pound metric."
    },
    {
      "question": "What is considered a strong Sinclair total?",
      "answer": "Elite male weightlifters often produce Sinclair totals above 450; elite females above 350. National-level competitors typically range 380–440 (men) and 280–340 (women), though standards vary by country and competitive depth."
    },
    {
      "question": "Why does my total not change when I enter a very high bodyweight?",
      "answer": "The formula applies a coefficient cap: lifters at or above the reference bodyweight (193.609535 kg for men, 153.757335 kg for women in the 2021–2024 cycle) receive a coefficient of exactly 1.0, so the Sinclair total equals the raw total."
    }
  ],
  "related_tools": [
    {
      "slug": "dots-score",
      "title": "DOTS Score Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/dots-score.json",
      "page_url": "https://fitmetriclab.com/en/tools/strength-training/dots-score/"
    },
    {
      "slug": "intensity-percentage",
      "title": "Training Intensity Percentage Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/intensity-percentage.json",
      "page_url": "https://fitmetriclab.com/en/tools/strength-training/intensity-percentage/"
    },
    {
      "slug": "ipf-gl-points",
      "title": "IPF GL Points Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/ipf-gl-points.json",
      "page_url": "https://fitmetriclab.com/en/tools/strength-training/ipf-gl-points/"
    }
  ],
  "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."
}