---
title: "The Dot Product: Angles and Projections"
description: "One product of two vectors returns a number that encodes the angle between them. It tests perpendicularity, projects one vector onto another and computes work."
canonical: https://lightmysky.com/learn/mathematics/the-dot-product-angles-and-projections-mt_yFBcyE4sFw
source: https://lightmysky.com/learn/mathematics/the-dot-product-angles-and-projections-mt_yFBcyE4sFw.md
retrieved: 2026-09-12
---

> **Agent view.** This is the Markdown twin of the page, for tools and assistants.
> When to use this site, and the call that answers each job: https://lightmysky.com/agent-instructions.md
> API description (OpenAPI 3.1): https://lightmysky.com/openapi.json · Authentication: https://lightmysky.com/auth.md
> Pricing: https://lightmysky.com/pricing.md · Catalog: https://lightmysky.com/llms.txt · Full catalog: https://lightmysky.com/llms-full.txt
> Every machine-readable file on this domain: https://lightmysky.com/.well-known/ai-catalog.json
> Ask for Markdown with `Accept: text/markdown`, a `.md` address, or `?mode=agent`.

# The Dot Product: Angles and Projections

One product of two vectors returns a number that encodes the angle between them. It tests perpendicularity, projects one vector onto another and computes work.

Subject: Mathematics · Area: Geometry · Ages 19 to 20
Page: https://lightmysky.com/learn/mathematics/the-dot-product-angles-and-projections-mt_yFBcyE4sFw

## Ready when they can

- Find the angle between two vectors from their dot product
- Decide perpendicularity from a dot product of zero
- Resolve a vector into components parallel and perpendicular to another

## Lesson: One number that knows the angle

The dot product tells how much one vector helps another, which is how you read the angle between pushes. It turns two vectors into one number: multiply matching components and add. For (1, 2) and (3, 4) you get 3 + 8 = 11. The sign carries meaning: positive means an acute angle, zero means a right angle, negative means obtuse. Dividing the dot by both lengths gives the cosine, so (1, 0) and (0, 1) dot to 0 and meet at 90 degrees.

**Example.** A zero dot product from nonzero vectors always means perpendicular. Check (3, 1) and (minus 1, 3): 3 times minus 1 plus 1 times 3 is 0, so they meet at a right angle. Dotting (1, 3) with (minus 3, 1) also gives 0, while the other pairs give 4 and 8, so only the zero pair is perpendicular.

Dotting with a unit direction measures how much of your vector runs that way. The direction (3, 4) normalizes to (3/5, 4/5), and (1, 2) dotted with it gives 11/5 = 2.2. The projection vector of (4, 0) onto (1, 1) is (2, 2). To find a force component, normalize its direction first and then dot.

**Tip.** For angles: dot from components, divide by both lengths to get cosine, then take inverse cosine. If dot is zero and neither vector is zero, angle is 90 degrees.

**Recap.** Multiply matching parts and add, read the angle from the cosine, and split vectors with projection.

## Practice

16 questions on this page, each with its working shown.

## Needs first

- [Forces as Vectors: Resolving and Resultants](https://lightmysky.com/learn/mathematics/forces-as-vectors-resolving-and-resultants-mt_-qDRgd2g8v)
- [Vectors in Three Dimensions](https://lightmysky.com/learn/mathematics/vectors-in-three-dimensions-mt_o97GclnNC-)

## Opens up

- [Lines and Planes in Space](https://lightmysky.com/learn/mathematics/lines-and-planes-in-space-mt_kIX5ak1GRv)
- [Directional Derivatives and the Gradient](https://lightmysky.com/learn/mathematics/directional-derivatives-and-the-gradient-mt_LW_KckY5Ad)
- [The Cross Product and Oriented Area](https://lightmysky.com/learn/mathematics/the-cross-product-and-oriented-area-mt_QEBM_Ms-SK)
- [Inner Products, Length and Orthogonality](https://lightmysky.com/learn/mathematics/inner-products-length-and-orthogonality-mt_X0HPRGto4W)
