Gaussian distribution (in estimation)
A Gaussian distribution is the famous bell-shaped curve: high and humped in the middle, tailing off smoothly toward zero on both sides. In estimation it is the favorite shape for describing a robot's belief, because it captures the two things that matter most about a guess with just two numbers. The first number is the mean — the location of the peak, the robot's single best estimate, its "I think it's right about here." The second is the spread, which says how wide the hump is — narrow and tall for a confident robot, broad and low for an unsure one.
That spread is captured by the variance (and, for a guess about several quantities at once, the covariance matrix); the everyday "plus-or-minus" width you picture is its square root, the standard deviation. The beauty is the economy: instead of tracking thousands of separate possibilities, the robot stores just a center and a width and trusts the bell curve to fill in everything between. Real-world noise also tends to pile up into roughly this shape on its own — many small, independent errors jostling together average out into a bell — so the Gaussian is not just convenient, it is often a genuinely faithful picture of how uncertainty actually behaves.
There is one more gift that makes engineers love it. When you start with a Gaussian belief and push it through the kind of straight-line (linear) math that simple motion and sensors involve, the result is still a Gaussian — the bell may shift and stretch, but it never turns into some lumpy, two-humped monster. This closure under linear operations is exactly why the Kalman filter can run so fast and cleanly: it only ever has to update a mean and a covariance, never an unwieldy cloud of points.
A robot estimates its position as a Gaussian: mean at x = 4.0 m, with a spread of about plus-or-minus 0.2 m (roughly two standard deviations). That single bell curve says "my best guess is 4.0 meters, and I'd be mildly surprised to be off by more than 20 centimeters" — two numbers carrying both the answer and the confidence.
Mean gives the best guess; spread gives the confidence — a whole belief in just two numbers.
A Gaussian has just one peak, so it can only say "probably here, roughly this unsure." It cannot express "either in room A or room B, but definitely not the hallway between" — that needs a multi-peaked belief, which is one big reason particle filters exist.