{
  "slug": "pace-converter",
  "title": "Pace Converter (min/mile to min/km)",
  "category": "Running",
  "category_slug": "running",
  "tier": 1,
  "summary": "Convert running pace between minutes per mile and minutes per kilometer instantly.",
  "description": "This calculator converts running pace between minutes per mile and minutes per kilometer using the internationally defined conversion factor of 1 mile = 1.609344 kilometers. It accepts pace in minutes per kilometer as input and outputs the equivalent pace in minutes per mile, along with speed in kilometers per hour. The conversion applies the exact ratio established by the international inch definition, ensuring consistent pace translation for runners training across metric and imperial distance formats.",
  "page_url": "https://fitmetriclab.com/en/tools/running/pace-converter/",
  "api_url": "https://fitmetriclab.com/api/tools/pace-converter.json",
  "formula": {
    "id": "pace_converter",
    "expression": "p_{mi} = p_{km} \\times 1.609344",
    "variables": [
      {
        "symbol": "p_{km}",
        "description": "Pace in min/km"
      }
    ]
  },
  "inputs": [
    {
      "id": "min_per_km",
      "label": "Pace (min/km)",
      "type": "number",
      "unit": "min/km",
      "default": 5,
      "min": 2,
      "max": 15,
      "step": 0.1
    }
  ],
  "worked_example": {
    "inputs": {
      "min_per_km": 5
    },
    "expected_output": "8:03 min/mi"
  },
  "result_summary_template": "A running pace of {min_per_km} min/km converts to {result}.",
  "methodology": "Uses the internationally defined conversion 1 mile = 1.609344 km. Multiplies pace in min/km by 1.609344 to obtain pace in min/mile. Conversion factor established by the international inch definition (1 inch = 2.54 cm exactly) and the U.S. survey mile (5,280 feet).",
  "sources": [
    {
      "label": "National Institute of Standards and Technology. NIST Handbook 44, Appendix C: General Tables of Units of Measurement. 2023.",
      "url": "https://www.nist.gov/pml/owm/metric-si/unit-conversion"
    },
    {
      "label": "International Bureau of Weights and Measures (BIPM). The International System of Units (SI), 9th edition. 2019.",
      "url": "https://www.bipm.org/en/publications/si-brochure"
    },
    {
      "label": "U.S. Code of Federal Regulations, Title 15, Chapter I, Subchapter C, Part 44 (Customary Units of Length). GPO. 2020.",
      "url": "https://www.govinfo.gov/content/pkg/CFR-2020-title15-vol1/xml/CFR-2020-title15-vol1-part44.xml"
    }
  ],
  "faqs": [
    {
      "question": "Why does the calculator use 1.609344 instead of 1.6?",
      "answer": "The value 1.609344 km per mile is the exact conversion factor defined by international standards. Using the full precision ensures accurate results, especially when converting elite race paces or calculating cumulative times over longer distances."
    },
    {
      "question": "Can this tool convert mile pace back to kilometer pace?",
      "answer": "The tool as implemented takes min/km as input and returns min/mi. To reverse the conversion, divide the mile pace by 1.609344. Many implementations allow bidirectional input; check the interface for the available input field."
    },
    {
      "question": "Does pace conversion differ by runner fitness level?",
      "answer": "No. Pace conversion is a pure mathematical relationship between distance units. The same factor applies whether converting a 3:00 min/km elite pace or an 8:00 min/km easy jog. Fitness and effort affect the pace itself but not the arithmetic relationship between miles and kilometers."
    },
    {
      "question": "Why do GPS watches sometimes show slightly different pace conversions?",
      "answer": "Rounding and display precision vary by device. Some watches round to the nearest 5 or 10 seconds, while others display to the nearest second. The underlying conversion factor remains 1.609344, but interface choices affect what the screen shows. Additionally, GPS sampling frequency and smoothing algorithms can introduce minor discrepancies in real-time pace readings."
    },
    {
      "question": "How does pace in min/km relate to speed in km/h?",
      "answer": "Speed in km/h is the reciprocal of pace scaled to 60 minutes: km/h = 60 ÷ min/km. A pace of 5:00 min/km equals 12 km/h. Both describe the same rate of movement, one as time per distance and the other as distance per time."
    }
  ],
  "related_tools": [
    {
      "slug": "treadmill-pace",
      "title": "Treadmill Pace Converter",
      "api_url": "https://fitmetriclab.com/api/tools/treadmill-pace.json",
      "page_url": "https://fitmetriclab.com/en/tools/running/treadmill-pace/"
    },
    {
      "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": "marathon-predictor",
      "title": "Marathon Time Predictor",
      "api_url": "https://fitmetriclab.com/api/tools/marathon-predictor.json",
      "page_url": "https://fitmetriclab.com/en/tools/running/marathon-predictor/"
    }
  ],
  "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."
}