Final Grade Calculator
Find out exactly what you need on your final exam to hit a target class grade. Enter your current grade, target, and final's weight to see the required score.
Final Grade Calculator
Background.
This final grade calculator answers the single most-Googled question of every college and high-school semester: what do I need on the final to get an A (or a B, or to pass) in the class? Enter the grade you currently hold in the course, the overall class grade you want to walk away with, and the percentage of the final grade the final exam (or final project) is worth — usually somewhere between 15% and 40% on a standard U.S. syllabus — and the calculator returns the exact score you need on that last assessment, along with three diagnostic numbers: whether the target is achievable at all, the maximum class grade still reachable if you score a perfect 100, and the minimum grade you cannot drop below even if you bomb the final entirely.
The arithmetic itself is a one-line weighted-average solve, but it is the kind of arithmetic that students rarely sit down to do until the night before the exam — at which point a calculator that simply spits out 'you need an 88' is enormously more useful than an algebra refresher.
The weight of the final is where the leverage lives. A final exam worth 10% of your grade is a very different beast from a final worth 40%: when the weight is small, even a perfect score can only nudge your grade by a few points, which is why students with weak in-semester performance sometimes find that an A is mathematically out of reach before they even open the exam booklet; when the weight is large, the final can rescue (or destroy) a semester's worth of work in three hours.
The calculator surfaces both edges of that range with the maxAchievableGrade and minAchievableGrade outputs, which is what lets you do the strategic thinking the question is really asking — not just 'what do I need?' but 'is the A still possible, and if not, what should I aim for instead?'
The same formula is taught verbatim in U.S. university grading guides (Rowan University's Registrar publishes a near-identical worked example) and in Khan Academy's weighted-averages unit; this tool just removes the algebra step so you can focus on what to study.
What is final grade calculator?
The final grade calculator solves a weighted-average equation for one unknown — the score you need on the final exam to land at a specific overall class grade. A class grade is a weighted mean of two pieces: everything done before the final (worth 1 − w of the total) and the final itself (worth w). If C is your current grade going into the final, F is your score on the final, and T is your target class grade, then the relationship T = C × (1 − w) + F × w must hold. Solving for F gives F = (T − C × (1 − w)) / w. The calculator also returns an achievability check (is F ≤ 100?), the maximum class grade still reachable (computed by plugging F = 100 into the same weighted mean), and the minimum class grade (F = 0). Those last two numbers bracket the range of outcomes that are still mathematically possible — useful for deciding whether to push for an A or pivot to securing a B+.
How to use this calculator.
- Look up your current grade in the class. This is the running average your professor or the LMS (Canvas, Blackboard, Brightspace, Moodle) shows for everything graded so far — homework, midterms, quizzes, participation. Enter it as a percentage.
- Decide on a target class grade. Use the percentage cutoff for the letter grade you want (typically 90% for an A, 80% for a B, 70% for a C — check your syllabus, because some courses use stricter cutoffs).
- Find the weight of the final exam on your syllabus. It is usually listed under 'grading policy' or 'course components' as a percentage of the total grade. Enter that percentage in the final weight field.
- Read the 'Required score on the final' output — that is the exam score you need to hit your target exactly.
- Check the 'Is the target achievable?' flag. If it returns 0, the required score exceeds 100% and the target is unreachable. In that case, scroll to the max possible class grade output to see what is still on the table.
- If the target is unreachable, lower it to the maxAchievableGrade value (or just below) and re-run to find the score you'd need for the next-best letter grade.
- Use the min possible class grade as a safety net — it tells you the lowest class grade you can still walk away with even if you score a zero on the final.
The formula.
A class grade is the weighted mean of pre-final work and the final exam:
T = C × (1 − w) + F × w
where T = target class grade (%) C = current grade going into the final (%) F = score on the final exam (%) w = final exam's weight as a decimal (e.g. 0.25 for a 25% final)
The algebra to isolate F is one step. Subtract C × (1 − w) from both sides:
T − C × (1 − w) = F × w
Then divide both sides by w:
F = (T − C × (1 − w)) / w
This is the closed-form expression the calculator evaluates. Note two structural facts. First, when the final's weight w is small, the (1 − w) coefficient on C is close to 1, so the final exam can barely move your class grade — every percentage point you want to add to your grade requires a much larger swing in F. Second, F has no built-in upper bound in the formula: the algebra will happily return values above 100%, which is the calculator's way of telling you the target is unreachable on a normal exam. The maxAchievableGrade output plugs F = 100 into the original weighted-mean equation: max = C × (1 − w) + 100 × w; the minAchievableGrade output plugs F = 0: min = C × (1 − w). Internally the math is done in Decimal.js to avoid floating-point drift, which matters when current grades or weights are entered with several decimal places.
A worked example.
Suppose you have an 85% in the class going into a final worth 25% of your grade, and you want to finish with an A- at 90%. Plug into the formula: F = (90 − 85 × (1 − 0.25)) / 0.25 = (90 − 85 × 0.75) / 0.25 = (90 − 63.75) / 0.25 = 26.25 / 0.25 = 105. You would need a 105% on the final to land at exactly 90% — meaning the A- is not achievable on this exam alone, since a normal final caps at 100. The maxAchievableGrade output confirms this: 85 × 0.75 + 100 × 0.25 = 63.75 + 25 = 88.75%, which is the best class grade still on the table (a B+ at most schools). The minAchievableGrade is 85 × 0.75 = 63.75%, the floor you'd hit by scoring zero. The practical takeaway: lower the target to 88.75% (or 87 to leave a small buffer) and rerun — you'd need F = (87 − 63.75) / 0.25 = 93 on the final to lock in that B+, which is hard but feasible. The example illustrates the key intuition: when you are 5 percentage points away from your target and the final is only worth 25%, you need to outperform your current average by roughly 5 / 0.25 = 20 percentage points on the exam, which often pushes the required score above 100.
Frequently asked questions.
What if my course grade is curved — does that change the required final score?
How is this different from a weighted vs unweighted average?
What counts as the 'final' — an exam, a project, a paper, or a presentation?
What if I can't reach my target — what are my options?
My final is graded in raw points (out of 200), not in percent — how do I convert?
Does the calculator handle plus/minus letter grade cutoffs?
What if my current grade is above the target — should I just coast on the final?
Can I use this for an entire semester's worth of pending work, not just one final?
Why does the required score jump so dramatically when I change the final's weight by a few percentage points?
Does this calculator round the required score, or do I need to round up myself?
References& sources.
- [1]Rowan University Registrar — Grades and Grading. Worked example of the weighted-average equation used to compute a final class grade and to solve for the score needed on a final exam.
- [2]Khan Academy — Summarizing Quantitative Data (AP Statistics). Reference unit on weighted means, which is the underlying statistical concept the final-grade formula applies.
- [3]MIT Registrar's Office — Explanation of Grades. Standard reference for U.S. letter-grade-to-percentage cutoffs and the inclusion rules that determine which items factor into a class grade.
- [4]College Board — AP Course and Exam Grading. Documentation of how AP exams are scored on the 1–5 scale and how that scale is converted to course credit, useful context for students using this calculator alongside AP coursework.
- [5]International Baccalaureate (IB) Organization — Assessment and Exams. Reference on IB internal-assessment and external-exam weighting, which mirrors the weighted-average structure this calculator solves.
- [6]American Association of University Professors (AAUP) — Statement on Teaching Evaluation and Grading Standards. Background on the institutional norms behind weighted grading schemes in U.S. higher education.
In this category
Embed
Quanta Pro
Paid features are coming later.
- All 313 calculators remain free
- No billing is enabled