Enter the coordinates of two vectors to find their sum. Choose between 2D and 3D vectors.
Vector addition is a fundamental operation in vector algebra. It's used to combine two or more vectors to find a resultant vector. Here's a comprehensive guide on how to perform vector addition:
For two vectors in 2D space \(\vec{a} = (a_x, a_y)\) and \(\vec{b} = (b_x, b_y)\), their sum \(\vec{c}\) is given by:
\[ \vec{c} = \vec{a} + \vec{b} = (a_x + b_x, a_y + b_y) \]For two vectors in 3D space \(\vec{a} = (a_x, a_y, a_z)\) and \(\vec{b} = (b_x, b_y, b_z)\), their sum \(\vec{c}\) is given by:
\[ \vec{c} = \vec{a} + \vec{b} = (a_x + b_x, a_y + b_y, a_z + b_z) \]Where:
Let's add vectors \(\vec{a} = (3, 4)\) and \(\vec{b} = (1, -2)\) in 2D:
Therefore, the sum of \(\vec{a}\) and \(\vec{b}\) is \(\vec{c} = (4, 2)\).
This diagram illustrates the addition of vectors \(\vec{a}\) (blue) and \(\vec{b}\) (green) to form the resultant vector \(\vec{c}\) (red) in 2D space. The resultant vector is the diagonal of the parallelogram formed by the two original vectors.