Solved – How to calculate the mean and standard deviation given three percentiles using Matlab

computational-statisticsnormal distributionquantilesself-study

I have the percentiles of 3 values. The percentiles are 5th, 50th and 95th. The values respectively are 340, 365 and 385. How can I find the median and the standard deviation given that data follow a normal distribution?

Best Answer

The 50th percentile is the median.
I used qnorm(0.05) in R to estimate the number of standard deviations the 5th percentile is from the mean, given a normal distribution. It's 1.644854. Good luck!