Calculating the length (norm) of a vector [duplicate]
How do you interpret this equation? I've seen far simpler equations for solving the magnitude, like the square root of all of the elements of a vector squared added to one another. What exactly is going on with the Greek symbol in that equation? Is there something I'm missing?
[vector magnitude calculation][1]
$\endgroup$ 32.6 The lenght (norm) of a vector
The lenght ( or norm ) of a vector a is:$$\left\|{a}\right\|=\sqrt{aa}=\sqrt{\sum_{i=1}^n a_i^2}$$
2 Answers
$\begingroup$Perhaps you're just confused about the notation, $$\sqrt{\sum_{i=1}^n a^2_i} = \sqrt{a^2_1 + a^2_2 \ldots a^2_{n-1} + a^2_n}$$
This is an easy way to generalise the norm for n-dimensional vectors.
$\endgroup$ 2 $\begingroup$The Greek symbol is the capital letter sigma $\Sigma$. In mathematics, it is used to denote a sum. For example, $$\sum_{i=1}^na_i^2$$ means you are summing starting from $i=1$ (the number under the sigma) and adding all the numbers with indices up to some value $n$ (the number on top of the sigma). As an example, let $(a_1, a_2, a_3)=(3,4,5)$. We could write the norm of this vector as $$\sqrt{\sum_{i=1}^3a_i^2}=\sqrt{a_1^2+a_2^2+a_3^2}=\sqrt{3^2+4^2+5^2}=\sqrt{50}$$
As an interesting aside, there is a similar notation used for the product of a set of numbers. Instead of sigma (for a summation), we write pi (for a product). So $$\prod_{i=1}^na_i$$ is the product of the numbers $a_1, a_2, ..., a_n$
$\endgroup$ 0