Real Analysis/Normed Linear Spaces: Difference between revisions

From testwiki
Jump to navigation Jump to search
imported>Chase-foxen
mNo edit summary
 
(No difference)

Latest revision as of 18:46, 18 September 2024

We will give a brief review of concepts from linear algebra regarding linear spaces and their properties. This is not an exhaustive discussion, so the reader is advised to consult a linear algebra text for more details if these topics are unfamiliar.

Linear Space

A linear space (also called a vector space) is a set Vover a field 𝔽 with two operations defined on V, addition and scalar multiplication. Let x,yV and α,β𝔽. The following eight properties define the structure of a linear space.

1. x+y=y+x (Symmetry of addition)
2. (x+y)+z=x+(y+z) (Associativity of addition)
3. There exists a unique element 0V such that x+0=x (Additive identity element)
4. For each xV there exists (x)V such that x+(x)=0 (Additive inverse)
5. 1x=x (Scalar multiplication by multiplicative identity)
6. α(βx)=(αβ)x (Associativity of scalar multiplication)
7. (α+β)x=αx+βx
8. α(x+y)=αx+αy

If the field 𝔽=, we call this a real linear space. Similarly, if the field 𝔽=, we call this a complex linear space. We will restrict our study to the case of real linear spaces. Elements of a linear space (or vector space) are called vectors.

Example

Euclidean Space

The set n is the set of all n-tuples of real numbers. So for some xn, x=(x1,x2,,xn) where xi, 1in. Say x,yn and α. This set is a linear space. The addition property and scalar multiplication are shown by

x+y=(x1,x2,,xn)+(y1,y2,,yn)=(x1+y1,x2+y2,,xn+yn)

and

αx=α(x1,x2,,xn)=(αx1,αx2,,αxn).

The reader should verify n satisfies the above eight properties of a linear space. Recall, the Euclidean space is equipped with an inner product (often called the dot product in n) that is given by

x,y=xy=i=1nxiyi.

This will come in handy in a following example.

Subspace

A subspace of a vector space V is a nonempty subset WV such that W is also a linear space. So for any x,yW and α,β we have that αx+βyW(i.e., W is closed under addition and scalar multiplication).

Example

Consider V=3 and A={(2,0,0),(0,43,0)}V. Then the span of A is the set W=spanA={(x1,x2,0):x1,x2}. We will show that the set W is a subspace of V.

Proof

First, we need to show that the zero element is in W (otherwise, it could not be a linear space). It follows that

0(2,0,0)+0(0,43,0)=(0,0,0)+(0,0,0)=(0,0,0)W.

Therefore, W. Now, suppose x,yWand α,β. We see

αx+βy=α(x1,x2,0)+β(y1,y2,0)=(αx1,αx2,0)+(βy1,βy2,0)=(αx1+βy1,αx2+βy2,0)=(z1,z2,0)=z.

Since z1,z2 by the field properties of the reals, we have that zW. Hence, this set is closed under the vector space operations. Therefore, W is a subspace of 3.


The astute reader should notice that this subspace is a plane in three-dimensional space.

Basis

A linear combination of vectors is an expression

α1x1+α2x2++αnxn,

where xiVand αi for 1in. This can be expressed in more concise notation as

i=1nαixi.

Given a nonempty subset of a linear space AV the set of all linear combinations of elements of A is called the span of A, which we denote with spanA. The span of A will generate a subspace W of V.

A collection of vectors x1,,xk from V is said to be linearly independent when

i=1kαixi=α1x1+α2x2++αkxk=0

only when α1,α2,,αk=0. If any nonzero αi satisfies this equation, then the set of vectors is called linearly dependent.

A basis of a linear space V is a linearly independent set of vectors which spans V. That is, the subset AV is a basis if spanA=V and A is a linearly independent set of vectors. The number of linearly independent vectors it takes to span a vector space defines the dimension of that vector space. A vector space V is finite-dimensional if it can be spanned by a finite set of basis vectors. If a vector space is not finite-dimensional, it is infinite-dimensional. We denote the dimension of a vector space as dimV.

Example

The standard basis of the vector space n is the set

{e1,e2,,en}={(1,0,,0),(0,1,,0),,(0,0,,1)},

where the i-th basis vector has a one in the i-th entry and zeroes elsewhere.

So, in three-dimensional space 3 our basis is the set

{e1,e2,e3}={(1,0,0),(0,1,0),(0,0,1)}.

Hence, any vector in 3 can be expressed as a linear combination of these basis vectors. A suggested exercise for the reader is to prove that the expression of a vector as a linear combination of basis vectors is unique. Note that the basis set has 3 elements, so the space it spans has a dimension of 3, i.e, dim3=3.

Norms

In a linear space, we often want to have a concept of the "size" of elements or of the distance between elements. A norm is a function :V such that for x,yV and α the following properties hold.

  1. x0
  2. x=0x=0
  3. αx=|α|x
  4. x+yx+y (Triangle inequality)

The norm serves as a way to describe the size of individual elements. Now, if the norm is used to describe the size of a difference between vectors (xy), it measures the distance between the two. So, we find that the norm induces a metric on the space V. Hence, we describe a metric function on V by

d(x,y)=xy.

The reader is encouraged to verify that this function satisfies the metric properties.

A linear space with a norm on it is called a normed linear space. A normed linear space that is complete is called a Banach space.

Example

Euclidean space n has a norm given by

x=(i=1nxi2)12=x12+x22++xn2.

This should be familiar from the Pythagorean theorem. Since is complete, we have that n is also complete. Thus, Euclidean space would also be an example of a Banach space. We should also note that the norm here can be expressed as

x=(i=1nxi2)12=x,x12.

So, in this case, the inner product induces a norm on our space. Template:BookCat