Any sufficiently advanced technology is equivalent to magic.

Top

Site Menu

Probability Distribution Functions

The Standard Normal Distribution

The Normal Distribution - N(μ, σ2)

If you have a mean or standard deviation that are not standard, the functions can be used similarly. Just specify the new mean or standard deviation value in its respective place.

Suppose that IQ scores are normally distributed with a mean equal to 100 and a standard deviation of 15. What is the probability that a random person has an IQ less than 90?

# no pec pnorm(90, mean = 100, sd = 15, lower.tail = TRUE)
This means that there is a 0.2524925 probability that a random person will have an IQ less than 90.
What IQ score would you need to have to be in the top 10%?

# no pec qnorm(0.10, mean = 100, sd = 15, lower.tail = FALSE)
In order to be in the top 10% of IQ scores, you would need to have a score of 119.2233 or higher.

Video Tutorial: