{
  "slug": "running-pace",
  "title": "Running Pace Calculator",
  "category": "Running",
  "category_slug": "running",
  "tier": 1,
  "summary": "Calculate average running pace, speed, and split times from distance and duration.",
  "description": "This calculator computes average running pace by dividing elapsed time by distance covered, expressing the result as minutes and seconds per kilometer or per mile. It accepts distance in kilometers and time in minutes, then outputs pace in min/km, pace in min/mi, and speed in km/h. The calculation applies the standard definition of pace as time per unit distance, most accurate for steady-effort runs on measured courses.",
  "page_url": "https://fitmetriclab.com/en/tools/running/running-pace/",
  "api_url": "https://fitmetriclab.com/api/tools/running-pace.json",
  "formula": {
    "id": "running_pace",
    "expression": "p = \\frac{t}{d}",
    "variables": [
      {
        "symbol": "d",
        "description": "Distance in km"
      },
      {
        "symbol": "t",
        "description": "Time in minutes"
      }
    ]
  },
  "inputs": [
    {
      "id": "distance_km",
      "label": "Distance",
      "type": "number",
      "unit": "km",
      "default": 5,
      "min": 0.1,
      "max": 300,
      "step": 0.1
    },
    {
      "id": "time_minutes",
      "label": "Time",
      "type": "number",
      "unit": "min",
      "default": 25,
      "min": 1,
      "max": 1000,
      "step": 0.5
    }
  ],
  "worked_example": {
    "inputs": {
      "distance_km": 5,
      "time_minutes": 25
    },
    "expected_output": "5:00 min/km"
  },
  "result_summary_template": "Running {distance_km} km in {time_minutes} minutes produces an average pace of {result}.",
  "methodology": "Divides elapsed time in seconds by distance in kilometers to yield pace in sec/km, then formats as min:sec per km. Converts to per-mile pace by multiplying by 1.60934 km/mi. Speed in km/h is calculated as 3600 / (sec/km). Based on the standard definition of pace as time per unit distance.",
  "sources": [
    {
      "label": "World Athletics. Competition & Technical Rules. 2023.",
      "url": "https://www.worldathletics.org/about-iaaf/documents/rules-regulations"
    },
    {
      "label": "USA Track & Field. Course Measurement & Certification.",
      "url": "https://www.usatf.org/events/courses/search"
    },
    {
      "label": "ACSM. Guidelines for Exercise Testing and Prescription, 11th ed. 2021.",
      "url": "https://www.acsm.org/read-research/books/acsms-guidelines-for-exercise-testing-and-prescription"
    }
  ],
  "faqs": [
    {
      "question": "How is pace different from speed?",
      "answer": "Pace expresses time per unit distance (e.g., 5:00 min/km), while speed expresses distance per unit time (e.g., 12 km/h). They are mathematical reciprocals; runners typically use pace for planning intervals and races, while speed is common in physics and some international contexts."
    },
    {
      "question": "Why does the per-mile pace differ from per-kilometer pace?",
      "answer": "One mile equals approximately 1.60934 kilometers, so covering a mile takes proportionally longer than covering one kilometer at the same speed. The calculator multiplies the sec/km value by 1.60934 to convert to sec/mi, then formats both as min:sec."
    },
    {
      "question": "Can this calculator account for hills or wind?",
      "answer": "No. The tool divides total time by total distance, yielding an average pace. It cannot separate elevation gain, wind resistance, or any external force from the raw time/distance ratio. Comparing paces across different courses requires contextual interpretation."
    },
    {
      "question": "How precise are GPS watch distances?",
      "answer": "Consumer GPS units typically achieve 1–3% accuracy under open sky but can drift 5–10% in urban canyons, dense forest, or with frequent direction changes. Calibrated wheel measurements or certified race courses provide better distance reference for pace validation."
    },
    {
      "question": "What if I run at variable pace during a workout?",
      "answer": "The calculator reports the average pace over the entire distance. If pace varied—due to intervals, fatigue, or terrain—the single output masks that variation. Lap splits or segment analysis requires separate per-interval calculations."
    }
  ],
  "related_tools": [
    {
      "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/"
    },
    {
      "slug": "negative-split",
      "title": "Negative Split Pace Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/negative-split.json",
      "page_url": "https://fitmetriclab.com/en/tools/running/negative-split/"
    }
  ],
  "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."
}