[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.

Non-Threshold Marking

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.

Projects/Labs Not Counted into Grade with Poor Examination Result

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:

(f·F + m·M)·(U − F)/(U − L)/(f + m) + (f·F + m·M + pl·PL)·(F − L)/(U − L)

Example 1

For example, in ECE 250, f = 0.5, m = pl = 0.25, L = 40, and U = 60. In this case, the formula evaluates to:

Example 2

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:

Example 3

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:

Full Weight on Final with Poor Final Result

An alternate scheme would be to require that the final examination is 100% of the grade if FL and the mid-term and projects/laboratories count for their full weight only if FU. In this case, the formula is:

F·(U − F)/(U − L) + (f·F + m·M + pl·PL)·(F − L)/(U − L)

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.

Maple

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(%);

Maximum Derivative

The partial derivative with respect to F is of the general formula is

(2fF + mM + plPL - fL + (fU - 2fF - mM)/(f + m))/(U - L).

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.