Vector Addition Calculator
Add vectors by components or by magnitude and direction, and get the resultant with its angle
Adding Vectors in Component Form
A vector carries a size and a direction, so it is stored as components — how far across, how far up:
Add the parts together and the parts together, and never mix the two. In 3D there is simply a third slot: .
The result is called the resultant. Its size comes from Pythagoras:
and its direction from , measured anticlockwise from the positive -axis. Because only returns angles between and , add whenever is negative.
Components are what make vectors easy: two directions that would be awkward to combine geometrically become two ordinary sums of numbers. Any number of vectors can be added at once by totalling each column, and the order you add them in never matters.
Magnitude and Direction: Convert First
A vector given as " at " cannot be added directly. Break each one into components, add, then convert back:
So at becomes .
Do this for every vector, sum the columns, and rebuild the magnitude and angle from the totals. Three things to watch:
- Degree mode, unless the angle is genuinely in radians.
- Signs come from the quadrant. At , cosine is negative, so .
- Keep the unrounded components through the addition and round only the final magnitude and angle.
The Triangle Rule, Subtraction, and the Big Mistake
Drawn on paper, adding vectors is tip to tail: place the start of at the end of , and the resultant runs from the very start to the very end. Order does not matter, , which is why the parallelogram picture works too.
Subtraction is adding the reverse. : negate every component of , then add as usual.
The big mistake is adding the magnitudes. A vector of size plus a vector of size almost never gives — that only happens if they point the same way. At right angles the result is , and pointing opposite ways it is . The resultant of two vectors always lies between and .
A quick check on any resultant: it must be no longer than the two lengths added together, and no shorter than their difference. If your answer falls outside that window, a sign or an angle has gone astray somewhere in the components.
示例题目
常见问题
Only if they point in exactly the same direction. A vector of size 5 added to one of size 8 gives 13 only when they are parallel; at right angles the resultant is about 9.43, and pointing opposite ways it is 3. Always add components, not lengths.
It is the single vector that has the same effect as all the vectors added together — the arrow drawn from the start of the first to the tip of the last when they are placed tip to tail. In components, it is just the sum of each coordinate.
Negate every component of the vector being subtracted and then add. For (3, 4) - (-1, 6), flip the second to (1, -6) and add: (3 + 1, 4 - 6) = (4, -2). Geometrically this reverses that arrow before joining it tip to tail.
Use x = magnitude x cos(angle) and y = magnitude x sin(angle), with the angle measured anticlockwise from the positive x-axis and the calculator in degree mode. To go back, magnitude = sqrt(x^2 + y^2) and angle = arctan(y/x), adding 180 degrees when x is negative.
相关求解器
免费试用 AI-Math
任何数学问题都能获得分步解答。拍照上传或输入问题即可。
开始解题