Enter the components of a vector to calculate its L1, L2, and L∞ norms.
Vector norms are measures of the "length" or "magnitude" of vectors. They are essential in various fields of mathematics, physics, and engineering. This guide will explain how to calculate the three most common vector norms: L1, L2, and L∞.
For a vector \(\vec{v} = (v_1, v_2, \ldots, v_n)\), the norms are defined as follows:
Let's calculate the norms for the vector \(\vec{v} = (3, -4, 5)\):
\(\|\vec{v}\|_1 = |3| + |-4| + |5| = 3 + 4 + 5 = 12\)
\(\|\vec{v}\|_2 = \sqrt{3^2 + (-4)^2 + 5^2} = \sqrt{9 + 16 + 25} = \sqrt{50} \approx 7.071\)
\(\|\vec{v}\|_\infty = \max(|3|, |-4|, |5|) = 5\)
This diagram illustrates the different norms for a 2D vector. The blue arrow represents the vector, the red path shows the L1 norm (sum of absolute coordinates), the green line represents the L2 norm (Euclidean distance), and the purple square represents the L∞ norm (maximum absolute coordinate).