MAT pure2&3 vectors Flashcards
What are the two forms of representing vectors?
- Magnitude-direction form: (r, θ), where r is the magnitude and θ is the angle measured anticlockwise from the positive x-axis.
- Component form: xi + yj, where i and j are unit vectors in the x and y directions.
How do you convert a vector from magnitude-direction form to component form?
Given (r, θ), use:
x = r * cos(θ)
y = r * sin(θ)
The vector is x * i + y * j.
Example: Convert (10, 70°) to component form.
x = 10 * cos(70°) = 3.42
y = 10 * sin(70°) = 9.40
Vector = 3.42 * i + 9.40 * j
How do you calculate the magnitude of a vector given in component form?
For vector a = xi + yj:
|a| = sqrt(x^2 + y^2)
Example: Find the magnitude of 5i + 3j.
|a| = sqrt(5^2 + 3^2) = sqrt(25 + 9) = sqrt(34)
How do you convert a vector from component form to magnitude-direction form?
- Magnitude: r = sqrt(x^2 + y^2)
- Direction: θ = tan^(-1)(y / x)
Example: Convert 5i + 3j to magnitude-direction form.
Magnitude = sqrt(5^2 + 3^2) = sqrt(34)
Direction = tan^(-1)(3 / 5) = 31.0°
Vector = (sqrt(34), 31.0°)
What happens when you multiply a vector by a scalar?
Each component is multiplied by the scalar:
k * (xi + yj) = (k * x)i + (k * y)j
How do you add or subtract vectors?
Add or subtract their respective components:
(x1i + y1j) + (x2i + y2j) = (x1 + x2)i + (y1 + y2)j
What is a unit vector and how is it calculated?
A unit vector has a magnitude of 1. For vector a:
Unit vector = a / |a|
Example: Find the unit vector in the direction of 2i - 3j.
|a| = sqrt(2^2 + (-3)^2) = sqrt(4 + 9) = sqrt(13)
Unit vector = (2/sqrt(13))i - (3/sqrt(13))j
How do you calculate the magnitude of a 3D vector?
For vector a = xi + yj + zk:
|a| = sqrt(x^2 + y^2 + z^2)
Example: Find the magnitude of vector 4i - 3j + 2k.
|a| = sqrt(4^2 + (-3)^2 + 2^2) = sqrt(16 + 9 + 4) = sqrt(29)
How do you find the vector AB given points A(x1, y1, z1) and B(x2, y2, z2)?
AB = (x2 - x1)i + (y2 - y1)j + (z2 - z1)k
Example: Find AB for points A(4, -1, 2) and B(-1, 3, 1).
AB = (-1 - 4)i + (3 - (-1))j + (1 - 2)k
AB = -5i + 4j - k
|AB| = sqrt((-5)^2 + 4^2 + (-1)^2) = sqrt(42)