{
  "slug": "marathon-splits",
  "title": "Marathon Splits Calculator",
  "category": "Running",
  "category_slug": "running",
  "tier": 2,
  "summary": "Convert a marathon goal time into per-kilometer pace and checkpoint splits for race-day pacing.",
  "description": "This calculator converts a marathon goal time into per-kilometer pace and cumulative checkpoint splits based on the official IAAF marathon distance of 42.195 kilometers. It accepts a target finish time in hours and minutes, then outputs an even-pace per-kilometer target and split times at 5K, 10K, and half-marathon checkpoints. The tool is designed for race-day pacing strategy and assumes an even-effort distribution across the full marathon distance.",
  "page_url": "https://fitmetriclab.com/en/tools/running/marathon-splits/",
  "api_url": "https://fitmetriclab.com/api/tools/marathon-splits.json",
  "formula": {
    "id": "marathon_splits",
    "expression": "T_{min} = h \\times 60 + m, \\quad p_{sec/km} = \\frac{T_{min} \\times 60}{42.195}, \\quad S_d = p \\times d",
    "variables": [
      {
        "symbol": "T_h",
        "description": "Target hours"
      },
      {
        "symbol": "T_m",
        "description": "Target minutes"
      }
    ]
  },
  "inputs": [
    {
      "id": "target_hours",
      "label": "Target Time",
      "type": "number",
      "unit": "hr",
      "default": 4,
      "min": 1,
      "max": 10,
      "step": 0.1
    },
    {
      "id": "target_minutes",
      "label": "Target Time",
      "type": "number",
      "unit": "min",
      "default": 90,
      "min": 1,
      "max": 600,
      "step": 0.5
    }
  ],
  "worked_example": {
    "inputs": {
      "target_hours": 4,
      "target_minutes": 90
    },
    "expected_output": "7:49 min/km"
  },
  "result_summary_template": "For a marathon goal of {target_hours} hours and {target_minutes} minutes total time, even-pace arithmetic yields {result}.",
  "methodology": "Total time = (target_hours × 60 + target_minutes) converted to seconds, then divided by 42.195 km (IAAF official marathon distance). Per-km pace = total_seconds ÷ 42.195. Splits computed as pace × checkpoint distance. Method derived from IAAF distance standards.",
  "sources": [
    {
      "label": "IAAF Competition Rules 2018-2019. Chapter 1: Definitions. International Association of Athletics Federations. 2017.",
      "url": "https://www.worldathletics.org/about-iaaf/documents/book-of-rules"
    },
    {
      "label": "Foster C, et al. Pacing strategy and athletic performance. Sports Med. 1994;17(2):77-85. PMID: 8171222.",
      "url": "https://pubmed.ncbi.nlm.nih.gov/8171222/"
    },
    {
      "label": "Abbiss CR, Laursen PB. Describing and understanding pacing strategies during athletic competition. Sports Med. 2008;38(3):239-52. PMID: 18278984.",
      "url": "https://pubmed.ncbi.nlm.nih.gov/18278984/"
    }
  ],
  "faqs": [
    {
      "question": "Why does the calculator use 42.195 kilometers?",
      "answer": "42.195 kilometers is the official IAAF marathon distance, standardized internationally since 1921. The calculator divides total goal time by this distance to produce per-kilometer pace and checkpoint splits."
    },
    {
      "question": "What is an even-pace split strategy?",
      "answer": "An even-pace strategy maintains the same speed per kilometer throughout the race. It is the simplest pacing model and serves as a baseline reference; many experienced marathoners adjust splits based on course profile, weather, and individual fatigue patterns."
    },
    {
      "question": "How do I account for hills or wind on race day?",
      "answer": "This calculator generates arithmetic even-pace splits and does not adjust for terrain, elevation gain, or environmental conditions. Runners often apply a perceived-effort framework on variable courses, slowing slightly uphill and banking time on descents while keeping average pace near the calculated target."
    },
    {
      "question": "Should I aim for negative splits instead?",
      "answer": "Negative-split strategies—running the second half faster—can conserve glycogen early and reduce the risk of late-race slowdown. This tool provides even-pace splits as a reference; runners may choose to start slightly slower than the calculated pace and accelerate after the halfway mark."
    },
    {
      "question": "How accurate are these splits for first-time marathoners?",
      "answer": "The arithmetic is precise, but individual pacing execution varies with training background, race experience, and metabolic conditioning. First-time marathoners often benefit from conservative early splits to manage energy reserves over the full 42.195 km distance."
    }
  ],
  "related_tools": [
    {
      "slug": "running-splits",
      "title": "Running Splits Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/running-splits.json",
      "page_url": "https://fitmetriclab.com/en/tools/running/running-splits/"
    },
    {
      "slug": "age-graded-performance",
      "title": "Age-Graded Running Performance Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/age-graded-performance.json",
      "page_url": "https://fitmetriclab.com/en/tools/running/age-graded-performance/"
    },
    {
      "slug": "elevation-pace",
      "title": "Elevation-Adjusted Pace Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/elevation-pace.json",
      "page_url": "https://fitmetriclab.com/en/tools/running/elevation-pace/"
    }
  ],
  "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."
}