42 Chapter 2 Matrices and Linear Systems
Note that the integers do not form a field, but only a ring (there is no multiplicative
inverse for integers).
2.6.2 Definition and Properties
Informally, a linear space consists of a collection of objects (called vectors), real
numbers (scalars), and two operations (adding vectors and multiplying vectors by
scalars), which are required to have certain properties. Rather than sticking to the
lowercase boldface generic tuple notation, we’re going to use a notation that makes
explicit the fact that we’re dealing with vectors—vectors will be notated as lowercase
italic letters with a diacritical arrow. Typically, we use u, v, and w,orv
1
, v
2
, ..., v
n
for lists of vectors. Formally, suppose we have the following:
AfieldK (which, for us, will be R).
A (nonempty) set of vectors V .
An addition operator “+” defined on elements u, v ∈V .
A multiplication operator “∗” defined on scalars k ∈K and v ∈ V (often, the “∗”
is omitted and concatenation used, as in v =k u).
The addition and multiplication operations exhibit the rules listed below.
Properties:
i. Closure under multiplication: ∀k ∈ K and ∀v ∈V , kv ∈ V .
ii. Closure under addition: ∀u, v ∈V , u +v ∈ V .
iii. Associativity of addition: ∀u, v, w ∈ V , u + (v +w) = (u +v) +w.
iv. Existence of additive identity element: ∀v ∈ V , ∃ avector
0 ∈ V called the zero
vector, such that v +
0 =v.
v. Existence of additive inverse: ∀v ∈ V , ∃ avector −v, such that v +(−v) =
0.
vi. Commutativity of addition: ∀u, v ∈V , u +v =v +u.
vii. Distributivity of multiplication over addition: ∀k ∈K and ∀u, v ∈V , k(u +v) =
k u + k v.
viii. Distributivity of addition over multiplication: ∀k
1
, k
2
∈ K and ∀v ∈ V , (k
1
+
k
2
)v = k
1
v + k
2
v.
ix. Associativity of multiplication: ∀k
1
, k
2
∈ K, and ∀v ∈ V , (k
1
k
2
)v = k
1
(k
2
v).
x. Existence of multiplicative identity: ∀v ∈ V ,1∗v =v.
As we stated earlier, our concern here is with computer graphics, and as a result
the field K is just the real numbers R, and the vectors in V are tuples of real numbers:
a =(a
1
, a
2
, ..., a
n
). In later chapters, once we’ve established the relationship between