# Collinear Vectors — Definition, Conditions, Examples

TL;DR

Collinear vectors are vectors that lie along the same line — which means one is always a scalar multiple of the other, \( \vec{a} = k \cdot \vec{b} \). This article covers the three tests for collinearity (scalar multiple, equal coordinate ratios, zero cross product), how collinear differs from parallel and coplanar, and worked examples.

## What Are Collinear Vectors?

**Collinear vectors** are two or more vectors that lie along the **same straight line** or along **parallel lines** — equivalently, vectors that point in the same or exactly opposite directions. Because they share a direction, one collinear vector can always be obtained by scaling another: there is a scalar \( k \) such that \( \vec{a} = k \cdot \vec{b} \).

The scalar \( k \) can be any nonzero number. If \( k \) is positive, the vectors point the same way; if \( k \) is negative, they point opposite ways; the magnitudes need not match. The vectors (2,4) and (1,2) are collinear with \( k=2 \); the vectors (3,6) and (−1,−2) are collinear with \( k=−3 \).

**Variable glossary.** \( \vec{a}, \vec{b} \) are the vectors; \( k \) is the scalar relating them (\( \vec{a} = k \cdot \vec{b} \)); the components of \( \vec{a} \) are written (\( a_1, a_2, a_3 \)).

## What Are The Conditions For Collinearity?

There are three equivalent tests. Which one you reach for depends on what the problem hands you.

**Condition 1 — Scalar multiple.** Two vectors \( \vec{a} \) and \( \vec{b} \) are collinear if there is a scalar \( k \) with

\( \vec{a} = k \cdot \vec{b} \)  
This is the definition itself and works in any dimension.

**Condition 2 — Equal coordinate ratios.** Vectors \( \vec{a} = (a_1, a_2, a_3) \) and \( \vec{b} = (b_1, b_2, b_3) \) are collinear when their corresponding components are in the same ratio:

\( \frac{a_1}{b_1} = \frac{a_2}{b_2} = \frac{a_3}{b_3} \)

This is the fastest hand-check, but it breaks down if any denominator component is zero — then fall back to Condition 1.

**Condition 3 — Zero cross product.** In three dimensions, \( \vec{a} \) and \( \vec{b} \) are collinear if their cross product is the zero vector:

\( \vec{a} \times \vec{b} = \vec{0} \)

The cross product measures the area of the parallelogram the two vectors span; if they lie on one line, that parallelogram has zero area, so the cross product vanishes.

## How Is Collinear Different From Parallel And Coplanar?

This is the distinction students most often blur, and it's worth pinning down before any example.  
- **Collinear vectors** lie on the _same line_ (or parallel lines) and are scalar multiples of each other. This is the strictest of the three.
- **Parallel vectors** share a direction (same or opposite) but may sit on _different_ lines. Every collinear pair is parallel; not every parallel pair is described as lying on one line.
- **Coplanar vectors** are three or more vectors lying in the _same plane_. All collinear vectors are coplanar, but coplanar vectors are generally not collinear.

A clean way to remember the nesting: collinear ⇒ parallel ⇒ coplanar.

## Examples of Collinear Vectors

### Example 1

Are \( \vec{a} = (2,4) \) and \( \vec{b} = (1,2) \) collinear?

Check the coordinate ratios (Condition 2).

\( \frac{2}{1} = 2, \quad \frac{4}{2} = 2 \)  
Both ratios equal 2, so \( \vec{a} = 2 \cdot \vec{b} \).

**Final answer:** yes, collinear with \( k=2 \).

### Example 2

Are \( \vec{a} = (3,5) \) and \( \vec{b} = (6,9) \) collinear?

_Correct._ Compare the ratios.

\( \frac{3}{6} = \frac{1}{2}, \quad \frac{5}{9} \approx 0.556 \)

The ratios are not equal, so no single scalar scales one into the other.

**Final answer:** not collinear.

### Example 3

Find \( n \) so that \( \vec{a} = (2,5) \) and \( \vec{b} = (4,n) \) are collinear.

Collinearity needs equal ratios.

\( \frac{2}{4} = \frac{5}{n} \) →  \( n = 10 \)

**Final answer:** \( n = 10 \).

### Example 4

Are \( \vec{a} = (3,6) \) and \( \vec{b} = (-1,-2) \) collinear?

\( \frac{3}{-1} = -3, \quad \frac{6}{-2} = -3 \)

Both ratios equal -3, so \( \vec{a} = -3 \cdot \vec{b} \) — collinear.

**Final answer:** yes, collinear with \( k=-3 \).

### Example 5

Use the cross product to test whether \( \vec{a} = (1,2,3) \) and \( \vec{b} = (2,4,6) \) are collinear.

\( \vec{a} \times \vec{b} = 0 \)

**Final answer:** collinear.

### Example 6

Three points A(1,2), B(3,6), and C(5,10) — are they collinear?

Form two vectors from a common point and test them.

- \( \vec{AB} = (2,4) \) 
- \( \vec{AC} = (4,8) \)

Equal ratios, so \( \vec{AB} \) and \( \vec{AC} \) are collinear.

**Final answer:** yes, the points are collinear.

## Why Collinear Vectors Matter: "The Test For One Straight Line"

The reason collinearity earns a name of its own is that it is the algebraic test for "do these lie on a single straight line?" — a question that comes up far more often than the geometry classroom suggests.

## What Are The Most Common Mistakes With Collinear Vectors?

### Mistake 1: Confusing collinear with equal

**Don't do this:** declaring two vectors non-collinear just because their magnitudes differ.

**The correct way:** test for a scalar \( k \) with \( \vec{a} = k \cdot \vec{b} \).

### Mistake 2: Checking only one coordinate ratio

**Don't do this:** matching the first components and stopping there.

**The correct way:** confirm _every_ corresponding ratio is the same number.

### Mistake 3: Dividing by a zero component

**Don't do this:** treating \( \frac{0}{0} \) as a valid ratio.

**The correct way:** switch to Condition 1 and look for the scalar directly.

## Conclusion

- **Collinear vectors** lie on the same line and satisfy \( \vec{a} = k \cdot \vec{b} \) for some scalar \( k \).
- Three equivalent tests: a scalar multiple, equal coordinate ratios, or a zero cross product.
- Collinear is stricter than parallel, which is stricter than coplanar — collinear ⇒ parallel ⇒ coplanar.
- The sign of \( k \) tells you the direction: \( k>0 \) the same way, \( k<0 \) opposite way.
- The most common error is checking only one coordinate ratio — confirm them all.
