Raw Score Calculator
How it Works
01Enter Z-Score
Input the standardized Z-score (number of SDs from the mean).
02Enter Mean & SD
Provide the population or sample mean and standard deviation.
03Get Raw Score
X = μ + Z × σ — the original measurement value.
04View Percentile
The corresponding percentile from the standard normal CDF.
Introduction
Z-scores are powerful for comparing values across different distributions, but once you have worked with standardized scores, you often need to translate back to the original context. For example, if a student's Z-score of 1.5 on a test means they scored 1.5 standard deviations above average, the raw score calculator tells you their actual test score.
This inverse Z-score calculation is essential in many fields. In education, it is used to compute cut scores for passing thresholds defined in terms of Z-scores or percentiles. In psychology, it is used to convert standardized assessment scores (like IQ, where mean=100, SD=15) back into raw scores. In manufacturing, it helps translate control limits defined in sigma units back to actual measurement values.
The raw score formula is algebraically derived from the Z-score formula: X = μ + Z×σ. This simple transformation is the basis for standardization and de-standardization in statistics, machine learning feature scaling, and data preprocessing workflows.
This calculator also works in reverse: you can enter a raw score, mean, and standard deviation to compute the corresponding Z-score, giving you full bidirectional conversion between raw and standardized scores.
The formula
X = μ + Z × σ
Where:
Z-Score from Raw Score (reverse):
Z = (X − μ) / σ
Percentile from Z-Score:
Percentile = Φ(Z) × 100
Where Φ(Z) is the standard normal CDF.
Calculation In Practice
A standardized math test has:
X = 75 + 1.8 × 10 = 75 + 18 = 93 points
The student scored 93 out of 100.
Reverse Example:
Another student scored 65 points.
Z = (65 − 75) / 10 = −10/10 = −1.0
This student scored 1 standard deviation below the mean (≈ 16th percentile).
Typical Use Cases
Educational Assessment
Psychological Testing
Manufacturing Control Limits
Machine Learning Preprocessing
Financial Risk (VaR)
Technical Reference
Common Standardized Scales:
Percentile from Z:
Key Takeaways
The formula X = μ + Z×σ is straightforward but critical for correctly interpreting standardized scores. Always verify that the mean and standard deviation you use match the distribution to which the Z-score applies — using the wrong parameters produces incorrect raw score estimates.
For sample data, use the sample mean and sample standard deviation. For population data, use population parameters. When working with standardized tests (SAT, IQ, GRE), use the published normative mean and standard deviation for the relevant population.