[an error occurred while processing this directive] [an error occurred while processing this directive]
[an error occurred while processing this directive] Skip to the content of the web site.A significant problem with threshold marking are students who are close to, but below, the threshold. For example, students who achieve a grade of less than 40 may not have laboratory marks counted into their final grade.
The following is an alternative which has similar properties to threshold marking but where a change of grade on the final of 1% will affect their overall average by at most 2-3%.
Then the formula for the final grade when L < F < U is:
For example, in ECE 250, f = 0.5, m = pl = 0.25, L = 40, and U = 60. In this case, the formula evaluates to:
Another example could be f = 0.5, m = 0.2, pl = 0.3, L = 40, and U = 50, in which case, the formula evaluates to:
Finally, another example could be where the projects/labs do not count unless the student achieves F = 50 on the final. Let us assume that f = 0.5, m = 0.25, pl = 0.25, L = 50, and U = 60, in which case, the formula evaluates to:
An alternate scheme would be to require that the final examination is 100% of the grade if F ≤ L and the mid-term and projects/laboratories count for their full weight only if F ≥ U. In this case, the formula is:
In this case, the formulae for the intermediate grading in the above examples would change to
respectively.
The ECE 250 web site documents this nicely with the image in Figure 1.
Figure 1. Pictorial representation of the ECE 250 grade.
The following is Maple code which calculates the formulae for Example 1.
L := 40: U := 60: f := 0.5; m := 0.25; pl := 0.25; # Midterm and Final for F < L (f*F + m*M)*(U - F)/(U - L)/(f + m) + (f*F + m*M + pl*PL)*(F - L)/(U - L) ; lprint(%); convert( %, 'rational' ); lprint(%); # Final only for F < L (f*F + m*M)*(U - F)/(U - L)/(f + m) + (f*F + m*M + pl*PL)*(F - L)/(U - L) ; lprint(%); convert( %, 'rational' ); lprint(%);
The partial derivative with respect to F is of the general formula is
The coefficient of F in this equation is 2f(1 - 1/(f + m))/(U - L) which is clearly negative, and consequently, the greatest increase will be when F = L.