# compute the 99% quantile of a normal distribution with mu = 5 and sigma^2 = 25.
# compute the 99% quantile of a normal distribution with mu = 5 and sigma^2 = 25.
qnorm(0.99, mean = 5, sd = sqrt(25))
test_function_result("qnorm")