Issue
I am searching for a way to calculate Z score(z) for a given percentile(p). I found this site doing such a calculation. They have given a formula for calculating P(Z<=z).
href="http://www.fourmilab.ch/rpkp/experiments/figures/cumnorm.png" rel="nofollow">equation (sorry, could not post the image due to low repution)
Now i have the value of P(Z<=z) and i tried solving it to find out z, but it was really complex to solve for z.
Is there any function in JAVA or PHP which can do this?? or is there any mathematical way in which we can solve for Z. (I am considering hard-coding the Z table as my last choice because i have to make some approximations in that case.)
Solution
PHP has a (badly documented) statistics extension. There's a large number of functions in there that ought to be helpful, but I don't know enough about neither statistics in general or the specific extension to say anything more helpful about it.
Answered By - Letharion
Answer Checked By - Senaida (JavaFixing Volunteer)