[Math] Is it possible to find the mean and standard deviation when given the normal z-scores for the bottom 25% and top 25%

statistical-inferencestatistics

I want to apply to a university where the 25th /75th percentiles for the SAT Math are 490 / 620 respectively, but I am curious how would I find the mean and the standard deviation assuming that the data is normally distributed? I know that we are talking about the middle 50th-percentile and $z_{0.25} = 620$ and $z_{0.75} = 490$

Best Answer

Using z-score tables for standard normal variable, $$ z_{0.25} = \mu - \sigma \cdot 0.675 \qquad z_{0.75} = \mu + \sigma \cdot 0.675 $$ You now have two equations for two unknowns.

In[213]:= Solve[{Quantile[NormalDistribution[mu, si], 0.25] == 490, 
  Quantile[NormalDistribution[mu, si], 0.75] == 620}, {mu, si}]

Out[213]= {{mu -> 555., si -> 96.3691}}