{
  "slug": "chain-length",
  "title": "Chain Length Calculator",
  "category": "Cycling",
  "category_slug": "cycling",
  "tier": 3,
  "summary": "Calculate optimal chain length for single-speed and track bikes using chainring, cog, and chainstay measurements.",
  "description": "This calculator determines the optimal chain length for single-speed and track bicycles using the standard single-speed formula: L = 2C + (F/4 + R/4) + 1. It takes chainring teeth, rear cog teeth, and chainstay length in inches as inputs and returns the required chain length in inches plus an approximate link count. The formula includes a 1-inch allowance for tension adjustment and is specific to bikes without derailleurs where chain wrap geometry is constant.",
  "page_url": "https://fitmetriclab.com/en/tools/cycling/chain-length/",
  "api_url": "https://fitmetriclab.com/api/tools/chain-length.json",
  "formula": {
    "id": "chain_length",
    "expression": "L = 2C + \\frac{F}{4} + \\frac{R}{4} + 1",
    "variables": [
      {
        "symbol": "F",
        "description": "Front chainring teeth"
      },
      {
        "symbol": "R",
        "description": "Rear cog teeth"
      },
      {
        "symbol": "C",
        "description": "Chainstay length in inches"
      }
    ]
  },
  "inputs": [
    {
      "id": "chainring",
      "label": "Chainring",
      "type": "number",
      "unit": "T",
      "default": 50,
      "min": 20,
      "max": 70,
      "step": 1
    },
    {
      "id": "cog",
      "label": "Rear Cog",
      "type": "number",
      "unit": "T",
      "default": 16,
      "min": 8,
      "max": 40,
      "step": 1
    },
    {
      "id": "chainstay_in",
      "label": "Chainstay",
      "type": "number",
      "unit": "in",
      "default": 16.5,
      "min": 10,
      "max": 25,
      "step": 0.1
    }
  ],
  "worked_example": {
    "inputs": {
      "chainring": 50,
      "cog": 16,
      "chainstay_in": 16.5
    },
    "expected_output": "50.5 inches"
  },
  "result_summary_template": "For a chainring with {chainring} teeth, a rear cog with {cog} teeth, and a chainstay length of {chainstay_in} inches, the formula estimates a chain length of {result}.",
  "methodology": "Uses the standard single-speed chain length formula L = 2(C) + (F/4 + R/4) + 1, where C is chainstay length in inches, F is front chainring teeth, R is rear cog teeth, and 1 inch is added for tension adjustment. Link count approximates total half-links by multiplying length by 2.",
  "sources": [
    {
      "label": "Ballantine, R., & Grant, R. Richard's Bicycle Book. DK Publishing, 2012.",
      "url": "https://www.dk.com/"
    },
    {
      "label": "Sutherland, H. Sutherland's Handbook for Bicycle Mechanics (7th ed.). Sutherland Publications, 2004.",
      "url": "https://www.sheldonbrown.com/sutherland/"
    },
    {
      "label": "Zinn, L. Zinn & the Art of Road Bike Maintenance. VeloPress, 2013.",
      "url": "https://www.velopress.com/"
    }
  ],
  "faqs": [
    {
      "question": "Why does this formula add 1 inch to the chain length?",
      "answer": "The additional inch provides tolerance for chain wrap around the sprockets and ensures adequate adjustment range in the dropouts for proper chain tension. Without this buffer, the chain may be too tight at the midpoint of the dropout slots, limiting adjustment options."
    },
    {
      "question": "Can I use this calculator for a bike with derailleurs?",
      "answer": "No, this formula is designed exclusively for single-speed and fixed-gear bicycles. Derailleur-equipped bikes require a different calculation that accounts for the largest chainring-to-largest cog combination and the additional chain wrap around the derailleur's jockey wheels."
    },
    {
      "question": "How do I measure chainstay length accurately?",
      "answer": "Chainstay length is measured from the center of the bottom bracket spindle to the center of the rear axle. For this calculation, position the rear wheel approximately midway in the dropout slots before measuring, as this represents the average position for chain tensioning."
    },
    {
      "question": "Why does the link count differ from the inch measurement?",
      "answer": "Standard bicycle chain has a pitch of 0.5 inches per link (inner plus outer plate). The link count is calculated by multiplying the inch length by 2. Because chains require an integer number of links and typically an even count for proper master-link installation, rounding occurs."
    },
    {
      "question": "What if my calculated length falls between standard chain sizes?",
      "answer": "Bicycle chains are sold in standard lengths and can be shortened by removing links with a chain tool. If the calculated link count is odd but the chain requires an even number for your master link or connection method, round up to the next even number and fine-tune tension with rear-wheel position."
    }
  ],
  "related_tools": [
    {
      "slug": "spoke-length",
      "title": "Spoke Length Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/spoke-length.json",
      "page_url": "https://fitmetriclab.com/en/tools/cycling/spoke-length/"
    },
    {
      "slug": "climbing-watts",
      "title": "Climbing Watts Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/climbing-watts.json",
      "page_url": "https://fitmetriclab.com/en/tools/cycling/climbing-watts/"
    },
    {
      "slug": "cycling-power",
      "title": "Cycling Power Calculator (Watts from Speed)",
      "api_url": "https://fitmetriclab.com/api/tools/cycling-power.json",
      "page_url": "https://fitmetriclab.com/en/tools/cycling/cycling-power/"
    }
  ],
  "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."
}