Neighborhood

Basis
Last updated: Tags: Analysis

Prerequisites

An open ball gives you a specific zone around a point with a chosen radius. In practice, you often don’t care about the exact radius — you just need some zone to exist. Neighborhoods capture that weaker, more flexible idea.

Definition

Let (X,d)(X, d) be a metric space and let xXx \in X. A set NXN \subseteq X is called a neighborhood of xx if there exists some r>0r > 0 such that

B(x,r)N.B(x, r) \subseteq N.

In words: NN is a neighborhood of xx whenever you can fit an open ball centered at xx entirely inside NN. The set NN may be larger, oddly shaped, or even equal to XX — it just must contain at least one open ball around xx.

Examples in R\mathbb{R}

  • (1,1)(-1, 1) is a neighborhood of 00, because B(0,0.5)=(0.5,0.5)(1,1)B(0, 0.5) = (-0.5, 0.5) \subseteq (-1, 1).
  • [1,1][-1, 1] is a neighborhood of 00 (same reason — the closed interval contains the open ball).
  • [1,1][-1, 1] is not a neighborhood of 11, because any ball B(1,r)B(1, r) contains points greater than 11, which lie outside [1,1][-1, 1].
  • {0}\{0\} is not a neighborhood of 00, because no open ball of positive radius around 00 fits inside a single point.

Open balls are neighborhoods of their center

Every open ball B(x,r)B(x, r) is a neighborhood of xx: taking s=rs = r, you have B(x,r)B(x,r)B(x, r) \subseteq B(x, r), so the definition is satisfied immediately. Open balls are, in this sense, the simplest neighborhoods — every neighborhood of xx must contain one, and every open ball centered at xx is itself one.

Neighborhoods and open sets

Neighborhoods give a clean, point-centric description of open sets:

A set UXU \subseteq X is open if and only if it is a neighborhood of each of its points.

This equivalence is sometimes taken as the definition of an open set. It shows that neighborhoods are not just shorthand — they capture the essence of openness.

Why use neighborhoods instead of open balls?

When you write a proof, spelling out an explicit radius is often unnecessary and clutters the argument. Neighborhoods let you say “let NN be a neighborhood of xx” and reason about the existence of closeness without fixing a number. This pays off especially in the definition of limits, where the neighborhood characterization is often cleaner than the ε\varepsilon-δ\delta form.

As a concrete illustration: both of the following say the same thing, but the second is often easier to work with in abstract arguments.

ε\varepsilon-form. For every ε>0\varepsilon > 0, there exists NN such that nN    d(xn,L)<εn \geq N \implies d(x_n, L) < \varepsilon.

Neighborhood form. Every neighborhood of LL contains all but finitely many terms of (xn)(x_n).

Summary

  • A neighborhood of xx is any set NN that contains an open ball B(x,r)B(x, r) for some r>0r > 0.
  • Every open ball centered at xx is a neighborhood of xx.
  • A set is open if and only if it is a neighborhood of every point it contains.
  • Neighborhoods provide a flexible, radius-free vocabulary for proximity — useful whenever the exact radius doesn’t matter.