In this lecture, we got a brief introduction to complex numbers, and were given the definition of a vector space (along with some examples).
1Complex numbers¶
C={a+bi∣a,b∈R,i2=−1}
Note that R⊂C.
We can then define the operations of addition and multiplication in the standard way.
Exercise: Prove that C is a field. (Need to show commutativity, associtivity, existence of identities, and existence of inverses for both operations. Also need to show distributivity.)
2Vector spaces¶
Definition: A set V equipped with the operations of addition and scalar multiplication over a field F for which the following properties hold:
- Commutativity of addition
- Associativity of addition
- Existence of an additive identity
- Existence of additive inverses
- Existence of a multiplicative identity (in F - left and right multiplication)
- Distributivity: a(u+v)=au+av for a∈F and u,v∈V, as well as (a+b)u=au+bu for a,b∈F and u∈V.
2.1Examples of vector spaces¶
- R2. An element of this vector space is, well, a vector, starting at the origin. To prove that this is a vector space, we define addition and scalar multiplication in the usual way, then verify the properties.
- Fn in general, over F.
- Polynomials. x↦a0+a1x+a2x2+…+anxn.
- Matrices. Mm×n(F)= the set of m×n matrices with entries in F. We define addition only on matrices with the same dimensions.
Exercises: Verify that the following are vector spaces: Rn over R, Cn over C, Cn over R. Verify that the following is not a vector space: Rn over C.