Manhattan Norm Calculator

Calculate the L₁ norm (Taxicab norm) of a vector

Enter vector components separated by spaces, commas, or newlines

About Manhattan Norm (L₁)

The Manhattan norm, also known as L₁ norm or Taxicab norm, measures the sum of the absolute values of a vector's components. It's named after the Manhattan distance, which represents the distance a taxi would drive in a city laid out in a grid-like pattern.

Formula:

For a vector \(\vector{x} = (x_1, x_2, \ldots, x_n)\):
\[ \norm{\vector{x}}_1 = \sum_{i=1}^n \abs{x_i} = \abs{x_1} + \abs{x_2} + \cdots + \abs{x_n} \]

Properties:

Applications:

Example:

For the vector \(\vector{x} = (3, -4, 2)\):
\[ \norm{\vector{x}}_1 = \abs{3} + \abs{-4} + \abs{2} = 3 + 4 + 2 = 9 \]