function norm(x,m,s) {
return 1/sqrt(2*pi*s^2)*e^(-1*(x-m)^2/(2*s^2))
}m = means = standard deviationx = the value we are trying to scorenorm(73,6/2,66) =0.0340 , are the arguments in right order? I do not understand how the output is 0.0340, why the input for sd is 6/2 not 6.2 ?