Unit P4: Vectors

1. Vector Foundations & Operations

Vectors are represented in 2D and 3D using column notation or unit vector notation (i, j, k).

Position Vectors (7.4)

The vector joining point A to point B is given by:

AB = OB OA = b a

Magnitude & Unit Vectors (7.2)

The magnitude of a vector a is its length. A unit vector in the direction of a has a magnitude of 1.

|a| = x2 + y2 + z2

2. Distance Between Two Points (7.5)

To find the distance d between two points (x1,y1,z1) and (x2,y2,z2):

d2 = (x1x2)2 + (y1y2)2 + (z1z2)2

3. Vector Equations of Lines (7.6)

A line passing through point a with direction vector b is given by:

r=a+tb

Or through two points c and d:

r=c+t(dc)
Exam Tip

You must be able to determine if two lines are parallel, intersecting, or skew (neither parallel nor intersecting in 3D).

4. The Scalar Product (7.7)

The scalar (dot) product is used to find the angle between two vectors.

ab = a1b1 + a2b2 + a3b3

To find the angle θ:

cosθ = ab |a||b|
Perpendicular Condition: If ab=0 and the vectors are non-zero, then the vectors are perpendicular.

Problem 1: Angle between two lines

Question: Find the acute angle θ between the lines L1 and L2 defined by:

L1: r=(i+2j-k)+λ(2i+j+2k)
L2: r=(3i+k)+μ(3i-4j)

Solution:

Step 1: Identify Direction Vectors
We only care about the vectors attached to the scalars λ and μ.

d1=212, d2=3-40

Step 2: Calculate Scalar Product and Magnitudes

d1d2=(2×3)+(1×-4)+(2×0)=2
|d1|=22+12+22=3
|d2|=32+(-4)2+02=5

Step 3: Find θ

cosθ=|2|3×5=215

Result: θ82.3°


Problem 2: Proving Lines are Skew

The Logic: To prove lines are skew, you must show they are not parallel and that they do not intersect.

Part A: Check Parallelism
Check if the direction vectors are multiples of each other. If d1kd2, they are not parallel.

Part B: Check Intersection
Set the components of L1 equal to L2:

  1. Solve for λ and μ using the x and y equations.
  2. Substitute these values into the z equation.
  3. If the z equation is not consistent (e.g., 5=12), the lines do not intersect.

Conclusion: Not parallel + No intersection = Skew Lines.

Post a Comment

Previous Post Next Post