🌐
Wolfram MathWorld
mathworld.wolfram.com › L2-Norm.html
L^2-Norm -- from Wolfram MathWorld
July 26, 2003 - However, this terminology is not recommended since it may cause confusion with the Frobenius norm (a matrix norm) is also sometimes called the Euclidean norm. The -norm of a vector is implemented in the Wolfram Language as Norm[m, 2], or more simply as Norm[m].
length in a vector space
In mathematics, a norm is a function from a real or complex vector space to the non-negative real numbers that behaves in certain ways like the distance from the origin: it commutes … Wikipedia
🌐
Wikipedia
en.wikipedia.org › wiki › Norm_(mathematics)
Norm (mathematics) - Wikipedia
March 5, 2026 - The concept of unit circle (the set of all vectors of norm 1) is different in different norms: for the 1-norm, the unit circle is a square oriented as a diamond; for the 2-norm (Euclidean norm), it is the well-known unit circle; while for the infinity norm, it is an axis-aligned square.
🌐
University of Texas
cs.utexas.edu › ~flame › laff › alaff › chapter01-vector-2-norm.html
ALAFF The vector 2-norm (Euclidean length)
The length of a vector is most commonly measured by the "square root of the sum of the squares of the elements," also known as the Euclidean norm. It is called the 2-norm because it is a member of a class of norms known as \(p\)-norms, discussed in the next unit.
🌐
Kickstarter
kickstarter.com › projects › normdenmark › norm-2-less-screen-more-life
NORM 2 - Less screen, more life by Norm Denmark — Kickstarter
February 3, 2026 - Norm Denmark is raising funds for NORM 2 - Less screen, more life on Kickstarter! Following the success of NORM 1, NORM 2 is a stunning featurepacked smartwatch with “hidden” display. Combining functionality and style
🌐
CodingNomads
codingnomads.com › what-is-l2-norm
What is L2 Norm?
Here, you see the generalized form of the Lp-norm. When P=2, you get the Euclidean norm or L2-norm; when P=1, you get the Manhattan norm or L1-norm.
🌐
ISO
iso.org › home.html
ISO - International Organization for Standardization
Edition 2 2025-02 · ISO 37001:2025 · Anti-bribery management systems — Requirements with guidance for use · Reference number ISO/IEC 27001:2022 · International Standard · ISO/IEC 27001:2022 · Information security, cybersecurity and privacy ...
🌐
ScienceDirect
sciencedirect.com › topics › engineering › euclidean-norm
Euclidean Norm - an overview | ScienceDirect Topics
Vector norms A scalar measure of ... = 1, ||X|| is the sum of the magnitudes of the elements, p = 2, ||X|| is Euclidean norm or square root of the sum of the squares of the magnitudes of the elements,...
Find elsewhere
🌐
Varsity Tutors
varsitytutors.com › practice › subjects › linear-algebra › help › norms
Norms - Linear Algebra Help | Practice Hub
To find the norm, square each component, add, then take the square root: 2 · True or false: is a unit vector regardless of the value of . True · False · is a unit vector if and only if · , the norm, or length, of can be found by adding the squares of the entries and taking the square root ...
🌐
NORM Denmark
normdenmark.com › en-us › collections › norm-2
The Norm Two
The Norm Two is a full-featured smartwatch, built into a refined 42mm stainless steel case with mechanical hands, a hidden inner display, and a tactile scroll crown. The screen stays off until needed. The rest speaks for itself. Available in Black, Rose, and Stainless Steel—each paired with ...
🌐
MathWorks
mathworks.com › matlab › mathematics › linear algebra
norm - Vector and matrix norms - MATLAB
If p = 1, then the resulting 1-norm is the sum of the absolute values of the vector elements. If p = 2, then the resulting 2-norm gives the vector magnitude or Euclidean length of the vector.
🌐
NDTV
ndtv.com › home › india news › rajasthan to drop 2-child norm, but only for candidates in local bodies polls
Rajasthan To Drop 2-Child Norm, But Only For Candidates In Local Bodies Polls
1 month ago - The Rajasthan government has done away with the two-child norm for candidates in panchayat and municipal elections in the state - a law introduced by the Bhairon Singh Shekhawat government in 1995 to control the state's population.
Top answer
1 of 4
17

OK let's see if this helps you. Suppose you have two functions $f,g:[a,b]\to \mathbb{R}$. If someone asks you what is distance between $f(x)$ and $g(x)$ it is easy you would say $|f(x)-g(x)|$. But if I ask what is the distance between $f$ and $g$, this question is kind of absurd. But I can ask what is the distance between $f$ and $g$ on average? Then it is $$ \dfrac{1}{b-a}\int_a^b |f(x)-g(x)|dx=\dfrac{||f-g||_1}{b-a} $$ which gives the $L^1$-norm. But this is just one of the many different ways you can do the averaging: Another way would be related to the integral $$ \left[\int_a^b|f(x)-g(x)|^p dx\right]^{1/p}:=||f-g||_{p} $$ which is the $L^p$-norm in general.

Let us investigate the norm of $f(x)=x^n$ in $[0,1]$ for different $L_p$ norms. I suggest you draw the graphs of $x^{p}$ for a few $p$ to see how higher $p$ makes $x^{p}$ flatter near the origin and how the integral therefore favors the vicinity of $x=1$ more and more as $p$ becomes bigger. $$ ||x||_p=\left[\int_0^1 x^{p}dx\right]^{1/p}=\frac{1}{(p+1)^{1/p}} $$ The $L^p$ norm is smaller than $L^m$ norm if $m>p$ because the behavior near more points is downplayed in $m$ in comparison to $p$. So depending on what you want to capture in your averaging and how you want to define `the distance' between functions, you utilize different $L^p$ norms.

This also motivates why the $L^\infty$ norm is nothing but the essential supremum of $f$; i.e. you filter everything out other than the highest values of $f(x)$ as you let $p\to \infty$.

2 of 4
15

There are several good answers here, one accepted. Nevertheless I'm surprised not to see the $L^2$ norm described as the infinite dimensional analogue of Euclidean distance.

In the plane, the length of the vector $(x,y)$ - that is, the distance between $(x,y)$ and the origin - is $\sqrt{x^2 + y^2}$. In $n$-space it's the square root of the sum of the squares of the components.

Now think of a function as a vector with infinitely many components (its value at each point in the domain) and replace summation by integration to get the $L^2$ norm of a function.

Finally, tack on the end of last sentence of @levap 's answer:

... the $L^2$ norm has the advantage that it comes from an inner product and so all the techniques from inner product spaces (orthogonal projections, etc) can be applied when we use the $L^2$ norm.

🌐
North East
northeastshop.com › products › norm-dimension-df-two
Norm: Dimension of Two | North East
While producing innovative typefaces, books, posters, and corporate designs, the studio also pursues research projects that explore the limits of graphic design. ‘Dimension of Two’ accompanies Norm’s first museum exhibition, “It’s Not Complicated”, at the Museum of Design Zurich.
Top answer
1 of 2
1

The first point is proven as follows.

From the SVD of $A = UDV^T$ we can see that eigenvalues of $A^TA = VD^2V^T$ are just squared ones from $A$. At the same time the columns of $V$ are the eigenvectors of $A^TA$. So, exploiting orthogonality of eigenvectors

$$\|Ax\|_2^2 = \|UDVx\|_2^2 = \|D\left(Vx\right)\|_2^2 = \|De_{\lambda}\|x\|\|_2^2 = \|\sqrt{\lambda}\|x\|\|_2^2= \lambda\|x\|^2$$

The proof is based on the property of the second matrix norm

$${\displaystyle \|A\|_{2}={\sqrt {\lambda _{\max }(A^{^{T}}A)}}}$$. $${\displaystyle \|A^{^{T}}A\|_{2}={\sqrt {\lambda _{\max }(A^{^{T}}AA^{^{T}}A)}}}.$$

The same reasoning from the first point says that the eigenvalues of $A^{^{T}}AA^{^{T}}A$ are just the ones of $A^{^{T}}A$ being squared. So $${\displaystyle \|A\|_{2}={\sqrt {\lambda _{\max }(A^{^{T}}A)}}}$$ $${\displaystyle \|A^{^{T}}A\|_{2}={\sqrt {\lambda _{\max }(A^{^{T}}AA^{^{T}}A)}}} = {\sqrt {\lambda _{\max }^2(A^{^{T}}A)}} = \vert\lambda _{\max }(A^{^{T}}A)\vert = \lambda_{\max}(A^TA)=\max(\lambda_{\min}^2(A),\lambda_{\max}^2(A)) \ge \|A\|_{2}^2 $$

Edit

The inequality becomes after the notion that $\lambda_{\max}(A^TA)=\max(\lambda_{\min}^2(A),\lambda_{\max}^2(A))$, because eigenvalues of $A$ could be negative.

2 of 2
1

For the problem $(2)$, we have the following:

By definition of 2-norm of a matrix, $\|A\|_2=\underset{\|x\|_2=1}{max}\|Ax\|_2$ , where $x \in \mathbb{R^n}$, $A$ is a $m \times n$ matrix and $Ax \in \mathbb{R^m}$.

Also, by SVD, $A=U\Sigma V^T$, where $U, V$ are $m \times n$ and $n \times n$ unitary (orthonormal) matrices, respectively, and $\Sigma=\begin{bmatrix} \sigma_0 & 0 & \ldots & 0 & \ldots\\ 0 & \sigma_1 & \ldots & 0 & \ldots \\ 0 & 0 & \ldots & 0 & \ldots \\ 0 & 0 & \ldots & \sigma_{n-1} & \ldots \\ \ldots & \ldots & \ldots & \ldots & \ldots \end{bmatrix}$, a $m \times n$ diagonal matrix with $\sigma_0 \geq \sigma_1 \geq \ldots \geq \sigma_n > 0$, with $\sigma_i$ being the singular values of the matrix $A$.

Now, $A^TA=V\Sigma U^TU\Sigma V^T=V\Sigma^2 U^T$, where $U, V$ are unitary with $U^TU=V^TV=I$.

Also, unitary matrices preserves norms, i.e., $\|Ux\|_2=\|x\|_2$ for a unitary matrix $U$.

Hence, By definition of 2-norm,

$\begin{array} \\ \|A^TA\|_2&=&\underset{\|x\|_2=1} {max}\|A^TAx\|_2 \\ &=&\underset{\|x\|_2=1} {max}\|V\Sigma^2U^Tx\|_2 \\ &=&\underset{\|x\|_2=1} {max}\|\Sigma^2U^Tx\|_2 \text{ (since V is unitary, hence norm-preserving)} \\ &=&\underset{\|x\|_2=1} {max}\|\Sigma^2x\|_2 \text{ (since U is unitary)} \\ &=& \sum_{i=0}^{n-1}\sigma_i^2x_i^2 \\ &\leq& \sum_{i=0}^{n-1}\sigma_0^2x_i^2 \text{ (since $\sigma_0 \geq \sigma_i$, $\forall{i}$)}\\ &=& \sigma_0^2\sum_{i=0}^{n-1}x_i^2 \\ &=& \sigma_0^2 \text{ (since $\|x\|_2=1$)} \end{array}$

Also, for a specific $x=e_0=\begin{bmatrix}1\\0\\.\\.\\.\\0\\0\end{bmatrix} \in \mathbb{R}^n$,

$\begin{array} \\ \|A^TA\|_2&=&\underset{\|x\|_2=1} {max}\|A^TAx\|_2 \\ &=&\underset{\|x\|_2=1} {max}\|\Sigma^2x\|_2 \\ &\geq& \|\Sigma^2e_0\|_2 \\ &=& \sigma_0^2 \end{array}$

Hence, combining the above two, $\|A^TA\|_2=\sigma_0^2$

Also, from here, we have, $\|A\|_2=\sigma_0$, the largest singular value.

🌐
NORM Denmark
normdenmark.com › products › the-norm-two
The Norm Two - Black
What is the size and weight of the NORM 2 The NORM 2 has a 42 mm case width and a 11 mm case thickness in black metal. On the back, the sensor area curves out by an additional 2 mm, and the total weight of the watch is 70 g. How is the battery ...
🌐
NORMS
norms.com › home › norms menu
NORMS 24 Hour Casual Dining Menu - NORMS Restaurants
1 week ago - Free Root Beer Refills. 220 Cal. ‡ No Refills ... Served all day, every day, for our guests 10 and under. ... Two Hotcakes and one Egg served with choice of two Bacon strips, two Turkey Bacon strips, two Link Sausages, or one Turkey Sausage Patty. 580-720 Cal.
🌐
Wiley Online Library
bpspsychub.onlinelibrary.wiley.com › doi › 10.1111 › bjso.70057
Dynamic norms as a tool for social change: How dynamic norms can revert controversial political decision‐making related to Brexit - Eraslan - 2026 - British Journal of Social Psychology - Wiley Online Library
March 8, 2026 - We tested the effects of dynamic norm messages (emphasizing norms are changing over time) versus static norm messages (simply stating the norm) and a no-norm control condition on collective action intentions to stop Brexit among Remainers and Brexiteers across one pilot and two main experiments (Pilot 1 N = 150, Main Experiment 1 N = 750, Main Experiment 2 = 600) with British adults.
🌐
MathWorks
mathworks.com › matlabcentral › answers › 126457-what-is-norm-2-function
What is norm 2 function ? - MATLAB Answers - MATLAB Central
April 20, 2014 - n = norm(X) returns the 2-norm of input X and is equivalent to norm(X,2). If X is a vector, this is equal to the Euclidean distance.