{
  "slug": "rpe-to-percentage",
  "title": "RPE to Percentage Converter",
  "category": "Strength Training",
  "category_slug": "strength-training",
  "tier": 2,
  "summary": "Convert RPE and rep count into estimated percentage of one-rep max using standard intensity tables.",
  "description": "This calculator converts a Rate of Perceived Exertion (RPE) score and rep count into an estimated percentage of one-rep max using a standard RPE-to-intensity table. It accepts an RPE value between 6 and 10 and a whole-number rep count from 1 to 12, then applies a reference table derived from empirical strength-curve averages commonly used in powerlifting—where RPE 10 at 1 rep equals 100% of 1RM, with each RPE unit below 10 reducing the percentage by approximately 2 points. The output provides a single percentage estimate that lifters can use to plan training loads when autoregulating intensity based on subjective effort rather than testing a true one-rep max.",
  "page_url": "https://fitmetriclab.com/en/tools/strength-training/rpe-to-percentage/",
  "api_url": "https://fitmetriclab.com/api/tools/rpe-to-percentage.json",
  "formula": {
    "id": "rpe_to_percentage",
    "expression": "\\%\\,1\\text{RM} = f(\\text{RPE}, r) \\quad \\text{(chart lookup)}",
    "variables": [
      {
        "symbol": "\\text{RPE}",
        "description": "Rating of perceived exertion"
      },
      {
        "symbol": "r",
        "description": "Reps performed"
      }
    ]
  },
  "inputs": [
    {
      "id": "rpe",
      "label": "RPE",
      "type": "number",
      "unit": "",
      "default": 8,
      "min": 6,
      "max": 10,
      "step": 0.5
    },
    {
      "id": "reps",
      "label": "Reps",
      "type": "number",
      "unit": "reps",
      "default": 5,
      "min": 1,
      "max": 12,
      "step": 1
    }
  ],
  "worked_example": {
    "inputs": {
      "rpe": 8,
      "reps": 5
    },
    "expected_output": "82.3%"
  },
  "result_summary_template": "For an RPE of {rpe} performed for {reps} reps, the lookup table estimates a load of {result} of one-rep max.",
  "methodology": "Applies a 12-row %1RM reference table for RPE 10 (ranging from 100% at 1 rep to 68% at 12 reps), then subtracts 2 percentage points per RPE unit below 10. The base table reflects empirical strength-curve averages commonly used in powerlifting and strength coaching.",
  "sources": [
    {
      "label": "Zourdos MC, et al. Novel Resistance Training–Specific Rating of Perceived Exertion Scale Measuring Repetitions in Reserve. J Strength Cond Res. 2016;30(1):267-275.",
      "url": "https://pubmed.ncbi.nlm.nih.gov/26049792/"
    },
    {
      "label": "Helms ER, et al. RPE and Velocity Relationships for the Back Squat, Bench Press, and Deadlift in Powerlifters. J Strength Cond Res. 2017;31(2):292-297.",
      "url": "https://pubmed.ncbi.nlm.nih.gov/27243918/"
    },
    {
      "label": "Tuchscherer M. The Reactive Training Manual. Reactive Training Systems, 2008.",
      "url": "https://www.reactivetrainingsystems.com/"
    }
  ],
  "faqs": [
    {
      "question": "What is RPE in strength training?",
      "answer": "RPE (Rate of Perceived Exertion) is a subjective 1–10 scale indicating how close a set is to failure. RPE 10 means maximum effort with zero reps in reserve; RPE 9 means one rep in reserve; RPE 8 means two reps in reserve. It provides a framework for autoregulating training intensity based on daily readiness."
    },
    {
      "question": "Why does the calculator subtract 2% per RPE point?",
      "answer": "The 2% decrement is an empirical approximation derived from aggregate strength data. Each rep left in reserve typically corresponds to a 2–2.5% reduction in load relative to true maximum effort. This linear scaling simplifies programming while remaining close to observed load–velocity and load–fatigue relationships in compound lifts."
    },
    {
      "question": "Can I use this for bodyweight exercises or isolation movements?",
      "answer": "The table is calibrated for compound barbell lifts (squat, bench, deadlift, press) where load can be precisely quantified. Bodyweight movements introduce leverage and skill variables, and isolation exercises often exhibit different fatigue profiles. The estimates may be less accurate outside traditional barbell training contexts."
    },
    {
      "question": "How does this differ from a 1RM calculator?",
      "answer": "Traditional 1RM calculators use rep-max formulas (Epley, Brzycki) that assume maximal effort (RPE 10). This tool incorporates sub-maximal RPE ratings, allowing estimation of %1RM even when reps in reserve are intentionally programmed. It bridges autoregulated training and percentage-based programming."
    },
    {
      "question": "Why is the range limited to RPE 6–10 and 1–12 reps?",
      "answer": "Below RPE 6, the relationship between effort and load becomes too diffuse for reliable prediction. Above 12 reps, muscular endurance and metabolic factors dominate, shifting the %1RM curve away from the strength domain this table models. These bounds reflect the tool's validity window for strength training applications."
    }
  ],
  "related_tools": [
    {
      "slug": "dots-score",
      "title": "DOTS Score Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/dots-score.json",
      "page_url": "https://fitmetriclab.com/en/tools/strength-training/dots-score/"
    },
    {
      "slug": "intensity-percentage",
      "title": "Training Intensity Percentage Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/intensity-percentage.json",
      "page_url": "https://fitmetriclab.com/en/tools/strength-training/intensity-percentage/"
    },
    {
      "slug": "one-rep-max-brzycki",
      "title": "One-Rep Max Calculator (Brzycki Formula)",
      "api_url": "https://fitmetriclab.com/api/tools/one-rep-max-brzycki.json",
      "page_url": "https://fitmetriclab.com/en/tools/strength-training/one-rep-max-brzycki/"
    }
  ],
  "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."
}