1
Slide 1Linear algebra A brush-up course
Anders Ringgaard Kristensen
Slide 2Outline
Real numbers
- Operations
- Linear equations
Matrices and vectors Systems of linear equations
Slide 3Let us start with something familiar! Real numbers! The real number system consists of 4 parts:
- A set R of all real numbers
- A relation < on R. If a, b ∈ R, then a < b is either true or
- false. It is called the order relation.
- A function +: R × R → R . The addition operation
- A function · : R × R → R . The multiplication operation.
A number of axioms apply to real numbers
Slide 4Axioms for real numbers I
Associative laws
- a + (b + c) = (a + b) + c
- a · (b · c) = (a · b) · c
Commutative laws
- a + b = b + a
- a · b = b · a
Distributive law
- a · (b + c) = a · b + a · c
Axioms for real numbers II
Additive identity (”zero” element)
- There exist an element in R called 0 so that, for all a, a + 0 = a
Additive inverse
- For all a there exists a b so that a + b = 0, and b = − a
Multiplicative identity (”one” element)
- There exists an element in R called 1 so that, for all a, 1 · a = a
Multiplicative inverse
- For all a ≠ 0 there exists a b so that a · b = 1, and b = a-1
Solving equations Let a ≠ 0 and b be known real numbers, and x be an unknown real number. If, for some reason, we know that a · x = b, we say that we have an equation. We can solve the equation in a couple of stages using the axioms: a · x = b ⇔ a-1 · a · x = a-1 · b ⇔ 1 · x = a-1 · b ⇔ x = a-1 · b