dnorm() — Height of the curve

Tells you how tall the bell-shaped hill is at one spot.

dnorm(x, mean = 0, sd = 1)

Key idea

Continuous probability distributions — the big idea

  1. A continuous variable can take ANY value in a range — height, weight, time, temperature — so, unlike a die, you cannot list its outcomes one by one.
  2. Because there are infinitely many possible values, the chance of any single EXACT value (like a height of exactly 180.0000… cm) is 0.
  3. So probability is measured as the AREA under the curve over a RANGE — e.g. the chance a height is between 170 and 180 cm. (That area is what pnorm computes.)
  4. The curve dnorm draws is a probability DENSITY: its height shows how crowded values are at each point, not a probability — which is why a density can even be above 1.
  5. The total area under any continuous distribution is exactly 1, because the value must land somewhere.
  6. The normal (bell) curve is the most famous continuous distribution, but the same area-not-height rule holds for all of them (uniform, exponential, and so on).

Definition

the point on the axis
the mean (centre)
the standard deviation (spread)
the curve height (density) at x

In plain words

How tall the bell-shaped hill is right over the spot x. Taller means values land near there more often. But the height by itself is a density, not a chance — it just shows how crowded values are at that point.

Where you'd use it

Frequently asked questions

Is dnorm a probability?
No — it’s the height of the curve (density) at a point. Probabilities are areas (use pnorm), and any exact value has probability 0.
Why is my dnorm value bigger than 1?
Density isn’t capped at 1; with a small SD the curve is tall and narrow. Only the total area equals 1.