NFL passer rating uses four components: completion percentage, yards per attempt, touchdown percentage, and interception percentage. Each component is calculated, clamped between 0 and 2.375, summed, divided by 6, and multiplied by 100. The maximum possible rating is 158.3.
- a = ((COMP/ATT) - 0.30) * 5, clamped 0 to 2.375
- b = ((YDS/ATT) - 3) * 0.25, clamped 0 to 2.375
- c = (TD/ATT) * 20, clamped 0 to 2.375
- d = 2.375 - ((INT/ATT) * 25), clamped 0 to 2.375
- Rating = ((a + b + c + d) / 6) * 100
| Component | Formula | Min Value | Max Value |
|---|---|---|---|
| a (Completion %) | ((COMP/ATT) - 0.30) * 5 | 0 | 2.375 |
| b (Yards/Attempt) | ((YDS/ATT) - 3) * 0.25 | 0 | 2.375 |
| c (TD %) | (TD/ATT) * 20 | 0 | 2.375 |
| d (INT %) | 2.375 - ((INT/ATT) * 25) | 0 | 2.375 |
