{
  "slug": "pace-converter-multi",
  "title": "Pace Converter (Multiple Units)",
  "category": "Conversions",
  "category_slug": "conversions",
  "tier": 1,
  "summary": "Convert running pace between min/km, min/mi, mph, and km/h using standard distance ratios.",
  "description": "This calculator converts running pace between minutes per kilometer, minutes per mile, kilometers per hour, and miles per hour using the international standard ratio of 1 mile = 1.609344 km. It accepts pace input in either min/km or min/mi and outputs the equivalent values in all four common pace and speed units. The conversions use fixed arithmetic relationships and are accurate for any pace value entered, though they represent ideal distance ratios rather than terrain- or fatigue-adjusted performance.",
  "page_url": "https://fitmetriclab.com/en/tools/conversions/pace-converter-multi/",
  "api_url": "https://fitmetriclab.com/api/tools/pace-converter-multi.json",
  "formula": {
    "id": "pace_converter_multi",
    "expression": "p_{mi} = p_{km} \\times 1.609344",
    "variables": [
      {
        "symbol": "p_{km}",
        "description": "Pace in min/km"
      },
      {
        "symbol": "p_{mi}",
        "description": "Pace in min/mi"
      }
    ]
  },
  "inputs": [
    {
      "id": "min_per_km",
      "label": "Pace (min/km)",
      "type": "number",
      "unit": "min/km",
      "default": 5,
      "min": 2,
      "max": 15,
      "step": 0.1
    },
    {
      "id": "min_per_mile",
      "label": "Pace (min/mi)",
      "type": "number",
      "unit": "min/mi",
      "default": 8,
      "min": 3,
      "max": 25,
      "step": 0.1
    }
  ],
  "worked_example": {
    "inputs": {
      "min_per_km": 5,
      "min_per_mile": 8
    },
    "expected_output": "8:03 min/mi"
  },
  "result_summary_template": "A pace of {min_per_km} min/km or {min_per_mile} min/mi converts to the equivalent metric and imperial pace and speed values: {result}.",
  "methodology": "Converts pace using the ratio 1 mile = 1.609344 km (international standard). Derives speed by dividing 60 minutes by pace. All conversions use fixed arithmetic relationships without empirical calibration.",
  "sources": [
    {
      "label": "National Institute of Standards and Technology. Guide for the Use of the International System of Units (SI). NIST Special Publication 811. 2008.",
      "url": "https://www.nist.gov/pml/special-publication-811"
    },
    {
      "label": "International Bureau of Weights and Measures. The International System of Units (SI). 9th edition. 2019.",
      "url": "https://www.bipm.org/en/publications/si-brochure"
    },
    {
      "label": "Jones AM, Doust JH. A 1% treadmill grade most accurately reflects the energetic cost of outdoor running. Journal of Sports Sciences. 1996;14(4):321-327.",
      "url": "https://pubmed.ncbi.nlm.nih.gov/8887211/"
    }
  ],
  "faqs": [
    {
      "question": "Why does 5:00 min/km not equal exactly 8:00 min/mi?",
      "answer": "Because 1 kilometre equals 0.621371 miles, not 0.6 miles. A 5:00 min/km pace converts to approximately 8:03 min/mi. The common mental shortcut of adding about 60% to min/km provides a rough estimate but introduces 1–2% error."
    },
    {
      "question": "How do GPS watch pace readings relate to these conversions?",
      "answer": "GPS devices measure pace by sampling position every 1–5 seconds and computing rolling averages. The pace reported is then subject to the same unit conversions this tool performs. Instantaneous pace readings can fluctuate due to signal acquisition lag, especially under tree cover or between tall buildings."
    },
    {
      "question": "Can this tool convert pace for cycling or swimming?",
      "answer": "The arithmetic conversions apply to any activity measured in time per distance unit. However, cycling pace is typically expressed in speed (mph or km/h) rather than min/mi, and swimming uses time per 100 metres or yards. The tool computes all four metrics, so the speed outputs may be more relevant for cycling."
    },
    {
      "question": "Why does a faster pace produce a higher speed number?",
      "answer": "Pace and speed are mathematical reciprocals. A pace of 4:00 min/km means covering 1 km every 4 minutes, which equals 15 km in 60 minutes (15 km/h). A slower pace of 8:00 min/km yields 7.5 km/h. Lower pace values correspond to higher speeds."
    },
    {
      "question": "How precise are the conversion constants used?",
      "answer": "The tool uses the international standard 1 mile = 1.609344 kilometres, defined in the International System of Units. This ratio is exact by definition and is the same constant used by GPS manufacturers, race timing systems, and national measurement authorities worldwide."
    }
  ],
  "related_tools": [
    {
      "slug": "energy-converter",
      "title": "Energy Converter (kcal to kJ)",
      "api_url": "https://fitmetriclab.com/api/tools/energy-converter.json",
      "page_url": "https://fitmetriclab.com/en/tools/conversions/energy-converter/"
    },
    {
      "slug": "speed-converter",
      "title": "Speed Converter (MPH to km/h to m/s)",
      "api_url": "https://fitmetriclab.com/api/tools/speed-converter.json",
      "page_url": "https://fitmetriclab.com/en/tools/conversions/speed-converter/"
    },
    {
      "slug": "volume-converter",
      "title": "Hydration Volume Converter (L to fl oz)",
      "api_url": "https://fitmetriclab.com/api/tools/volume-converter.json",
      "page_url": "https://fitmetriclab.com/en/tools/conversions/volume-converter/"
    }
  ],
  "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."
}