Vector coordinates
A coordinate vector is an ordered list of numbers interpreted relative to a specified coordinate system.
On this page 8 sections
01A vector records numbers in a fixed order#
A vector records numbers in a fixed order. With coordinates (cats, dogs), records 3 cats and 1 dog. Each number is an entry of the vector.
For spatial coordinates (x, y), points from the origin three units right and two down. Each sign belongs to its named axis.
Vectors can record more than two quantities. In order (tokens, links, errors), records 8 tokens, 2 links and 0 errors. It has three entries, so its dimension is three. A zero still occupies a slot.
Order: (tokens, links, errors). Vector: . Value for links?
Show answer and explanation
Links occupy the second slot, which contains .
02Coordinate names determine the order#
Coordinate names determine the order. With 3 cats and 1 dog, order (cats, dogs) gives . Order (dogs, cats) gives . The recorded quantities stay the same when their labels move with them.
Order: (red, green, blue). Values: blue=5, red=2, green=0. Which vector?
Show answer and explanation
Red first, green second, blue third: .
03Check your understanding#
Order: (width, height). Values: height=7, width=4. Which vector?
Show answer and explanation
Width takes the first slot: .
Keep every value with its coordinate label, including zero entries.
- Interpret a vector using its declared coordinate order
Further questions
Can a vector have more than three entries?
Sources & further reading
- [1]Boyd and Vandenberghe: Introduction to Applied Linear Algebra, Chapter 1 ↗vmls-book.stanford.edu · Article
- [2]OpenStax Calculus Volume 3: Vectors in the Plane ↗openstax.org · Article