Skip Ahead:

Main Vector Page | x-axis Vector Components | y-axis Vector Components | 2D Vector Components | 3D Vector Components

Vector Components

Vector Components in 1D y-axis

Vector Components are smaller vectors that help split an angled vector towards the coordinate axes in a two and three dimensional coordinate system.

In the simulation below, you can see a vector of variable magnitude based on the movement of your mouse over the simulation. Notice how the y-axis component length of the vector is positive, when it has an angle of 90, and a direction to the north, whereas the y-axis component length of the vector is negative when it has an angle of 270 and a direction to the south. The numerical value for the magnitude (length) regardless whether or not it is pointing in the positive or negative direction, is always a positive scalar. Notice also how only the y-axis components change, whereas the x-axis component length of the vector is 0. Since the vector is solely on the y-axis, that also means that all other vector components are 0.



A vector and its vector components can be represented in numerous ways. (Note that in this simulation we have positive and negative directions). Here are the three most common ways of portraying them:


\[ \vec{B} = \begin{bmatrix} \hat{i} & \hat{j} & \hat{k} \\ 0 & -9 & 0 \end{bmatrix} \]

or

\[ \vec{B} = 0\hat{i} - 9\hat{j} + 0\hat{k} \]

or

\[ \vec{B} = \langle 0, -9, 0 \rangle \]


and

\[ \vec{B} = \begin{bmatrix} \hat{i} & \hat{j} & \hat{k} \\ 0 & 17 & 0 \end{bmatrix} \]

or

\[ \vec{B} = 0\hat{i} + 17\hat{j} + 0\hat{k} \]

or

\[ \vec{B} = \langle 0, 17, 0 \rangle \]


Vector Components in the y-axis can be calculated using the following equations:


\[ \sin(\theta) = \frac{\text{Opposite Side}}{\text{Hypotenuse}} = \frac{v_y}{v} \]

or

\[ v_y = v \sin(\theta) \]


Now let's see what happens when we use the numbers chosen:


\[ v_y = 9 \sin(270) \]

\[ v_y = 9 \cdot (-1) \]

\[ v_y = -9 \]


\[ v_y = 17 \sin(90) \]

\[ v_y = 17 \cdot 1 \]

\[ v_y = 17 \]


In the first case, we take the vector to have a magnitude of 9, but pointing in the negative direction, with an angle of 270 degrees. Following the formula, we get that the y-axis component of the vector is -9. Similarly, in the second case, we take the vector to have a magnitude of 17, but pointing in the positive direction, with an angle of 90 degrees. Following the formula, we get that the y-axis component of the vector is 17. Both these results make sense when we look back at the simulation.


The magnitude (length) of the vector once you know the vector components of the vector can be calculated by the following equation:


\[ |\vec{v}| = \sqrt{v_x^2 + v_y^2} \]


Let's calculate the magnitude of the vector in the simulation:


\[ |\vec{v}| = \sqrt{0^2 + -9^2} \]

\[ |\vec{v}| = \sqrt{0 + 81} \]

\[ |\vec{v}| = \sqrt{81} \]

\[ |\vec{v}| = 9 \]


\[ |\vec{v}| = \sqrt{0^2 + 17^2} \]

\[ |\vec{v}| = \sqrt{0 + 289} \]

\[ |\vec{v}| = \sqrt{289} \]

\[ |\vec{v}| = 17 \]


As we can see from the formula, regardless if a vector component is positive or negative, the component number value gets squared, making it a positive number. Solving the rest of the equation, we find the magnitude, is a positive scalar, which is 9 and 17 above, which is correct.




Go Back to x-axis Vector Components 2D Vector Components