Calculate standard Z-Score from mean and SD
The **Z-Score Calculator** is a statistical standardization tool that converts raw data values into standard scores (z-scores), measuring how many standard deviations a value is from the mean. Whether you're a student analyzing test scores, a researcher comparing datasets, a quality control engineer detecting outliers, or a data analyst normalizing variables, this calculator provides instant, accurate z-score calculations and percentile rankings. **Z-scores** are fundamental in statistics for standardizing data from different distributions onto a common scale. A z-score of +2.0 means the value is 2 standard deviations above the mean, while -1.5 means 1.5 standard deviations below. This standardization enables comparing apples to oranges—like comparing SAT scores to GPA, or heights to weights—by expressing everything in standard deviation units. ### The Z-Score Formula **z = (x - μ) / σ** Where: - **z** = Z-score (standard score) - **x** = Raw data value - **μ** (mu) = Population or sample mean - **σ** (sigma) = Population or sample standard deviation ### Understanding Z-Scores **Interpretation:** - **z = 0**: Value equals the mean (average) - **z = +1**: Value is 1 standard deviation above mean - **z = -1**: Value is 1 standard deviation below mean - **z = +2**: Value is 2 standard deviations above mean (top 2.5%) - **z = +3**: Value is 3 standard deviations above mean (top 0.15%) **The Empirical Rule (68-95-99.7):** - 68% of data falls within z = ±1 - 95% of data falls within z = ±2 - 99.7% of data falls within z = ±3 ### Real-World Applications **Education & Testing:** - Compare test scores across different exams - Standardize grades from different classes - Identify exceptional student performance - Normalize SAT, GRE, IQ scores **Quality Control & Manufacturing:** - Detect defective products (outliers) - Monitor process capability (Six Sigma) - Identify out-of-spec measurements - Track quality metrics over time **Finance & Economics:** - Identify unusual stock returns - Detect anomalies in financial data - Normalize economic indicators - Compare performance across markets **Healthcare & Medicine:** - Assess growth charts (height, weight percentiles) - Identify abnormal lab results - Compare patient metrics to population norms - Detect outlier medical measurements **Research & Data Science:** - Normalize features for machine learning - Compare variables with different units - Detect outliers in datasets - Standardize survey responses ### Practical Examples **Example 1: Test Score Comparison** You scored 85 on a test. Class mean = 75, SD = 5. - z = (85 - 75) / 5 = **+2.0** - You're 2 SD above average (top 2.5%) **Example 2: Height Percentile** Height = 72 inches. Population mean = 68, SD = 3. - z = (72 - 68) / 3 = **+1.33** - You're taller than ~91% of the population **Example 3: Outlier Detection** Measurement = 150. Mean = 100, SD = 10. - z = (150 - 100) / 10 = **+5.0** - This is an extreme outlier (>3 SD from mean) **Example 4: Comparing Different Scales** SAT score 1400 (mean=1000, SD=200) vs GPA 3.8 (mean=3.0, SD=0.4): - SAT z-score: (1400-1000)/200 = **+2.0** - GPA z-score: (3.8-3.0)/0.4 = **+2.0** - Both are equally impressive (2 SD above mean)