# Part 4 - STATISTICS

> Source: <https://dev.to/sami21234/statistics-2o26>
> Published: 2026-07-24 13:26:09+00:00

When I first learned **Normal Distribution**, everyone kept saying:

"It's the most important distribution in statistics."

But no one explained **why**.

Why is everyone obsessed with this bell-shaped curve?

Why does it appear everywhere in Data Science, Machine Learning, and even nature?

In this article, we'll understand **Normal Distribution from first principles**. No memorization. No complicated mathematics. Just intuition and simple examples.

Imagine you're a teacher.

You have marks of 1,000 students.

Will every student score exactly 70?

No.

Will everyone score either 0 or 100?

Again, no.

Instead, something interesting happens.

If we draw this on a graph, we get something like this:

```
               *
             *   *
           *       *
         *           *
       *               *
_____*___________________*_____
```

This beautiful bell-shaped curve is called the **Normal Distribution**.

Think about these examples.

In all these cases,

Most observations are **close to the average**, while only a few are extremely small or extremely large.

Nature loves balance.

That's why the Normal Distribution appears almost everywhere.

A **Normal Distribution** is a continuous probability distribution that is:

It describes situations where most values cluster around the average and fewer observations appear as we move away from it.

Imagine measuring the heights of 10,000 people.

You won't find

Instead,

Most people are somewhere in between.

That's why the center of the curve is the tallest.

As we move away from the center, fewer people exist.

This creates the famous bell shape.

The amazing thing about a Normal Distribution is that it is completely described using only **two numbers**.

The **mean** tells us the center of the distribution.

Think of it as the average value.

Example:

If the average exam score is

```
70
```

then the center of the curve is at 70.

Knowing the center isn't enough.

We also want to know

How spread out is the data?

This is measured by the **Standard Deviation**.

Small standard deviation

→ Data is tightly packed around the mean.

Large standard deviation

→ Data is widely spread out.

Imagine two classes with the same average marks of 70.

Class A

```
68
69
70
71
72
```

Class B

```
30
45
70
90
115
```

Both have similar averages.

But Class B has much more variation.

That's why its standard deviation is larger.

The Normal Distribution is perfectly balanced.

If 20% of students score above a certain distance from the mean,

then another 20% score below the same distance.

The left side mirrors the right side.

This symmetry makes calculations much easier.

In many datasets,

these three values are different.

But in a perfect Normal Distribution,

```
Mean = Median = Mode
```

Why?

Because the curve is perfectly symmetrical.

Everything is balanced around the center.

Look carefully at the bell curve.

The ends become thinner and thinner.

But they never actually touch the x-axis.

This property is called **Asymptotic**.

It means

there is always a tiny chance of observing extremely large or extremely small values,

but that chance becomes incredibly small.

Now imagine two datasets.

Dataset A

Average height = 170 cm

Dataset B

Average salary = ₹60,000

Can we compare them directly?

No.

They use completely different scales.

So statisticians created a standardized version called the **Standard Normal Distribution**.

It has:

```
Mean = 0

Standard Deviation = 1
```

Instead of comparing raw values,

we compare **how many standard deviations away from the mean** they are.

This standardized value is called the **Z-score**.

A Z-score answers one simple question:

How far is this value from the average?

Not in centimeters.

Not in rupees.

But in terms of **standard deviations**.

Example:

Suppose

Average height = 170 cm

Standard deviation = 5 cm

A person is 180 cm tall.

That person is

```
(180 - 170) / 5 = 2
```

standard deviations above the mean.

So,

```
Z = 2
```

Now this value can be compared with any other normal distribution.

Standardization makes different datasets comparable.

Example:

Student A scores

```
85/100
```

Student B earns

```
₹70,000
```

These numbers have different units.

After converting them into Z-scores,

we can compare their relative positions in their own distributions.

One of the coolest things about the Normal Distribution is that we already know how data is spread.

Approximately:

This is known as the **Empirical Rule**.

It helps us estimate probabilities without analyzing every observation.

One important fact beginners often miss is:

The total area under the Normal Distribution curve is always

```
1
```

or

```
100%
```

Why?

Because every possible outcome must be included.

When we calculate probability,

we're actually finding the **area under a part of the curve**.

Not every dataset follows a perfect bell curve.

Sometimes the data leans more toward one side.

This is called **Skewness**.

The tail is longer on the right.

Example:

Income data.

Most people earn average salaries,

while a few earn extremely high salaries.

The tail is longer on the left.

Example:

An easy exam where most students score high,

but a few score very low.

A perfectly symmetrical distribution.

This is the Normal Distribution.

You'll find it everywhere.

Some common applications are:

Even if you don't calculate probabilities manually,

many machine learning algorithms assume that the underlying data is approximately normally distributed.

Normal Distribution is one of the foundations of statistics.

Once you understand it,

concepts like

become much easier.

Instead of memorizing formulas,

focus on understanding the intuition.

Everything else builds on top of it.

When I first saw the bell curve, it looked like just another graph.

Now I see it differently.

It's nature's way of organizing uncertainty.

Most things happen around the average.

Extreme events are rare.

That's exactly what the Normal Distribution captures.

Once you understand this simple idea, statistics starts feeling much more intuitive.

If you're learning Data Science, don't treat the Normal Distribution as just another chapter in statistics.

Think of it as the language that explains how most real-world data behaves.

Once this concept clicks, many advanced statistical and machine learning topics become much easier to understand.

If you didn't read the previous part, read it here: [PART 3](https://dev.to/sami21234/part-3-statistics-d53)

Happy Learning! 🚀
