Calculate your dual-enrollment GPA
Students taking dual-enrollment college courses alongside high school classes often have two GPAs: an unweighted GPA that treats every A equally, and a weighted GPA that rewards the rigor of college-level work with a grade-point bonus. This calculator computes both from your full course list, so you can report whichever a given university expects.
How it works
Each letter grade maps to standard points (A = 4.0, B = 3.0, C = 2.0, D = 1.0, F = 0.0). The unweighted GPA is the credit-weighted average of those points. For the weighted GPA, dual-enrollment courses receive a bonus you specify (commonly +1.0), but only for passing grades:
weightedPoints = basePoints + (isDual && passing ? bonus : 0)
GPA = Σ(points × credits) / Σ(credits)
Tips and notes
- Use your school’s published bonus value — a +1.0 bonus and a +0.5 bonus produce noticeably different weighted GPAs.
- Higher-credit courses pull the average harder, so a strong grade in a 4-credit course matters more than the same grade in a 1-credit course.
- Many universities recalculate GPA from your transcript with their own rules. Keep both figures handy for applications.