To add vectors that are not at right angles to each other, you typically resolve the vectors into their horizontal and vertical components, add the components separately, and then find the magnitude and direction of the resultant vector.
Here's a breakdown of the process:
1. Resolve Vectors into Components
- Find the x and y components of each vector. This usually involves using trigonometric functions (sine and cosine). If a vector A has a magnitude of |A| and makes an angle θ with the horizontal, then:
- Ax = |A| cos(θ)
- Ay = |A| sin(θ)
2. Add the Components
-
Sum the x-components of all the vectors to get the x-component of the resultant vector (Rx).
-
Sum the y-components of all the vectors to get the y-component of the resultant vector (Ry).
- Rx = Ax + Bx + Cx + ...
- Ry = Ay + By + Cy + ...
3. Find the Magnitude and Direction of the Resultant Vector
-
Calculate the magnitude of the resultant vector (|R|) using the Pythagorean theorem:
- |R| = √(Rx2 + Ry2)
-
Calculate the direction (angle θ) of the resultant vector using the inverse tangent function:
-
θ = arctan( Ry / Rx )
-
Note: Be mindful of the quadrant in which the resultant vector lies to ensure the angle is correct. You might need to add 180° or 360° depending on the signs of Rx and Ry.
-
Example:
Let's say you have two vectors:
- Vector A: Magnitude = 10, Angle = 30°
- Vector B: Magnitude = 15, Angle = 70°
-
Resolve into components:
- Ax = 10 * cos(30°) ≈ 8.66
- Ay = 10 * sin(30°) = 5
- Bx = 15 * cos(70°) ≈ 5.13
- By = 15 * sin(70°) ≈ 14.1
-
Add components:
- Rx = 8.66 + 5.13 ≈ 13.79
- Ry = 5 + 14.1 ≈ 19.1
-
Find magnitude and direction:
- |R| = √(13.792 + 19.12) ≈ 23.54
- θ = arctan(19.1 / 13.79) ≈ 54.15°
Therefore, the resultant vector has a magnitude of approximately 23.54 and an angle of approximately 54.15° with respect to the horizontal.
This method allows you to accurately add vectors at any angle by breaking them down into manageable components and then reconstructing the resultant vector.