Lesson 7.1: Vectors in Two and Three Dimensions
Introduction
Welcome, students! In this lesson, we will delve into the fascinating world of vectors and how they help us navigate through both two-dimensional and three-dimensional spaces. By the end of this lesson, you will be able to:
- Understand position vectors, magnitude, and unit vectors.
- Perform vector addition, subtraction, and scalar multiplication.
- Write the vector equation of a line.
- Determine collinearity and ratios of points on a line.
- Compute the magnitude and direction of a vector in 3D.
Hook
Have you ever wondered how pilots navigate their planes or how engineers design structures? Understanding vectors is essential in these fields! 🌍✈️
Position Vectors, Magnitude, and Unit Vectors
What is a Vector?
A vector is a mathematical object that has both a magnitude (length) and a direction. You can think of it as an arrow pointing from one point to another.
Position Vectors
Position vectors describe the location of a point in space relative to the origin (0, 0) in 2D or (0, 0, 0) in 3D. In a 2D Cartesian coordinate system, the position vector $\mathbf{a}$ of point A with coordinates (x, y) is given by:
$$\mathbf{a} = x \mathbf{i} + y \mathbf{j}$$
where $\mathbf{i}$ and $\mathbf{j}$ are the unit vectors in the x and y directions, respectively.
In 3D, the position vector $\mathbf{a}$ of point A is:
$$\mathbf{a} = x \mathbf{i} + y \mathbf{j} + z \mathbf{k}$$
where $\mathbf{k}$ is the unit vector in the z direction.
Magnitude of a Vector
The magnitude (length) of a vector $\mathbf{a}$ is calculated using the Pythagorean theorem. For a 2D vector:
$$|\mathbf{a}| = \sqrt{x^2 + y^2}$$
For a 3D vector:
$$|\mathbf{a}| = \sqrt{x^2 + y^2 + z^2}$$
Unit Vectors
A unit vector is a vector with a magnitude of 1. It is useful for specifying direction. You can convert any vector $\mathbf{a}$ into a unit vector $\mathbf{\hat{a}}$ using the formula:
$$\mathbf{\hat{a}} = \frac{\mathbf{a}}{|\mathbf{a}|}$$
Vector Addition, Subtraction, and Scalar Multiples
Vector Addition
To add two vectors, simply add their corresponding components. For example, if $\mathbf{a} = (x_1, y_1)$ and $\mathbf{b} = (x_2, y_2)$, then:
$$\mathbf{c} = \mathbf{a} + \mathbf{b} = (x_1 + x_2, y_1 + y_2)$$
In 3D, if $\mathbf{a} = (x_1, y_1, z_1)$ and $\mathbf{b} = (x_2, y_2, z_2)$, then:
$$\mathbf{c} = \mathbf{a} + \mathbf{b} = (x_1 + x_2, y_1 + y_2, z_1 + z_2)$$
Vector Subtraction
Vector subtraction is similar to vector addition. If $\mathbf{a} = (x_1, y_1)$ and $\mathbf{b} = (x_2, y_2)$, then:
$$\mathbf{c} = \mathbf{a} - \mathbf{b} = (x_1 - x_2, y_1 - y_2)$$
For 3D vectors:
$$\mathbf{c} = \mathbf{a} - \mathbf{b} = (x_1 - x_2, y_1 - y_2, z_1 - z_2)$$
Scalar Multiples
A scalar multiple of a vector scales the vector by a certain factor. If $k$ is a scalar:
$$k \mathbf{a} = (k x, k y)$$
In 3D:
$$k \mathbf{a} = (k x, k y, k z)$$
The Vector Equation of a Line
Vector Line Equation
The equation of a line in vector form can be expressed using a point $\mathbf{a}$ on the line and a direction vector $\mathbf{b}$:
$$\mathbf{r} = \mathbf{a} + t \mathbf{b}$$
where $t$ is a scalar that can take any real value. This indicates that as $t$ changes, $\mathbf{r}$ traces out the line.
Example
For a line passing through the point A(1, 2) with a direction vector $\mathbf{b} = (3, 4)$, the equation of the line can be given by:
$$\mathbf{r} = egin{pmatrix} 1 \ 2 \end{pmatrix} + t egin{pmatrix} 3 \ 4 \end{pmatrix}$$
Collinearity and Ratios of Points on a Line
Collinearity
Points A, B, and C are said to be collinear if they lie on the same straight line. To check if points with position vectors $\mathbf{a}$, $\mathbf{b}$, and $\mathbf{c}$ are collinear, the vectors $\mathbf{b} - \mathbf{a}$ and $\mathbf{c} - \mathbf{a}$ must be parallel, which means:
$$\mathbf{b} - \mathbf{a} = k(\mathbf{c} - \mathbf{a})$$
for some scalar $k$.
Ratios of Points
If points A and B divide a line segment into a ratio of $m:n$, then the position vector $\mathbf{P}$ of point P that divides the segment in the given ratio is calculated as follows:
$$\mathbf{P} = \frac{n \mathbf{a} + m \mathbf{b}}{m + n}$$
Computing the Magnitude and Direction of a Vector in 3D
Magnitude in 3D
As discussed earlier, to find the magnitude of a vector $\mathbf{a} = (x, y, z)$:
$$|\mathbf{a}| = \sqrt{x^2 + y^2 + z^2}$$
Direction of a Vector
To find the direction of a vector, we need to calculate the unit vector:
$$\mathbf{\hat{a}} = \frac{\mathbf{a}}{|\mathbf{a}|}$$
This will give us the same direction as the original vector but with a magnitude of 1.
Conclusion
In this lesson, we have explored the fundamental concepts of vectors in both two and three dimensions. You learned how to compute position vectors, perform vector operations, and understand the relationship between points, lines, and ratios. These principles are essential in fields such as physics, engineering, and computer graphics.
Study Notes
- Vector Definition: A quantity with both magnitude and direction.
- Position Vectors: Describe a point's location relative to the origin.
- Magnitude: Length of the vector calculated with Pythagorean theorem.
- Unit Vector: A vector of length 1 indicating direction.
- Vector Operations: Addition, subtraction, and scalar multiples of vectors.
- Equation of a Line: Written in vector form as $\mathbf{r} = \mathbf{a} + t \mathbf{b}$.
- Collinearity: Points that lie on the same line.
- Ratios on a Line: Determine points dividing a segment using position vectors.
