oh, i see...
normPdf: don't worry about this one, MM students do not need to know the probability density function of normal distribution(s)
normCdf:
syntax
normCdf(lower,upper,μ,σ)
where lower is the lower bound, upper is the upper bound, μ is the mean,σ is the standard deviation
e.g. to find the probability in a normal distribution with mean of 30 and sd of 7 (study score) unbounded to the left and bounded at 37 on the right:
normCdf(-∞,37,30,7)=0.841
invNorm
syntax
invNorm(area,μ,σ)
where the area is the probability in a normal distribution unbounded to the left (i.e. to negative infinity), and μ is the mean, σ is the sd
e.g. for study scores, to find the SS where I beat 75% of the state:
invNorm(0.75,30,7)=34.7