{
  "slug": "age-graded-performance",
  "title": "Age-Graded Running Performance Calculator",
  "category": "Running",
  "category_slug": "running",
  "tier": 2,
  "summary": "Express any race result as a percentage of a reference standard using the WMA ratio formula.",
  "description": "This calculator computes an age-graded running performance percentage by dividing a World Masters Athletics (WMA) age-graded standard time by an actual race finish time and multiplying by 100. It requires two inputs—an actual race time and the corresponding age-graded world record or standard time for the runner's age and distance—and returns a percentage score along with a performance classification (World-Class, National Class, Regional Class, Local Class, or Recreational). The WMA age-graded performance formula allows runners of different ages to compare results on an equitable basis by normalizing for the physiological effects of aging.",
  "page_url": "https://fitmetriclab.com/en/tools/running/age-graded-performance/",
  "api_url": "https://fitmetriclab.com/api/tools/age-graded-performance.json",
  "formula": {
    "id": "age_graded_performance",
    "expression": "\\text{Performance \\%} = \\frac{T_{reference}}{T_{actual}} \\times 100 \\quad \\text{(user supplies reference time)}",
    "variables": [
      {
        "symbol": "T_{actual}",
        "description": "Actual time in minutes"
      },
      {
        "symbol": "T_{wr}",
        "description": "World record time in minutes"
      }
    ]
  },
  "inputs": [
    {
      "id": "actual_time_min",
      "label": "Actual Time",
      "type": "number",
      "unit": "min",
      "default": 30,
      "min": 0.5,
      "max": 500,
      "step": 0.1
    },
    {
      "id": "world_record_min",
      "label": "World Record",
      "type": "number",
      "unit": "min",
      "default": 12,
      "min": 0.5,
      "max": 500,
      "step": 0.1
    }
  ],
  "worked_example": {
    "inputs": {
      "actual_time_min": 30,
      "world_record_min": 12
    },
    "expected_output": "40.0%"
  },
  "result_summary_template": "With an actual race time of {actual_time_min} minutes and a reference standard of {world_record_min} minutes, the performance percentage is {result}.",
  "methodology": "Divides a user-supplied reference time (such as a WMA age-graded standard) by the actual race time and multiplies by 100 to yield a performance percentage. The ratio formula and classification thresholds are those used by World Masters Athletics (WMA).",
  "sources": [
    {
      "label": "World Masters Athletics. Age-Grading Calculator and Tables. World Masters Athletics, 2023.",
      "url": "https://www.mastersathletics.net/"
    },
    {
      "label": "Stones M, Kozma A. Adult age trends in athletic performances. Experimental Aging Research. 1984;10(1):5–9.",
      "url": "https://pubmed.ncbi.nlm.nih.gov/6734680/"
    },
    {
      "label": "Baker AB, Tang YQ, Turner MJ. Percentage decline in masters superathlete track and field performance with aging. Experimental Aging Research. 2003;29(1):47–65.",
      "url": "https://pubmed.ncbi.nlm.nih.gov/12735081/"
    }
  ],
  "faqs": [
    {
      "question": "What is the World Masters Athletics (WMA) age-grading system?",
      "answer": "WMA age-grading adjusts race times to account for age and sex, allowing comparisons across different demographics. Official WMA tables provide age-sex-event-specific reference times derived from world-record progressions. This calculator applies the same ratio formula (reference time divided by actual time × 100) but requires the user to supply the appropriate WMA standard manually."
    },
    {
      "question": "Where do I find the correct WMA reference time for my age, sex, and event?",
      "answer": "Official WMA age-grading tables are published at mastersathletics.net and runscore.com. Select your age category, sex, and event to retrieve the corresponding standard time in minutes. Enter that value as the 'World Record' (reference) input in this calculator."
    },
    {
      "question": "What do the performance categories (World-Class, National Class, etc.) mean?",
      "answer": "These thresholds are conventions used in masters athletics: ≥90% is considered World-Class, 80–90% National Class, 70–80% Regional Class, 60–70% Local Class, and below 60% Recreational. The categories apply whether the reference time is an age-graded standard or an absolute world record, though interpretation differs accordingly."
    },
    {
      "question": "Can I use an absolute world record instead of a WMA age-graded standard?",
      "answer": "Yes. The calculator performs the same ratio calculation regardless of the reference time supplied. If you enter an absolute world record (no age or sex adjustment), the output percentage represents your performance relative to that unadjusted benchmark, not a true age-graded result."
    },
    {
      "question": "Does the calculator adjust for course difficulty or weather conditions?",
      "answer": "No. The tool computes a mathematical ratio of two time values and does not incorporate elevation, wind, temperature, or course certification. WMA age-grading standards themselves are based on flat, certified courses under neutral conditions."
    }
  ],
  "related_tools": [
    {
      "slug": "running-cadence",
      "title": "Running Cadence Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/running-cadence.json",
      "page_url": "https://fitmetriclab.com/en/tools/running/running-cadence/"
    },
    {
      "slug": "running-pace",
      "title": "Running Pace Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/running-pace.json",
      "page_url": "https://fitmetriclab.com/en/tools/running/running-pace/"
    },
    {
      "slug": "running-power",
      "title": "Running Power Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/running-power.json",
      "page_url": "https://fitmetriclab.com/en/tools/running/running-power/"
    }
  ],
  "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."
}