BrainyBeeBrainyBee
ExploreBlogStart Studying
HomeCalculus III: Multivariable CalculusStudy Guide: Vectors in Three Dimensions
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)(x,y,z) coordinates.
  • Calculate the distance between two points in R3\mathbb{R}^3R3 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}^3R3 (Three-Space): The set of all ordered triples of real numbers, representing three-dimensional space.
  • Origin: The point (0,0,0)(0, 0, 0)(0,0,0) where the xxx, yyy, and zzz axes intersect.
  • Coordinate Planes: The planes formed by pairs of axes: the xyxyxy-plane (z=0z=0z=0), xzxzxz-plane (y=0y=0y=0), and yzyzyz-plane (x=0x=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 \ranglev=⟨v1​,v2​,v3​⟩.
  • Standard Unit Vectors: The vectors i=⟨1,0,0⟩\mathbf{i} = \langle 1, 0, 0 \ranglei=⟨1,0,0⟩, j=⟨0,1,0⟩\mathbf{j} = \langle 0, 1, 0 \ranglej=⟨0,1,0⟩, and k=⟨0,0,1⟩\mathbf{k} = \langle 0, 0, 1 \ranglek=⟨0,0,1⟩.
  • Magnitude (Norm): The scalar length of a vector, denoted ∣v⃗∣|\vec{v}|∣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 zzz-axis—perpendicular to the xyxyxy-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}^3R3d=(x2−x1)2+(y2−y1)2+(z2−z1)2d = \sqrt{(x_2-x_1)^2 + (y_2-y_1)^2 + (z_2-z_1)^2}d=(x2​−x1​)2+(y2​−y1​)2+(z2​−z1​)2​
Equation of a Sphere(x−h)2+(y−k)2+(z−l)2=r2(x-h)^2 + (y-k)^2 + (z-l)^2 = r^2(x−h)2+(y−k)2+(z−l)2=r2 (Center (h,k,l)(h, k, l)(h,k,l), Radius rrr)
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 \rangleu+v=⟨u1​+v1​,u2​+v2​,u3​+v3​⟩

Hierarchical Outline

  1. The Three-Dimensional Coordinate System
    • Axes and Origin: x,y,zx, y, zx,y,z axes meet at (0,0,0)(0,0,0)(0,0,0).
    • The Right-Hand Rule: Standard orientation where curling fingers from xxx to yyy leaves the thumb pointing toward zzz.
    • Planes and Octants: Space is divided into 8 octants by 3 planes (xy,yz,xzxy, 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 = kz=k represent a horizontal plane kkk units from the xyxyxy-plane.
  3. Vectors in R3\mathbb{R}^3R3
    • Component Form vs. Unit Vector Form: ⟨a,b,c⟩\langle a, b, c \rangle⟨a,b,c⟩ vs ai+bj+cka\mathbf{i} + b\mathbf{j} + c\mathbf{k}ai+bj+ck.
    • 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 kkk, which scales its magnitude and potentially reverses its direction.
    • Example: If v⃗=⟨2,−1,4⟩\vec{v} = \langle 2, -1, 4 \ranglev=⟨2,−1,4⟩ and k=3k = 3k=3, then 3v⃗=⟨6,−3,12⟩3\vec{v} = \langle 6, -3, 12 \rangle3v=⟨6,−3,12⟩. 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_1P1​ and P2P_2P2​ in space.
    • Example: The distance between (1,0,2)(1, 0, 2)(1,0,2) and (4,4,2)(4, 4, 2)(4,4,2) is (4−1)2+(4−0)2+(2−2)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(4−1)2+(4−0)2+(2−2)2​=32+42+02​=25​=5.
  • Term: Sphere
    • Definition: The set of all points (x,y,z)(x, y, z)(x,y,z) at a fixed distance rrr from a center (h,k,l)(h, k, l)(h,k,l).
    • Example: A soap bubble centered at (0,0,0)(0, 0, 0)(0,0,0) with a radius of 2 inches is described by x2+y2+z2=4x^2 + y^2 + z^2 = 4x2+y2+z2=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)C(−2,4,7) and radius r=5r = 5r=5. Step 1: Identify the coordinates of the center: h = -2, k = 4, l = 7. Step 2: Identify the radius: r=5r = 5r=5. Step 3: Substitute into the standard sphere equation: (x−h)2+(y−k)2+(z−l)2=r2(x - h)^2 + (y - k)^2 + (z - l)^2 = r^2(x−h)2+(y−k)2+(z−l)2=r2. Step 4: Simplify the signs: (x−(−2))2+(y−4)2+(z−7)2=52(x - (-2))^2 + (y - 4)^2 + (z - 7)^2 = 5^2(x−(−2))2+(y−4)2+(z−7)2=52. Result: (x+2)2+(y−4)2+(z−7)2=25(x + 2)^2 + (y - 4)^2 + (z - 7)^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 \ranglev=⟨3,−2,6⟩, 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∣v∣=32+(−2)2+62​=9+4+36​=49​=7. Step 2 (Unit Vector): u⃗=v⃗∣v⃗∣=17⟨3,−2,6⟩\vec{u} = \frac{\vec{v}}{|\vec{v}|} = \frac{1}{7} \langle 3, -2, 6 \rangleu=∣v∣v​=71​⟨3,−2,6⟩. Result: ∣v⃗∣=7|\vec{v}| = 7∣v∣=7; u⃗=⟨37,−27,67⟩\vec{u} = \langle \frac{3}{7}, -\frac{2}{7}, \frac{6}{7} \rangleu=⟨73​,−72​,76​⟩.

Checkpoint Questions

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

[!TIP] When visualizing 3D points, always start at the origin and move along the xxx-axis first, then the yyy-axis, then the zzz-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!

All Calculus III: Multivariable Calculus Study Resources

Related Notes

  • Applications of Vectors: Force, Volume, and Geometric Analysis842 words
  • Arc Length and Curvature: Multivariable Calculus Study Guide780 words
  • Calculus III: Area and Arc Length in Polar Coordinates Study Guide875 words
  • Calculus of Parametric Curves: Comprehensive Study Guide892 words
  • Calculus of Vector-Valued Functions: A Comprehensive Study Guide825 words
  • Conic Sections: Geometric Foundations and Polar Representations845 words
  • Mastering Conservative Vector Fields: Path Independence and Potential Functions925 words
  • Mastering Cylindrical and Spherical Coordinates925 words
  • Study Guide: Directional Derivatives and the Gradient985 words
  • Divergence and Curl: Vector Calculus Study Guide860 words
  • Double Integrals in Polar Coordinates875 words
  • Study Guide: Double Integrals over General Regions875 words

Ready to study Calculus III: Multivariable Calculus?

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

Start Studying

Ready to study Calculus III: Multivariable Calculus?

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

Start Studying — Free
Calculus III: Multivariable Calculus ResourcesExplore All HivesBlogHome

© 2026 BrainyBee. Free AI-powered exam prep.

Loading Diagram...
Flowchart, top to bottom. Vectors in 3D connects to Representation. Vectors in 3D] --> B[Representation connects to Operations. Vectors in 3D] --> B[Representation connects to Geometry. B connects to Component Form < v1,v2,v3 >. B connects to Unit Vector Form ai + bj + ck. C connects to Addition/Subtraction. C connects to Scalar Multiplication. C connects to Magnitude Calculation. 3 more statements.