What Is 1 norm

Content on WhatAnswers is provided "as is" for informational purposes. While we strive for accuracy, we make no guarantees. Content is AI-assisted and should not be used as professional advice.

Last updated: April 15, 2026

Quick Answer: The 1-norm, also known as the Manhattan or taxicab norm, measures the sum of absolute values of vector components. For a vector [3, −4, 5], the 1-norm is |3| + |−4| + |5| = 12. It is widely used in machine learning and signal processing due to its robustness to outliers.

Key Facts

Overview

The 1-norm, formally known as the L1 norm, is a mathematical method for measuring the magnitude of a vector by summing the absolute values of its components. Unlike the more common Euclidean (L2) norm, the 1-norm does not involve squaring or square roots, making it computationally simpler in certain applications.

It is particularly useful in scenarios where robustness to outliers is important, as it penalizes large deviations less severely than squared norms. The 1-norm plays a critical role in optimization, signal processing, and machine learning, especially in regularization techniques that promote sparsity.

How It Works

Understanding the 1-norm involves breaking down how it computes vector magnitude differently from other norms, focusing on absolute values rather than squared ones.

Comparison at a Glance

Below is a comparison of the 1-norm with other common vector norms:

Norm TypeFormulaExample (Vector [3, −4])Key Feature
1-norm (L1)Σ |xᵢ||3| + |−4| = 7Encourages sparsity, robust to outliers
2-norm (L2)√(Σ xᵢ²)√(9 + 16) = √25 = 5Euclidean distance, smooth optimization
Infinity norm (L∞)max(|xᵢ|)max(3, 4) = 4Measures maximum component
L0 "norm"Count of non-zero entries2 non-zero values → 2Measures sparsity directly, not a true norm
Weighted 1-normΣ wᵢ|xᵢ|w=[1,2], result = 3 + 8 = 11Allows variable penalties per component

This table highlights how the 1-norm differs from alternatives in both calculation and application. While the 2-norm is ideal for geometric accuracy, the 1-norm excels in feature selection and noise resilience, especially in high-dimensional datasets like genomics or text analysis.

Why It Matters

The 1-norm is more than a mathematical curiosity—it has real-world impact across data science, engineering, and statistics. Its ability to induce sparsity makes it indispensable in modern machine learning pipelines.

As data complexity grows, the 1-norm remains a foundational tool for extracting meaningful patterns without overcomplication. Its balance of simplicity, efficiency, and effectiveness ensures continued relevance in both theoretical and applied fields.

Sources

  1. WikipediaCC-BY-SA-4.0

Missing an answer?

Suggest a question and we'll generate an answer for it.