Scalars and Vectors

« Back to AP Physics Guide / Unit 1: Kinematics / Topic 1.1: Scalars and Vectors

Visualization of a 3D coordinate system with glowing vectors broken down into x, y, and z components.

In calculus-based physics, mastering the mathematics of 3D space is the first step to mastering motion.

Welcome to AP Physics C! Physics is the study of the physical world, and to describe that world accurately, we need two distinct types of mathematical quantities: Scalars and Vectors.

  • Scalars: Quantities that only have magnitude (size). Examples: Mass, Temperature, Time, Energy.
  • Vectors: Quantities that have both magnitude AND direction. Examples: Displacement, Velocity, Force, Momentum.

1. Unit Vector Notation (\hat{i}, \hat{j}, \hat{k})

In previous physics classes, you likely defined direction using angles and compass points. In AP Physics C, we rely heavily on Unit Vector Notation. A unit vector is a vector with a magnitude of exactly 1 that points along a specific coordinate axis.

    \[\vec{A} = A_x\hat{i} + A_y\hat{j} + A_z\hat{k}\]

\hat{i} (x-axis), \hat{j} (y-axis), and \hat{k} (z-axis) tell you exactly how far to move in 3D space.

To find the total magnitude (length) of this vector, we use the 3D Pythagorean theorem: |\vec{A}| = \sqrt{A_x^2 + A_y^2 + A_z^2}.

2. The Scalar Product (Dot Product)

How do you multiply two vectors together? There are two ways. The first is the Dot Product (\vec{A} \cdot \vec{B}), which results in a single scalar number (no direction). This is heavily used later in the course to calculate Work (W = \vec{F} \cdot \vec{d}).

You can calculate the dot product in two ways, depending on what information you are given:

Method 1 (Angles): \vec{A} \cdot \vec{B} = |\vec{A}| |\vec{B}| \cos(\theta)

Method 2 (Components): \vec{A} \cdot \vec{B} = (A_xB_x) + (A_yB_y) + (A_zB_z)

Concept First: The dot product answers a specific question: “How much of Vector A is pointing in the exact same direction as Vector B?” If they are perfectly perpendicular (\theta = 90^\circ), the dot product is exactly zero!

3. Quick AP Practice

📚 Topic 1.1 Mastery Challenge

1. You are given two vectors: \vec{F} = 3\hat{i} - 2\hat{j} and \vec{d} = 4\hat{i} + 5\hat{j}. Calculate the dot product \vec{F} \cdot \vec{d}.

Check Answer Multiply the matching components and add them together:
\vec{F} \cdot \vec{d} = (F_x)(d_x) + (F_y)(d_y)
\vec{F} \cdot \vec{d} = (3)(4) + (-2)(5)
\vec{F} \cdot \vec{d} = 12 - 10 = \mathbf{2}.

2. Find the magnitude of the vector \vec{v} = 2\hat{i} + 3\hat{j} - 6\hat{k}.

Check Answer Use the 3D Pythagorean theorem:
|\vec{v}| = \sqrt{(2)^2 + (3)^2 + (-6)^2}
|\vec{v}| = \sqrt{4 + 9 + 36} = \sqrt{49} = \mathbf{7}.