To calculate a student's final grade using weighted averages in Google Sheets, you can use the AVERAGE.WEIGHTED function with the grades as the values and the percentage of the final grade as the weights. For example:
=AVERAGE.WEIGHTED(B2:B6, C2:C6)
In this formula, B2:B6
contains the student's grades for different items (Homework, Participation, Midterm exam, Projects, Final exam), and C2:C6
contains the corresponding percentages of the final grade. The function will return the weighted average of the grades, which represents the student's final grade.