To calculate weighted GPA, multiple each grade on a 4.0 scale by the weight of the course and then find the average.
The conversion of 0-100% grades to a 0.0-4.0 scale may be calculated differently at different institutions. You need to check with your institution to see exactly how they do it. However, almost no institution directly scales 0-100% to 0.0-4.0 proportionally. Instead, 0-100% is divided into discrete sections, each of which is then mapped to a specific point value.
The most common system in the United States uses sections of size 10% for grades of 60% or higher, and gives no points for grades lower than 60%, which are considered failing:
- 90-100% -> 4.0
- 80-89% -> 3.0
- 70-79% -> 2.0
- 60-69% -> 1.0
- 0-59% -> 0.0
Under this system, your grades would convert as follows:
- 86% -> 3.0
- 74% -> 2.0
- 88% -> 3.0
- 77% -> 2.0
And your weighted GPA would then be:
(45 * 3.0 + 30 * 2.0 + 45 * 3.0 + 60 * 2.0) / (45 + 30 + 45 + 60) = 2.5
Another common system uses sections of size 5% instead of 10%:
- 95-100% -> 4.0
- 90-94% -> 3.5
- 85-89% -> 3.0
- 80-84% -> 2.5
- 75-79% -> 2.0
- 70-74% -> 1.5
- 65-69% -> 1.0
- 60-64% -> 0.5
- 0-59% -> 0.0
Under this system, your grades would convert as follows:
- 86% -> 3.0
- 74% -> 1.5
- 88% -> 3.0
- 77% -> 2.0
And your weighted GPA would then (rounded to three digits after the decimal point) be:
(45 * 3.0 + 30 * 1.5 + 45 * 3.0 + 60 * 2.0) / (45 + 30 + 45 + 60) ≈ 2.417