Study Guide915 words

Study Guide: Vectors in Three Dimensions

Vectors in Three Dimensions

Study Guide: Vectors in Three Dimensions

Learning Objectives

After studying this chapter, you should be able to:

  • Describe three-dimensional space mathematically using the rectangular coordinate system.
  • Locate and plot points in space using (x,y,z)(x, y, z) coordinates.
  • Calculate the distance between two points in R3\mathbb{R}^3 using the distance formula.
  • Write and interpret equations for simple planes (parallel to coordinate planes) and spheres.
  • Perform fundamental vector operations in three dimensions, including addition, scalar multiplication, and finding magnitudes.

Key Terms & Glossary

  • R3\mathbb{R}^3 (Three-Space): The set of all ordered triples of real numbers, representing three-dimensional space.
  • Origin: The point (0,0,0)(0, 0, 0) where the xx, yy, and zz axes intersect.
  • Coordinate Planes: The planes formed by pairs of axes: the xyxy-plane (z=0z=0), xzxz-plane (y=0y=0), and yzyz-plane (x=0x=0).
  • Octant: One of the eight regions into which the three coordinate planes divide space.
  • Component Form: Representing a vector as v=v1,v2,v3\vec{v} = \langle v_1, v_2, v_3 \rangle.
  • Standard Unit Vectors: The vectors i=1,0,0\mathbf{i} = \langle 1, 0, 0 \rangle, j=0,1,0\mathbf{j} = \langle 0, 1, 0 \rangle, and k=0,0,1\mathbf{k} = \langle 0, 0, 1 \rangle.
  • Magnitude (Norm): The scalar length of a vector, denoted v|\vec{v}|.

The "Big Idea"

In two dimensions, we can map out a flat surface like a piece of paper or a floor plan. However, the physical world involves depth, height, and breadth. By adding a third axis—the zz-axis—perpendicular to the xyxy-plane, we transition from "flat" geometry to spatial geometry. This allows us to model complex systems such as planetary orbits, fluid flow, and structural engineering forces that do not lie in a single plane.

Formula / Concept Box

ConceptFormula / Equation
Distance in R3\mathbb{R}^3d=(x2x1)2+(y2y1)2+(z2z1)2d = \sqrt{(x_2-x_1)^2 + (y_2-y_1)^2 + (z_2-z_1)^2}
Equation of a Sphere(xh)2+(yk)2+(zl)2=r2(x-h)^2 + (y-k)^2 + (z-l)^2 = r^2 (Center (h,k,l)(h, k, l), Radius rr)
Vector Magnitude$
Unit Vector$\vec{u} = \frac{\vec{v}}{
Vector Additionu+v=u1+v1,u2+v2,u3+v3\vec{u} + \vec{v} = \langle u_1+v_1, u_2+v_2, u_3+v_3 \rangle

Hierarchical Outline

  1. The Three-Dimensional Coordinate System
    • Axes and Origin: x,y,zx, y, z axes meet at (0,0,0)(0,0,0).
    • The Right-Hand Rule: Standard orientation where curling fingers from xx to yy leaves the thumb pointing toward zz.
    • Planes and Octants: Space is divided into 8 octants by 3 planes (xy,yz,xzxy, yz, xz).
  2. Points and Surfaces in Space
    • Distance Formula: An extension of the Pythagorean theorem to 3D.
    • Spheres: The 3D version of a circle; defined by all points equidistant from a center.
    • Simple Planes: Equations like z=kz = k represent a horizontal plane kk units from the xyxy-plane.
  3. Vectors in R3\mathbb{R}^3
    • Component Form vs. Unit Vector Form: a,b,c\langle a, b, c \rangle vs ai+bj+cka\mathbf{i} + b\mathbf{j} + c\mathbf{k}.
    • Algebraic Operations: Addition, subtraction, and scalar multiplication are performed component-wise.
    • Magnitude and Direction: Calculating how long a vector is and normalizing it to a unit vector.

Visual Anchors

3D Vector Concept Map

Loading Diagram...
Figure 1 — Mermaid diagram

The 3D Rectangular Coordinate System

Compiling TikZ diagram…
Running TeX engine…
This may take a few seconds
Figure 2 — TikZ diagram

Definition-Example Pairs

  • Term: Scalar Multiplication
    • Definition: Multiplying a vector by a real number kk, which scales its magnitude and potentially reverses its direction.
    • Example: If v=2,1,4\vec{v} = \langle 2, -1, 4 \rangle and k=3k = 3, then 3v=6,3,123\vec{v} = \langle 6, -3, 12 \rangle. The new vector is 3 times longer but points in the same direction.
  • Term: Distance Formula in 3D
    • Definition: The straight-line distance between two points P1P_1 and P2P_2 in space.
    • Example: The distance between (1,0,2)(1, 0, 2) and (4,4,2)(4, 4, 2) is (41)2+(40)2+(22)2=32+42+02=25=5\sqrt{(4-1)^2 + (4-0)^2 + (2-2)^2} = \sqrt{3^2 + 4^2 + 0^2} = \sqrt{25} = 5.
  • Term: Sphere
    • Definition: The set of all points (x,y,z)(x, y, z) at a fixed distance rr from a center (h,k,l)(h, k, l).
    • Example: A soap bubble centered at (0,0,0)(0, 0, 0) with a radius of 2 inches is described by x2+y2+z2=4x^2 + y^2 + z^2 = 4.

Worked Examples

Example 1: Finding the Equation of a Sphere

Problem: Find the standard equation of a sphere with center C(2,4,7)C(-2, 4, 7) and radius r=5r = 5. Step 1: Identify the coordinates of the center: h = -2, k = 4, l = 7. Step 2: Identify the radius: r=5r = 5. Step 3: Substitute into the standard sphere equation: (xh)2+(yk)2+(zl)2=r2(x - h)^2 + (y - k)^2 + (z - l)^2 = r^2. Step 4: Simplify the signs: (x(2))2+(y4)2+(z7)2=52(x - (-2))^2 + (y - 4)^2 + (z - 7)^2 = 5^2. Result: (x+2)2+(y4)2+(z7)2=25(x + 2)^2 + (y - 4)^2 + (z - 7)^2 = 25.

Example 2: Vector Magnitude and Normalization

Problem: Given v=3,2,6\vec{v} = \langle 3, -2, 6 \rangle, find its magnitude and a unit vector in the same direction. Step 1 (Magnitude): v=32+(2)2+62=9+4+36=49=7|\vec{v}| = \sqrt{3^2 + (-2)^2 + 6^2} = \sqrt{9 + 4 + 36} = \sqrt{49} = 7. Step 2 (Unit Vector): u=vv=173,2,6\vec{u} = \frac{\vec{v}}{|\vec{v}|} = \frac{1}{7} \langle 3, -2, 6 \rangle. Result: v=7|\vec{v}| = 7; u=37,27,67\vec{u} = \langle \frac{3}{7}, -\frac{2}{7}, \frac{6}{7} \rangle.

Checkpoint Questions

  1. What are the coordinates of the projection of the point (3,5,8)(3, -5, 8) onto the xyxy-plane?
  2. If a sphere is described by x2+y2+z24x+6y=3x^2 + y^2 + z^2 - 4x + 6y = 3, what is its center and radius? (Hint: Complete the square).
  3. Find the magnitude of the vector w=2ij+2k\vec{w} = 2\mathbf{i} - \mathbf{j} + 2\mathbf{k}.
  4. True or False: The equation y=4y = 4 in R3\mathbb{R}^3 represents a line.

[!TIP] When visualizing 3D points, always start at the origin and move along the xx-axis first, then the yy-axis, then the zz-axis. It is much easier to keep track of your position this way than trying to "jump" directly to the point.

[!IMPORTANT] The magnitude of a vector is always a non-negative scalar. If you get a negative value, re-check your squares and square root calculations!

Ready to study Calculus III: Multivariable Calculus?

Practice tests, flashcards, and all study notes — free, no sign-up needed.

Start Studying — Free