Vector addition and subtraction (triangle and parallelogram rules)

LVL: FREE

MODULE: Coordinate Geometry and Vectors

[EXEC: MICRO_CORE]

✖️ 1. Geometric addition: The tip-to-tail (triangle) rule and the parallelogram rule

🔺 Triangle Rule (Tip-to-Tail)

  • Place the tail of the second vector at the tip of the first vector.
  • The resultant vector goes from the tail of the first to the tip of the second.
  • Order does not matter: u+v=v+u\mathbf{u} + \mathbf{v} = \mathbf{v} + \mathbf{u}.
  • This is the most common method for adding vectors graphically.

Example: Walk 3 m east then 4 m north. The resultant is 5 m northeast.

💡 Think: Connect arrows head-to-tail like a chain.


▱ Parallelogram Rule

  • Place both vectors tail-to-tail at the same starting point.
  • Complete the parallelogram using the two vectors as adjacent sides.
  • The diagonal from the common tail is the resultant.
  • This gives the same answer as the triangle rule.

Example: Two forces of 3 N and 4 N at right angles form a diagonal of 5 N.

💡 Think: The diagonal cuts the parallelogram in half.

[EXEC: DEEP_COMPUTE]

1. Geometric addition: The tip-to-tail (triangle) rule and the parallelogram rule

Geometric Addition: Triangle and Parallelogram Rules

Vector addition combines two vectors to produce a resultant vector. The triangle rule (tip-to-tail method) places the tail of the second vector at the tip of the first; the resultant connects the tail of the first to the tip of the second. The parallelogram rule places both vectors tail-to-tail, forming adjacent sides of a parallelogram; the resultant is the diagonal from the common tail.

Both methods yield the same resultant vector r=u+v\mathbf{r} = \mathbf{u} + \mathbf{v}.

Core Rules:

  • Triangle rule: Arrange vectors head-to-tail sequentially; the sum spans from the initial tail to the final head.
  • Parallelogram rule: Place vectors tail-to-tail; the diagonal represents the sum.
  • Both methods are equivalent and commutative: u+v=v+u\mathbf{u} + \mathbf{v} = \mathbf{v} + \mathbf{u}.
  • The order of addition does not affect the resultant.

These geometric constructions provide visual insight into vector combination, essential for force diagrams and displacement analysis.

Example: If u\mathbf{u} has magnitude 3 units east and v\mathbf{v} has magnitude 4 units north, the resultant has magnitude 5 units northeast (by the Pythagorean theorem).

TASK_1[0 / 3]
LVL_2
MOD: RELATE

A student is adding vector uu and vector vv. They place the tail of vector vv exactly at the tip of vector uu. Which geometric method are they setting up, and how should they draw the resultant vector rr?

DEEP_COMPUTE
ULTRA
[EXEC: MICRO_CORE]

✖️ 2. Algebraic addition and subtraction using vector components

🧮 Component-Wise Addition

  • Write each vector in component form: u=ux,uy\mathbf{u} = \langle u_x, u_y \rangle and v=vx,vy\mathbf{v} = \langle v_x, v_y \rangle.
  • Add corresponding components: u+v=ux+vx,uy+vy\mathbf{u} + \mathbf{v} = \langle u_x + v_x, u_y + v_y \rangle.
  • Subtraction works the same way: uv=uxvx,uyvy\mathbf{u} - \mathbf{v} = \langle u_x - v_x, u_y - v_y \rangle.
  • This method is faster than drawing diagrams.
  • Works in any dimension (2D, 3D, etc.).

Example: 3,2+1,4=4,6\langle 3, 2 \rangle + \langle 1, 4 \rangle = \langle 4, 6 \rangle.

💡 Think: Add x's together, add y's together.

[EXEC: DEEP_COMPUTE]

2. Algebraic addition and subtraction using vector components

Algebraic Addition and Subtraction Using Components

Vectors expressed in component form allow arithmetic operations on corresponding coordinates. For u=(ux,uy)\mathbf{u} = (u_x, u_y) and v=(vx,vy)\mathbf{v} = (v_x, v_y), addition is performed component-wise: u+v=(ux+vx,uy+vy)\mathbf{u} + \mathbf{v} = (u_x + v_x, u_y + v_y). Subtraction follows similarly: uv=(uxvx,uyvy)\mathbf{u} - \mathbf{v} = (u_x - v_x, u_y - v_y).

This algebraic approach is computationally efficient and extends naturally to three dimensions.

Core Rules:

  • Addition: Add corresponding components separately.
  • Subtraction: Subtract corresponding components separately.
  • Dimension consistency: Vectors must have the same number of components.
  • Operations are performed independently on each coordinate axis.

Component-wise arithmetic transforms geometric problems into straightforward numerical calculations, facilitating analysis in physics and engineering.

Example: If u=(3,2)\mathbf{u} = (3, 2) and v=(1,4)\mathbf{v} = (1, 4), then u+v=(4,6)\mathbf{u} + \mathbf{v} = (4, 6) and uv=(2,2)\mathbf{u} - \mathbf{v} = (2, -2).

TASK_1[0 / 3]
LVL_2
EXEC: ALGORITHM

Given vector u=(4,1)u = (4, -1) and vector v=(2,5)v = (2, 5), calculate the sum u+vu + v.

DEEP_COMPUTE
ULTRA
[EXEC: MICRO_CORE]

✖️ 3. Geometric subtraction: uv\mathbf{u} - \mathbf{v} as adding the opposite vector

↩️ Subtracting Vectors Geometrically

  • Subtracting v\mathbf{v} is the same as adding v-\mathbf{v}.
  • The vector v-\mathbf{v} has the same length but opposite direction.
  • Use tip-to-tail: place v-\mathbf{v} at the tip of u\mathbf{u}.
  • Alternatively: draw both vectors from the same point; uv\mathbf{u} - \mathbf{v} points from the tip of v\mathbf{v} to the tip of u\mathbf{u}.

Example: If u=5,3\mathbf{u} = \langle 5, 3 \rangle and v=2,1\mathbf{v} = \langle 2, 1 \rangle, then uv=3,2\mathbf{u} - \mathbf{v} = \langle 3, 2 \rangle.

💡 Think: Flip the arrow, then add.

[EXEC: DEEP_COMPUTE]

3. Geometric subtraction: uv\mathbf{u} - \mathbf{v} as adding the opposite vector

Geometric Subtraction: Adding the Opposite Vector

Vector subtraction uv\mathbf{u} - \mathbf{v} is defined as adding the opposite (negative) of v\mathbf{v}: uv=u+(v)\mathbf{u} - \mathbf{v} = \mathbf{u} + (-\mathbf{v}). The vector v-\mathbf{v} has the same magnitude as v\mathbf{v} but points in the exact opposite direction.

Geometrically, this is visualized using the triangle rule: place v-\mathbf{v} tail-to-tail with u\mathbf{u}, and the resultant connects the tail of u\mathbf{u} to the tip of v-\mathbf{v}.

Core Rules:

  • Negation: v-\mathbf{v} reverses the direction of v\mathbf{v} while preserving magnitude.
  • Subtraction as addition: uv=u+(v)\mathbf{u} - \mathbf{v} = \mathbf{u} + (-\mathbf{v}).
  • The difference vector points from the tip of v\mathbf{v} to the tip of u\mathbf{u} when both are placed tail-to-tail.

This interpretation is crucial for computing relative positions and displacements.

Example: If u=(5,3)\mathbf{u} = (5, 3) and v=(2,1)\mathbf{v} = (2, 1), then v=(2,1)-\mathbf{v} = (-2, -1) and uv=(3,2)\mathbf{u} - \mathbf{v} = (3, 2).

TASK_1[0 / 3]
LVL_2
EXEC: ALGORITHM

Given the vector v=(4,7)v = (4, -7), what is the opposite vector v-v?

DEEP_COMPUTE
ULTRA
[EXEC: MICRO_CORE]

✖️ 4. Applications: Finding the net resultant force acting on an object or calculating relative velocity (e.g., a plane flying in a crosswind)

🛩️ Real-World Vector Addition

  • Net force: Add all force vectors acting on an object to find the resultant.
  • Relative velocity: Subtract velocities to find motion relative to another object.
  • A plane's ground velocity = plane's air velocity + wind velocity.
  • Use components for accuracy: break each vector into x and y parts.
  • The magnitude of the resultant is found using the Pythagorean theorem.

Example: Plane flies 200 km/h east, wind blows 50 km/h north. Resultant speed is approximately 206 km/h northeast.

💡 Think: Combine all pushes and pulls into one.

[EXEC: DEEP_COMPUTE]

4. Applications: Finding the net resultant force acting on an object or calculating relative velocity (e.g., a plane flying in a crosswind)

Applications: Resultant Forces and Relative Velocities

Vector addition and subtraction model physical scenarios where multiple influences combine. The net resultant force on an object is the vector sum of all individual forces acting on it, determining the object's acceleration via Newton's second law. Relative velocity describes motion of one object as observed from another's reference frame, computed by subtracting velocity vectors.

These applications are fundamental in mechanics, navigation, and engineering.

Core Rules:

  • Resultant force: Fnet=F1+F2++Fn\mathbf{F}_{\text{net}} = \mathbf{F}_1 + \mathbf{F}_2 + \cdots + \mathbf{F}_n.
  • Relative velocity: vA/B=vAvB\mathbf{v}_{A/B} = \mathbf{v}_A - \mathbf{v}_B (velocity of AA relative to BB).
  • Use component-wise addition for computational efficiency.
  • Geometric methods provide intuitive visualization of combined effects.

Accurate vector analysis enables prediction of trajectories, equilibrium conditions, and optimal navigation paths.

Example: A plane flies at 200 km/h east; a crosswind blows at 50 km/h north. The resultant ground velocity is approximately 206 km/h at 14 degrees north of east.

TASK_1[0 / 3]
LVL_2
EXEC: ALGORITHM

Two forces act on an object. Force 1 has an x-component of 1515 Newtons and a y-component of 4-4 Newtons. Force 2 has an x-component of 6-6 Newtons and a y-component of 1010 Newtons.

What is the x-component of the net resultant force in Newtons?

DEEP_COMPUTE
ULTRA

AWAITING_CONFIRMATION

CONFIRM KNOWLEDGE ACQUISITION TO UPDATE SYSTEM ANALYTICS.