{
  "slug": "negative-split",
  "title": "Negative Split Pace Calculator",
  "category": "Running",
  "category_slug": "running",
  "tier": 3,
  "summary": "Split your race time into a slower first half and faster second half with adjustable pace gaps.",
  "description": "The Negative Split Pace Calculator computes first-half and second-half per-kilometre paces for a race by applying a symmetrical percentage adjustment around the average pace. It requires total race duration, distance, and a progress gap percentage—expressed as the total spread between halves—and outputs two target paces: a slower initial pace and a faster closing pace. This symmetrical-gap method ensures that running the first half conservatively and the second half aggressively still averages to the goal finish time.",
  "page_url": "https://fitmetriclab.com/en/tools/running/negative-split/",
  "api_url": "https://fitmetriclab.com/api/tools/negative-split.json",
  "formula": {
    "id": "negative_split",
    "expression": "p_{avg} = \\frac{T_{sec}}{d_{km}}, \\quad p_1 = p_{avg}\\,(1 + g/200), \\quad p_2 = p_{avg}\\,(1 - g/200)",
    "variables": [
      {
        "symbol": "T",
        "description": "Total duration in minutes"
      },
      {
        "symbol": "d",
        "description": "Distance in km"
      },
      {
        "symbol": "g",
        "description": "Progress gap (decimal)"
      }
    ]
  },
  "inputs": [
    {
      "id": "total_minutes",
      "label": "Total Duration",
      "type": "number",
      "unit": "min",
      "default": 30,
      "min": 1,
      "max": 600,
      "step": 1
    },
    {
      "id": "distance_km",
      "label": "Distance",
      "type": "number",
      "unit": "km",
      "default": 5,
      "min": 0.1,
      "max": 200,
      "step": 0.1
    },
    {
      "id": "gap_percent",
      "label": "Progress Gap",
      "type": "number",
      "unit": "%",
      "default": 2,
      "min": 0,
      "max": 100,
      "step": 0.1
    }
  ],
  "worked_example": {
    "inputs": {
      "total_minutes": 30,
      "distance_km": 5,
      "gap_percent": 2
    },
    "expected_output": "6:04 min/km → 5:56 min/km"
  },
  "result_summary_template": "With a total duration of {total_minutes} minutes and a distance of {distance_km} km, a negative split using a {gap_percent}% gap produces {result}.",
  "methodology": "Computes first- and second-half per-km paces from total time and distance by adjusting average pace with a symmetrical percentage gap: first_half_pace = avgPerKm × (1 + gap_percent/200), second_half_pace = avgPerKm × (1 − gap_percent/200). The gap_percent input represents the total spread between halves.",
  "sources": [
    {
      "label": "Abbiss, C. R., & Laursen, P. B. Describing and Understanding Pacing Strategies during Athletic Competition. Sports Medicine, 2008.",
      "url": "https://pubmed.ncbi.nlm.nih.gov/18027993/"
    },
    {
      "label": "Santos-Lozano, A., et al. How to Use Pacing Strategy to Optimize Performance in Middle- and Long-Distance Running Competitions. International Journal of Sports Physiology and Performance, 2014.",
      "url": "https://pubmed.ncbi.nlm.nih.gov/24231229/"
    },
    {
      "label": "Hanley, B. Pacing Profiles and Pack Running at the IAAF World Half Marathon Championships. Journal of Sports Sciences, 2015.",
      "url": "https://pubmed.ncbi.nlm.nih.gov/25356682/"
    }
  ],
  "faqs": [
    {
      "question": "What does the gap percentage mean in this calculator?",
      "answer": "The gap percentage represents the total spread between first-half and second-half pace. A 2% gap means the first half is 1% slower than average pace and the second half is 1% faster, creating a 2% difference between the two halves. Larger gaps produce more aggressive negative splits."
    },
    {
      "question": "Why does the formula divide gap_percent by 200 instead of 100?",
      "answer": "Division by 200 splits the total gap equally between the two halves. If the tool divided by 100, the entire gap would apply to one half only, doubling the intended pace difference. The /200 factor ensures the first half slows by half the gap and the second half speeds up by the other half."
    },
    {
      "question": "Can this calculator be used for imperial distances like miles?",
      "answer": "The current implementation calculates per-kilometre pace. For mile-based races, convert the distance to kilometres first (1 mile ≈ 1.60934 km), then interpret the output paces as min/km. A separate conversion step would be needed to express results in min/mile."
    },
    {
      "question": "What is a realistic gap percentage for most runners?",
      "answer": "Research on pacing strategies shows that elite marathoners often exhibit 1–3% negative splits, while recreational runners may find 2–5% manageable depending on distance and fitness. The tool does not prescribe a specific percentage; it calculates the arithmetic result for any input value between 0% and 100%."
    },
    {
      "question": "Does the calculator account for elevation changes or weather conditions?",
      "answer": "No. The tool performs a pure arithmetic split of average pace based on the percentage gap. It does not model terrain, temperature, wind, altitude, or other environmental factors that affect running performance. Actual race execution may require adjustments beyond these calculated paces."
    }
  ],
  "related_tools": [
    {
      "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/"
    },
    {
      "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": "training-paces-vdot",
      "title": "Training Pace Calculator (from VDOT)",
      "api_url": "https://fitmetriclab.com/api/tools/training-paces-vdot.json",
      "page_url": "https://fitmetriclab.com/en/tools/running/training-paces-vdot/"
    }
  ],
  "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."
}