Skip Ahead:
Main Vector Page |
x-axis Vector Addition |
y-axis Vector Addition |
2D Vector Addition |
3D Vector Addition
Vector Addition
Vector Addition in 1D x-axis
Vector Addition involves calculating the sum of vectors. This is done by adding together the vector components of each individual vector and once the result is obtained, those components are now the components of the new vector that is equal to the sum of the vectors.
Below is a simulation of vector addition in the x-axis. There is a red vector of variable magnitude and angle, because this vector is dependent upon the movement of your mouse over the purple sum vector. This vector is added to a blue vector of magnitude 11, however at an angle of 180 degrees. The x-axis component of the red vector is added to the x-axis component of the blue vector which is -11, because the blue vector is pointing in the negative direction. The new vector, which is purple, now has a magnitude based on the x-axis component of the red vector plus the x-axis component of the blue vector. The purple vector, as you drag your mouse, therefore has a variable magnitude and angle based on the sum of the blue and red vectors.
The vectors in the simulation can be represented in numerous ways. Here are the three most common ways of portraying them:
\[ \vec{A} = \begin{bmatrix} \hat{i} & \hat{j} & \hat{k} \\ 23 & 0 & 0 \end{bmatrix} \]
or
\[ \vec{A} = 23\hat{i} + 0\hat{j} + 0\hat{k} \]
or
\[ \vec{A} = \langle 23, 0, 0 \rangle \]
and
\[ \vec{B} = \begin{bmatrix} \hat{i} & \hat{j} & \hat{k} \\ -11 & 0 & 0 \end{bmatrix} \]
or
\[ \vec{B} = -11\hat{i} + 0\hat{j} + 0\hat{k} \]
or
\[ \vec{B} = \langle -11, 0, 0 \rangle \]
Vector Addition can be calculated using the following equations:
\[ \vec{A} + \vec{B} = \langle A_x + B_x, A_y + B_y, A_z + B_z \]
or
\[ \vec{A} + \vec{B} = (A_x + B_x)\hat{i} + (A_y + B_y)\hat{j} + (A_z + B_z)\hat{k} \]
Now let's see what happens when we add the red and blue vectors:
\[ \vec{A} = 23\hat{i} + 0\hat{j} + 0\hat{k} \]
\[ \vec{B} = -11\hat{i} + 0\hat{j} + 0\hat{k} \]
\[ \vec{A} + \vec{B} = \langle 23 + -11, 0 + 0, 0 + 0 \rangle \]
\[ \vec{A} + \vec{B} = \langle 12, 0, 0 \rangle \]
\[ \vec{C} = \langle 12, 0, 0 \rangle \]
or
\[ \vec{A} + \vec{B} = (23 + -11)\hat{i} + (0 + 0)\hat{j} + (0 + 0)\hat{k} \]
\[ \vec{A} + \vec{B} = (12)\hat{i} + (0)\hat{j} + (0)\hat{k} \]
\[ \vec{C} = 12\hat{i} + 0\hat{j} + 0\hat{k} \]
As we can see from the formula, when we add together the components of the red vector and the blue vector, we get new vector components as a result, which become the vector components for the purple vector, which is the sum of the red and blue vectors.
Go Back to Vector Page y-axis Vector Addition