How weighted grades and required final-exam scores are calculated
The arithmetic is simple; the assumptions are where grades go wrong. Why an ungraded category must not count as zero, and why a low-weighted exam cannot save you.
Published
Two questions cover almost all grade arithmetic. What’s my grade right now, and what do I need on the final to hit a target?
Both are short calculations. Both get answered wrongly all the time, not through bad arithmetic but through an unstated assumption that quietly changes the answer.
Points: the total, not the average
The simplest scheme just adds everything up:
grade = total points earned ÷ total points possible
The consequence catches people out, because this is not the average of your individual percentages. Look at this:
| Assignment | Score | Percentage |
|---|---|---|
| Quiz | 8 / 10 | 80% |
| Exam | 45 / 50 | 90% |
Average of the percentages: 85%. Points total: 53 ÷ 60 = 88.3%.
The exam is five times the size, so it pulls five times as hard. That’s the entire design of a points scheme, with assignments mattering in proportion to their size, and it’s why a five-point quiz you did badly on matters far less than it feels like it should.
Weighted: the categories carry the weight
Most syllabuses assign percentages to categories instead:
Homework 20% · Quizzes 20% · Midterm 25% · Final 35%
Each category gets its own percentage from its own assignments, and then:
grade = Σ (category percentage × category weight) ÷ Σ (weights)
Worked through, with homework at 92%, quizzes at 85%, midterm at 78% and final at 88%:
(92 × 20) + (85 × 20) + (78 × 25) + (88 × 35) = 8,570
8,570 ÷ 100 = 85.7%
Within a category the assignments are usually pooled by points, so the same size-matters effect applies one level down too.
The denominator is where it goes wrong
Here’s the case that matters, and the one a lot of calculators handle badly.
It’s week three. Homework is 20% of the course and you’re at 95%. The other 80%, quizzes and midterm and final, has no marks yet. What’s your grade?
Divide by the total weight and you get 95 × 20 ÷ 100 = 19%. Which is absurd, because it treats every unsat exam as a zero you’ve already earned.
Divide by the graded weight and you get 95 × 20 ÷ 20 = 95%. Which is the meaningful answer: across everything marked so far, you’re at 95%.
The second one is right, with one honest caveat. It’s a statement about your standing on completed work, not a prediction of your final grade. Those are different claims, and a tool should say which one it’s making. If your first assignments are your strongest, 95% will drift down as the term goes on, and no arithmetic can warn you about that in advance.
Two practical notes. Some institutions’ systems really do count unsubmitted work as zero once a deadline passes, but that’s a policy about missing work, not the same thing as an ungraded category. And if your weights don’t add to 100, dividing by the graded weight is the only sensible option anyway.
Dropping the lowest score
Common, and ambiguous unless somebody states the rule.
By percentage, which is what people mean. A 40/100 (40%) gets dropped ahead of a 4/5 (80%).
By raw points, which almost nobody means. The 4/5 loses the fewest points in absolute terms, so a naive implementation drops that, improving your grade by almost nothing and leaving the 40% right where it was.
Dropping by percentage is the reasonable default. Note it isn’t always the one that helps most, though. In a points-based scheme, removing a large assignment changes the denominator substantially, so occasionally dropping a middling-percentage large assignment beats dropping a terrible small one. If your institution’s system picks whichever drop maximises your grade, it may choose differently from a simple lowest-percentage rule.
The required final-exam score
The question is: given where I am and what the exam is worth, what do I need?
final = current × (1 − w) + exam × w
where w is the exam’s weight as a fraction. Rearranged:
exam = (target − current × (1 − w)) ÷ w
At 85% with a 20% final, aiming for 90%:
(90 − 85 × 0.8) ÷ 0.2 = (90 − 68) ÷ 0.2 = 110%
Not attainable. And that’s the useful output, because knowing a target is out of reach before the exam beats a number that flatters you.
The reason is worth internalising: a low-weighted exam can’t move your grade much. At 20% weight the exam can shift your final by at most 20 percentage points, and only by scoring at the extremes. The 80% you’ve already banked is fixed. Students routinely overestimate how much a final can rescue, and the arithmetic is the antidote.
The same formula in reverse gives you the floor. Scoring 0% leaves you at
current × (1 − w), so at 85% with a 20% final that’s 68%. If that already
clears your target, the exam can’t cost you the grade.
The assumption underneath all of it
Every calculation above assumes your current grade represents the entire non-exam portion of the course.
If coursework is still outstanding, it doesn’t, and the answer will be wrong in a way no arithmetic can detect. The required score comes out too optimistic if the remaining work is easy marks you’re about to bank, and too pessimistic if it isn’t.
Rounding, which decides more grades than it should
Whether 89.5% is an A or a B is a policy, not a fact.
Some institutions round to the nearest whole number, some truncate, some round only at the final grade and not at intermediate steps, and some apply no rounding at all. Rounding at each category and again at the end can move a final result by a meaningful fraction of a point, which is enough to cross a boundary.
There’s no universal letter scale either. A 90/80/70/60 split is common in the United States and isn’t a standard; plenty of institutions use different cut-offs, add plus and minus bands, or don’t use letters at all. Any calculator’s defaults are a starting point to check against your syllabus, which is why the one here makes the boundaries editable instead of presenting one scheme as correct.
What the arithmetic can’t tell you
It can’t tell you whether extra credit gets applied before or after weighting, whether a curve is coming, whether late penalties are already reflected in the marks you have, or whether your instructor rounds in your favour. Those are all policies, they vary, and they’re written in your syllabus.
Use the arithmetic to understand your position and plan around it. Use the syllabus, and your instructor, for the number that counts.
Sources and further reading
- Weighted arithmetic mean — the underlying definition
- AERA, APA & NCME — Standards for Educational and Psychological Testing
- Brookhart, S. M. et al. “A Century of Grading Research.” Review of Educational Research, 2016
- Guskey, T. R. & Brookhart, S. M. What We Know About Grading — on grading policy variation between institutions
- NIST — guidance on rounding and significant figures in reported values
Last reviewed 2 August 2026.