[Math] How is the binomial expansion of the vectors

binomial theoremvectors

I'm trying to find out if there is an attempt to define binomial expansion of vectors. i.e

$$(\overrightarrow a + \overrightarrow b)^n = ?? $$

I tried to google around this (e.g : binomial expansion of vectors), but simple searches do not give any useful keywords as how this approach is named.

I'm trying to visualize how the following generalization goes. When two vectors are on the number line (one dimension), their sum is just the magnitude addition and the result is simply lying in the same number line. When the lines lie in general two dimensional space their 'sum' is equivalent to the square of the magnitude of their vector sum (which is essentially the binomial expansion of $(a + b)^2$ ).

So how is the interpretation of $ (a+b)^3 $? Definitely it is not related to the 'normal' vector sum of the two vectors in 3d (that would be simply $(a + b)^2$).

Best Answer

In order to calculate the expansion, you need to be able to do both addition and multiplication, and both of these operations need to return another "vector". The fancy mathematical way to say this is that the objects $a$ and $b$ need to belong to a ring (which is just a structure that has addition and multiplication operations).

In order for the formula to be true (as opposed to merely making sense), you need to be in an algebraic structure that has commutative addition and multiplication operations (like a commutative ring). Without commutativity, even the $n=2$ formula is not true -- you get $(a+b)^2 = a^2 + ab+ba+b^2$, and the right-hand side isn't necessarily equal to $a^2 + 2ab+b^2$.

Vectors (in the usual sense of the word) don't have a commutative (or even associative) multiplication operation, so the expansion doesn't even make sense. You can interpret $(a+b)^2$ as a dot product: $(a+b)\cdot(a+b)$. This works, but it gives you a scalar. So then what is $(a+b)^3$? You could say that it's the product of the scalar $(a+b)^2$ and the vector $(a+b)$, but this process doesn't seem to lead to anything useful.

See also this question.

Related Question