Solved – Build a (normal?) distribution from $n$, quartiles and mean

distributionsestimationnormal distributionquantiles

I have some data that is described by $n$, quartiles (+ additional quantile point) and the mean. Is it possible to rebuild or model this distribution from these statistics? As the median and the mean are not the same, there is at least some skew, but otherwise, I would assume the data to be normal like.

Edit: This was marked as a duplicate, but in the other questions I found while searching, none of them included the information regarding the mean as a data point to recreate the distribution. Because of that additional parameter, I wondered if it made the estimation possible. In short, the affect of having the mean was not apparent from the other answers related to the question.

Best Answer

The answer is No, not exactly anyhow.

If you have two quartiles of a normal population then you can find $\mu$ and $\sigma.$ For example the lower and upper quantiles of $\mathsf{Norm}(\mu = 100,\, \sigma = 10)$ are $93.255$ and $106.745,$ respectively.

 qnorm(c(.25, .75), 100, 10)
 [1]  93.2551 106.7449

Then $P\left(\frac{X-\mu}{\sigma} < -0.6745\right) = 0.25$ and $P\left(\frac{X-\mu}{\sigma} < 0.6745\right) = 0.75$ provide two equations that can be solved to find $\mu$ and $\sigma.$

qnorm(c(.25,.75))
[1] -0.6744898  0.6744898

However, sample quartiles are not population quartiles. There is not enough information in any normal sample precisely to determine $\mu$ and $\sigma.$

And you are not really sure your sample is from a normal population. If the population has mean $\mu$ and median $\eta,$ then the sample mean and median, respectively, are estimates of these two parameters. If the population is symmetrical, then $\mu = \eta,$ but you say the sample mean and median do not agree. So you cannot be sure the population is symmetrical, much less normal.