🟪 1-Minute Summary

The standard normal distribution is a special case of the normal distribution with mean = 0 and standard deviation = 1. Z-scores transform any normal distribution to this standard form, allowing you to compare values from different distributions and look up probabilities in standard tables. Formula: z = (x - μ) / σ.


🟦 Core Notes (Must-Know)

What is the Standard Normal Distribution?

[Content to be filled in]

Z-Score Formula and Interpretation

[Content to be filled in]

When to Use Z-Scores

[Content to be filled in]

Z-Table (Standard Normal Table)

[Content to be filled in]


🟨 Interview Triggers (What Interviewers Actually Test)

Common Interview Questions

  1. “A student scored 85 on a test with mean=75 and SD=10. What’s their z-score?”

    • [Answer: z = (85-75)/10 = 1.0]
  2. “Why do we standardize data?”

    • [Answer framework to be filled in]

🟥 Common Mistakes (Traps to Avoid)

Mistake 1: Forgetting the sign of the z-score

[Content to be filled in]

Mistake 2: Using z-scores for non-normal data

[Content to be filled in]


🟩 Mini Example (Quick Application)

Scenario

[Comparing test scores from different classes]

Solution

import numpy as np
from scipy import stats

# Example to be filled in


Navigation: