2. Pure Mathematics 2

Vectors 3d

Vector algebra in two and three dimensions, scalar and vector products, lines and planes in space.

Vectors 3D

Hey students! šŸ‘‹ Welcome to one of the most exciting topics in A-level mathematics - 3D vectors! This lesson will take you on a journey through three-dimensional space, where we'll explore how vectors work beyond the flat world of 2D. By the end of this lesson, you'll understand vector algebra in three dimensions, master scalar and vector products, and learn how to work with lines and planes in space. Think of this as your mathematical passport to navigate the 3D world around you - from understanding the trajectory of a football in flight to describing the orientation of buildings in space! āœˆļø

Understanding 3D Vectors and Their Components

Let's start with the basics, students. A 3D vector is simply an extension of what you already know about 2D vectors, but now we add a third dimension - the z-axis. Just like how a 2D vector has components in the x and y directions, a 3D vector has components in x, y, and z directions.

A 3D vector v can be written as:

$$\vec{v} = \begin{pmatrix} x \\ y \\ z \end{pmatrix} = x\vec{i} + y\vec{j} + z\vec{k}$$

Here, $\vec{i}$, $\vec{j}$, and $\vec{k}$ are the unit vectors along the x, y, and z axes respectively. Think of them as the fundamental building blocks - like having three perpendicular rulers that help you measure distance in each direction! šŸ“

The magnitude (or length) of a 3D vector is found using the 3D version of Pythagoras' theorem:

$$|\vec{v}| = \sqrt{x^2 + y^2 + z^2}$$

For example, if you have a vector $\vec{v} = \begin{pmatrix} 3 \\ 4 \\ 12 \end{pmatrix}$, its magnitude would be $|\vec{v}| = \sqrt{3^2 + 4^2 + 12^2} = \sqrt{9 + 16 + 144} = \sqrt{169} = 13$.

Vector addition and subtraction work exactly the same as in 2D - you simply add or subtract corresponding components. If $\vec{a} = \begin{pmatrix} 2 \\ -1 \\ 5 \end{pmatrix}$ and $\vec{b} = \begin{pmatrix} 1 \\ 3 \\ -2 \end{pmatrix}$, then $\vec{a} + \vec{b} = \begin{pmatrix} 3 \\ 2 \\ 3 \end{pmatrix}$.

The Scalar Product (Dot Product) šŸŽÆ

Now let's dive into something really powerful, students - the scalar product, also known as the dot product. This operation takes two vectors and produces a scalar (a single number). The formula is:

$$\vec{a} \cdot \vec{b} = a_x b_x + a_y b_y + a_z b_z$$

Alternatively, we can use the geometric definition:

$$\vec{a} \cdot \vec{b} = |\vec{a}||\vec{b}|\cos\theta$$

where $\theta$ is the angle between the two vectors.

Here's what makes the dot product so special: it tells us about the relationship between two vectors! When the dot product is:

  • Positive: The vectors point in roughly the same direction (acute angle)
  • Zero: The vectors are perpendicular (90° angle)
  • Negative: The vectors point in roughly opposite directions (obtuse angle)

Real-world example: Imagine you're pushing a shopping cart. The force you apply and the direction the cart moves determine how much work you do. If you push directly forward, maximum work is done. If you push at an angle, less work is done. If you push perpendicular to the motion, no work is done at all! This is exactly what the dot product calculates in physics - the component of one vector in the direction of another.

The dot product has some important properties:

  • $\vec{a} \cdot \vec{b} = \vec{b} \cdot \vec{a}$ (commutative)
  • $\vec{a} \cdot (\vec{b} + \vec{c}) = \vec{a} \cdot \vec{b} + \vec{a} \cdot \vec{c}$ (distributive)
  • $\vec{a} \cdot \vec{a} = |\vec{a}|^2$

The Vector Product (Cross Product) ⚔

The vector product, or cross product, is where 3D vectors really show their power! Unlike the dot product which gives a scalar, the cross product of two vectors gives another vector. The formula is:

$$\vec{a} \times \vec{b} = \begin{pmatrix} a_y b_z - a_z b_y \\ a_z b_x - a_x b_z \\ a_x b_y - a_y b_x \end{pmatrix}$$

The magnitude of the cross product is:

$$|\vec{a} \times \vec{b}| = |\vec{a}||\vec{b}|\sin\theta$$

The resulting vector is perpendicular to both original vectors, and its direction follows the right-hand rule. Point your fingers in the direction of the first vector, curl them toward the second vector, and your thumb points in the direction of the cross product! šŸ‘

Here's a fascinating fact: the magnitude of the cross product equals the area of the parallelogram formed by the two vectors. This makes it incredibly useful in physics and engineering for calculating torque, angular momentum, and magnetic forces.

Key properties of the cross product:

  • $\vec{a} \times \vec{b} = -\vec{b} \times \vec{a}$ (anti-commutative)
  • $\vec{a} \times \vec{a} = \vec{0}$ (any vector crossed with itself is zero)
  • $\vec{a} \times (\vec{b} + \vec{c}) = \vec{a} \times \vec{b} + \vec{a} \times \vec{c}$ (distributive)

Lines in 3D Space šŸ›¤ļø

Describing lines in 3D space is like giving someone directions in a skyscraper - you need to know where to start and which direction to go! A line in 3D can be described using vector equations.

The vector equation of a line passing through point A with position vector $\vec{a}$ and parallel to vector $\vec{d}$ is:

$$\vec{r} = \vec{a} + t\vec{d}$$

where $t$ is a parameter that can take any real value, and $\vec{r}$ represents any point on the line.

The parametric equations break this down into components:

$$x = a_1 + td_1$$

$$y = a_2 + td_2$$

$$z = a_3 + td_3$$

The Cartesian equation eliminates the parameter:

$$\frac{x - a_1}{d_1} = \frac{y - a_2}{d_2} = \frac{z - a_3}{d_3}$$

Think of a line as an infinite railway track in space. The position vector $\vec{a}$ tells you where one station is located, the direction vector $\vec{d}$ tells you which way the track runs, and the parameter $t$ tells you how far along the track you are from that station.

To find where two lines intersect (if they do), you set their vector equations equal and solve for the parameters. If the lines are parallel, they have the same or proportional direction vectors. If they're skew (don't intersect and aren't parallel), they exist in different planes entirely!

Planes in 3D Space šŸ¢

A plane in 3D space can be thought of as an infinite flat surface, like an endless sheet of paper floating in space. The most common way to describe a plane is using its normal vector - a vector perpendicular to the plane.

If a plane has normal vector $\vec{n} = \begin{pmatrix} a \\ b \\ c \end{pmatrix}$ and passes through point $(x_0, y_0, z_0)$, its Cartesian equation is:

$$a(x - x_0) + b(y - y_0) + c(z - z_0) = 0$$

This can be simplified to:

$$ax + by + cz = d$$

where $d = ax_0 + by_0 + cz_0$.

The vector equation of a plane can be written as:

$$\vec{r} = \vec{a} + s\vec{b} + t\vec{c}$$

where $\vec{a}$ is a position vector to a point on the plane, and $\vec{b}$ and $\vec{c}$ are two non-parallel vectors lying in the plane.

Real-world application: Architects use plane equations to describe walls, floors, and roofs. Air traffic controllers use them to define flight paths and restricted airspace. Even your smartphone's screen can be described mathematically as a plane in 3D space! šŸ“±

The distance from a point $(x_1, y_1, z_1)$ to the plane $ax + by + cz = d$ is:

$$\text{distance} = \frac{|ax_1 + by_1 + cz_1 - d|}{\sqrt{a^2 + b^2 + c^2}}$$

Conclusion

students, you've just mastered one of the most powerful tools in mathematics! 3D vectors allow us to describe and analyze the three-dimensional world around us with incredible precision. You've learned how to work with vector components, calculate scalar and vector products, and describe lines and planes in space. These concepts form the foundation for advanced topics in physics, engineering, computer graphics, and many other fields. The scalar product helps us find angles and projections, while the vector product gives us perpendicular vectors and areas. Lines and planes provide the geometric framework for describing motion and surfaces in 3D space. Remember, every concept you've learned here has real applications - from GPS navigation to 3D animation to spacecraft trajectories! šŸš€

Study Notes

• 3D Vector: $\vec{v} = \begin{pmatrix} x \\ y \\ z \end{pmatrix} = x\vec{i} + y\vec{j} + z\vec{k}$

• Vector Magnitude: $|\vec{v}| = \sqrt{x^2 + y^2 + z^2}$

• Scalar Product (Dot Product): $\vec{a} \cdot \vec{b} = a_x b_x + a_y b_y + a_z b_z = |\vec{a}||\vec{b}|\cos\theta$

• Vector Product (Cross Product): $\vec{a} \times \vec{b} = \begin{pmatrix} a_y b_z - a_z b_y \\ a_z b_x - a_x b_z \\ a_x b_y - a_y b_x \end{pmatrix}$

• Cross Product Magnitude: $|\vec{a} \times \vec{b}| = |\vec{a}||\vec{b}|\sin\theta$

• Perpendicular Vectors: $\vec{a} \cdot \vec{b} = 0$

• Parallel Vectors: $\vec{a} \times \vec{b} = \vec{0}$

• Line Vector Equation: $\vec{r} = \vec{a} + t\vec{d}$

• Line Cartesian Equation: $\frac{x - a_1}{d_1} = \frac{y - a_2}{d_2} = \frac{z - a_3}{d_3}$

• Plane Cartesian Equation: $ax + by + cz = d$

• Plane Vector Equation: $\vec{r} = \vec{a} + s\vec{b} + t\vec{c}$

• Distance from Point to Plane: $\frac{|ax_1 + by_1 + cz_1 - d|}{\sqrt{a^2 + b^2 + c^2}}$

• Right-Hand Rule: For cross product direction - point fingers along first vector, curl toward second vector, thumb shows result direction

Practice Quiz

5 questions to test your understanding