Types: N/A
Examples: N/A
Constructions: N/A
Generalizations: 03 Vector Modeling

Properties: N/A
Sufficiencies: N/A
Questions: N/A

Calculate Final Grade

Given the information below, show how we can calculate our final grade using 5.1 Inner Product Between Vectors.

g=[q300e1100e2100f100]

where

  • q= the total number of points from warmup quizzes
  • e1= final score on exam 1
  • e2= final score on exam 2
  • f= final score on final

The weights for each category are as follows:

  1. Warm-Up Quizzes: 10%
  2. Exam 1: 25%
  3. Exam 2: 25%
  4. Final: 40%

Solution. Let's first encode the grade category weights in a 4×1 vector.

w=[0.100.250.250.40]

The inner product of the grade vector g and the weight vector w is our final grade percent score p.

p=gw=0.10(q300)+0.25(e1100)+0.25(e2100)+0.40(f100)