Blog Posts

Vector Algebra

馃搻 Chapter 10: Vector Algebra

1. Introduction

In physics and engineering, some quantities are described completely just by their magnitude (a number), while others need both magnitude and direction to be fully described. This chapter builds the mathematics for handling the second type.

  • Scalar quantities: Have only magnitude. Examples: mass, distance, speed, time, temperature.
  • Vector quantities: Have both magnitude and direction. Examples: displacement, velocity, force, acceleration.

2. Basic Definitions

Vector: A directed line segment. If it starts at point A and ends at point B, it is written as AB (with an arrow on top), where A is the initial point and B is the terminal point.

Magnitude of a vector: The length of the line segment AB, denoted |AB| or |a|. It is always a non-negative real number.

Position vector: The vector OP joining the origin O to any point P(x, y, z) is called the position vector of P. Its magnitude is:

|OP| = √(x² + y² + z²)

Direction cosines: If a vector makes angles 伪, 尾, 纬 with the positive x, y, z axes respectively, then cos 伪, cos 尾, cos 纬 are called its direction cosines, usually denoted l, m, n.

l² + m² + n² = 1

Direction ratios: Numbers a, b, c proportional to the direction cosines l, m, n of a vector are called direction ratios.

3. Types of Vectors

Type Definition
Zero vector (Null vector)A vector with magnitude zero, initial and terminal points coincide. Denoted 0.
Unit vectorA vector with magnitude 1. Unit vector along a is 芒 = a / |a|.
Coinitial vectorsTwo or more vectors having the same initial point.
Collinear vectorsVectors that are parallel to the same line, regardless of magnitude or direction.
Equal vectorsVectors having the same magnitude and same direction.
Negative of a vectorA vector with the same magnitude but opposite direction, e.g. −a.

4. Algebra of Vectors

(a) Addition of Vectors

Triangle Law: If two vectors are represented in magnitude and direction by two sides of a triangle taken in order, their sum (resultant) is represented by the third side taken in the opposite order.

AB + BC = AC

Parallelogram Law: If two vectors are represented by two adjacent sides of a parallelogram, their sum is represented by the diagonal of the parallelogram passing through their common point.

Properties of vector addition:

  • Commutative: a + b = b + a
  • Associative: (a + b) + c = a + (b + c)
  • Additive identity: a + 0 = a
  • Additive inverse: a + (−a) = 0

(b) Multiplication of a Vector by a Scalar

If a is a vector and 位 is a scalar, then 位a is a vector whose magnitude is |位||a|, in the same direction as a if 位 > 0, and opposite direction if 位 < 0.

(c) Position Vector: Section Formula

If P divides the line segment joining A(a) and B(b) internally in the ratio m : n, then position vector of P is:

r = (m·b + n·a) / (m + n)

For the midpoint (m = n = 1):

r = (a + b) / 2

5. Components of a Vector

Let i, j, k be unit vectors along the x, y, z axes. Any vector r with components x, y, z can be written as:

r = xi + yj + zk

Magnitude: |r| = √(x² + y² + z²)

If A(x₁, y₁, z₁) and B(x₂, y₂, z₂) are two points, then:

AB = (x₂−x₁)i + (y₂−y₁)j + (z₂−z₁)k

|AB| = √[(x₂−x₁)² + (y₂−y₁)² + (z₂−z₁)²]

6. Product of Two Vectors

(a) Scalar (Dot) Product

The scalar product of two nonzero vectors a and b is defined as:

a · b = |a||b| cos 胃

where 胃 is the angle between a and b (0 ≤ 胃 ≤ 蟺).

Properties:

  • a · b = b · a (commutative)
  • a · (b + c) = a · b + a · c (distributive)
  • a · a = |a|²
  • i · i = j · j = k · k = 1
  • i · j = j · k = k · i = 0
  • If a = a₁i + a₂j + a₃k and b = b₁i + b₂j + b₃k, then a · b = a₁b₁ + a₂b₂ + a₃b₃

Angle between two vectors:

cos 胃 = (a · b) / (|a||b|)

Projection of a on b:

Projection = (a · b) / |b|

馃挕 Note: If a · b = 0 and neither a nor b is the zero vector, then a and b are perpendicular (orthogonal).

(b) Vector (Cross) Product

The vector product of two nonzero, non-parallel vectors a and b is a vector whose magnitude is:

|a × b| = |a||b| sin 胃

and whose direction is perpendicular to both a and b, given by the right-hand rule.

Properties:

  • a × b = −(b × a) (not commutative)
  • a × (b + c) = a × b + a × c (distributive)
  • i × i = j × j = k × k = 0
  • i × j = k, j × k = i, k × i = j

Determinant formula: If a = a₁i + a₂j + a₃k and b = b₁i + b₂j + b₃k, then:

a × b = determinant of the matrix with rows [i, j, k], [a₁, a₂, a₃], [b₁, b₂, b₃]

Applications:

  • If a × b = 0 and a, b are nonzero, then a and b are parallel (or collinear).
  • Area of a triangle with adjacent sides a and b: (1/2)|a × b|
  • Area of a parallelogram with adjacent sides a and b: |a × b|
  • Area of a parallelogram with diagonals d₁ and d₂: (1/2)|d₁ × d₂|

7. Important Formula Summary

Concept Formula
Unit vector along a芒 = a / |a|
Section formula (internal)r = (mb + na)/(m+n)
Dot producta·b = |a||b|cos胃 = a₁b₁+a₂b₂+a₃b₃
Cross product magnitude|a×b| = |a||b|sin胃
Angle between vectorscos胃 = (a·b)/(|a||b|)
Area of triangle(1/2)|a×b|
Area of parallelogram|a×b|

8. Solved Examples

✏️ Example 1: Find the unit vector in the direction of a = 2i + 3j − 6k.

Solution: |a| = √(4+9+36) = √49 = 7

芒 = (2i + 3j − 6k)/7 = (2/7)i + (3/7)j − (6/7)k

✏️ Example 2: Find a · b if a = i − 2j + 3k and b = 3i − 2j + k.

Solution: a · b = (1)(3) + (−2)(−2) + (3)(1) = 3 + 4 + 3 = 10

✏️ Example 3: Find the area of a triangle with adjacent sides a = i − j + 3k and b = 2i − 7j + k.

Solution: a × b = i(−1×1 − 3×(−7)) − j(1×1 − 3×2) + k(1×(−7) − (−1)×2)

= i(−1+21) − j(1−6) + k(−7+2) = 20i + 5j − 5k

|a × b| = √(400+25+25) = √450 = 15√2

Area = (1/2)(15√2) = (15√2)/2 sq. units

9. Quick Revision Points

  • Vectors have magnitude and direction; scalars have only magnitude.
  • Dot product gives a scalar; cross product gives a vector.
  • a · b = 0 → vectors are perpendicular.
  • a × b = 0 → vectors are parallel.
  • Always remember i·i=j·j=k·k=1 and i·j=j·k=k·i=0 for dot product shortcuts.
  • Always remember i×i=j×j=k×k=0 and the cyclic rule i×j=k, j×k=i, k×i=j for cross product shortcuts.

Comments

Post a Comment