Mathwords logoMathwords

Unit Sphere — Definition, Formula & Examples

A unit sphere is the set of all points that are exactly one unit of distance from a chosen center point. In most contexts, the center is the origin, so every point on the unit sphere satisfies the condition that its distance from the origin equals 1.

In Rn\mathbb{R}^n, the unit sphere Sn1S^{n-1} is the set {xRn:x=1}\{ \mathbf{x} \in \mathbb{R}^n : \|\mathbf{x}\| = 1 \}, where x\|\mathbf{x}\| denotes the Euclidean norm. The superscript n1n-1 reflects the fact that the sphere is an (n1)(n-1)-dimensional surface embedded in nn-dimensional space.

Key Formula

Sn1={(x1,x2,,xn)Rn:x12+x22++xn2=1}S^{n-1} = \{ (x_1, x_2, \ldots, x_n) \in \mathbb{R}^n : x_1^2 + x_2^2 + \cdots + x_n^2 = 1 \}
Where:
  • nn = Dimension of the ambient Euclidean space
  • x1,,xnx_1, \ldots, x_n = Coordinates of a point in $\mathbb{R}^n$
  • Sn1S^{n-1} = The unit sphere, an $(n-1)$-dimensional surface

How It Works

To check whether a point lies on the unit sphere, compute its Euclidean norm and verify that it equals 1. In R3\mathbb{R}^3, this means checking x2+y2+z2=1\sqrt{x^2 + y^2 + z^2} = 1. The unit sphere is used to normalize vectors: dividing any nonzero vector by its magnitude produces a vector on the unit sphere. It also serves as the domain of integration in spherical coordinates and appears in definitions of surface area and solid angle.

Worked Example

Problem: Determine whether the point (13,23,23)\left(\frac{1}{3},\, \frac{2}{3},\, \frac{2}{3}\right) lies on the unit sphere in R3\mathbb{R}^3.
Compute the squared norm: Square each coordinate and add the results.
x2+y2+z2=(13)2+(23)2+(23)2=19+49+49=99=1x^2 + y^2 + z^2 = \left(\frac{1}{3}\right)^2 + \left(\frac{2}{3}\right)^2 + \left(\frac{2}{3}\right)^2 = \frac{1}{9} + \frac{4}{9} + \frac{4}{9} = \frac{9}{9} = 1
Check the condition: Since the sum of squares equals 1, the norm is 1=1\sqrt{1} = 1.
x=1\|\mathbf{x}\| = 1
Answer: Yes, the point lies on the unit sphere S2S^2 in R3\mathbb{R}^3.

Why It Matters

The unit sphere appears constantly in multivariable calculus when converting to spherical coordinates and computing surface integrals. In linear algebra and data science, normalizing vectors to the unit sphere is a standard preprocessing step for algorithms like cosine similarity and principal component analysis.

Common Mistakes

Mistake: Confusing the unit sphere with the unit ball. Students sometimes include all points with x1\|\mathbf{x}\| \leq 1.
Correction: The unit sphere is only the boundary where x=1\|\mathbf{x}\| = 1. The unit ball is the solid region x1\|\mathbf{x}\| \leq 1 that the sphere encloses.