Добавил:
Upload Опубликованный материал нарушает ваши авторские права? Сообщите нам.
Вуз: Предмет: Файл:
FirstCourseGR.pdf
Скачиваний:
40
Добавлен:
07.03.2016
Размер:
7.41 Mб
Скачать

A

Appendix A Summary of linear algebra

 

 

For the convenience of the student we collect those aspects of linear algebra that are important in our study. We hope that none of this is new to the reader.

Vec tor space

A collection of elements V = {A, B, . . .} forms a vector space over the real numbers if and only if they obey the following axioms (with a, b real numbers).

(1) V is an abelian group with operation + (A + B = B + A V) and identity

0(A + 0 = A).

(2)Multiplication of vectors by real numbers is an operation which gives vectors and which is:

(i)distributive over vector addition, a(A + B) = a(A) + a(B);

(ii)distributive over real number addition, (a + b)(A) = a(A) + b(A);

(iii)Associative with real number multiplication, (ab) (A) = a(b(A));

(iv)consistent with the real number identity, 1(A) = A.

This definition could be generalized to vector spaces over complex numbers or over any field, but we shall not need to do so.

A set of vectors {A, B, . . .} is said to be linearly independent if and only if there do not exist real numbers {a, b, . . . , f }, not all of which are zero, such that

aA + bB + · · · + fF = 0.

The dimension of the vector space is the largest number of linearly independent vectors we can choose. A basis for the space is any linearly independent set of vectors {A1, . . . , An}, where n is the dimension of the space. Since for any B the set {B, A1, . . . , An} is linearly dependent, it follows that B can be written as a linear combination of the basis vectors:

B = b1A1 + b2A2 + · · · + bnAn.

The numbers {b1, . . . , bn} are called the components of B on {A1, . . . , An}.

An inner product may be defined on a vector space. It is a rule associating with any pair of vectors, A and B, a real number A · B, which has the properties:

(1)A · B = B · A,

(2)(aA + bB) · C = a(A · C) + b(B · C).

375

Summary of linear algebra

By (1), the map (A, B) (A · B) is symmetric; by (2), it is bilinear. The inner product is called positive-definite if A · A > 0 for all A =0. In that case the norm of the vector A is |A| ≡ (A · A)1/2. In relativity we deal with inner products that are indefinite: A · A has one sign for some vectors and another for others. In this case the norm, or magnitude, is often defined as |A| ≡ |A · A|1/2. Two vectors A and B are said to be orthogonal if and only if

A · B = 0.

It is often convenient to adopt a set of basis vectors {A1, . . . , An} that are orthonormal: Ai · Aj = 0 if i =j and |Ak| = 1 for all k. This is not necessary, of course. The reader unfamiliar with nonorthogonal bases should try the following. In the two-dimensional Euclidean plane with Cartesian (orthogonal) coordinates x and y and associated Cartesian (orthonormal) basis vectors ex and ey, define A and B to be the vectors A = 5ex + ey, B = 3ey. Express A and B as linear combinations of the nonorthogonal basis {e1 = ex, e2 = ey ex}. Notice that, although e1 and ex are the same, the 1 and x components of A and B are not the same.

M atrices

A matrix is an array of numbers. We shall only deal with square matrices, e.g.

3

1

or

6

3

18 .

 

 

 

1

2

5

 

105

0

0

1

2

 

 

 

 

 

 

 

 

The dimension of a matrix is the number of its rows (or columns). We denote the elements of a matrix by Aij, where the value of i denotes the row and that of j denotes the column; for a 2 × 2 matrix we have

A =

A11

A12

.

 

 

 

A21

A22

 

 

 

A column vector W is a set of numbers Wi, for example

 

W1

in two dimen-

W2

sions. (Column vectors form a vector space in the usual way.) The following rule governs multiplication of a column vector by a matrix to give a column vector V = A · W:

V2

= A21

A22

 

W2

=

A21W1

+ A22W2

V1

A11

A12

 

W1

 

A11W1

+ A12W2 .

In index notation this is clearly

 

 

 

 

 

 

 

 

 

 

2

 

 

 

 

 

Vi =

 

 

 

 

 

 

AijWj.

 

 

 

 

 

 

j=1

 

 

 

For n-dimensional matrices and vectors, this generalizes to

 

 

 

 

 

n

 

 

 

 

 

Vi =

 

 

 

 

 

 

AijWj.

 

 

j=1

376

Summary of linear algebra

Notice that the sum is on the second index of A.

Matrices form a vector space themselves, with addition and multiplication by a number defined by:

A + B = C Cij = Aij + Bij.

aA = B Bij = aAij.

For n × n matrices, the dimension of this vector space is n2. A natural inner product may be defined on this space:

A · B = AijBij. i,j

We can easily show that this is positive-definite. More important than the inner product, however, for our purposes, is matrix multiplication. (A vector space with multiplication is called an algebra, so we are now studying the matrix algebra.) For 2 × 2 matrices, the product is

AB = C C21

C22

 

 

 

 

 

A21

C11

C12

 

 

 

 

=

A22

B21

B22

 

 

A11

A12

B11

B12

 

 

=

A21B11

+ A22B21

A21B12

+ A22B22

 

A11B11

+ A12B21

A11B12

+ A12B22

 

In index notation this is

 

 

 

 

 

 

 

 

 

 

 

 

2

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Cij

=

AikBkj.

 

 

Generalizing to n × n matrices gives

 

k=1

 

 

 

 

 

n

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Cij

=

AikBkj.

 

 

k=1

Notice that the index summed on is the second of A and the first of B. Multiplication is associative but not commutative; the identity is the matrix whose elements are δij, the Kronecker delta symbol (δij = 1 if i = j, 0 otherwise).

The determinant of a 2 × 2 matrix is

det A = det

A11

A12

 

A21

A22

= A11A22 A12A21.

Given any n × n matrix B and an element Blm (for fixed l and m), we call Slm the (n 1) × (n 1) submatrix defined by excluding row l and column m from B, and we call Dlm the determinant of Slm. For example, if B is the 3 × 3 matrix

 

 

B11

B12

B13

 

 

B

=

B21

B22

B23

 

,

 

B31

B32

B33

 

377

 

Summary of linear algebra

 

 

 

 

 

 

 

then the submatrix S12 is the 2 × 2 matrix

 

 

 

 

 

 

S12

= B31

B33

 

 

 

B21

B23

 

 

and its determinant is

 

 

 

 

 

D12 = B21B33 B23B31.

 

Then the determinant of B is defined as

 

 

 

 

 

n

 

 

 

 

 

 

 

 

det (B) =

(1)i+jBijDij

for any i.

j=1

In this expression we sum only over j for fixed i. The result is independent of which i was chosen. This enables us to define the determinant of a 3 × 3 matrix in terms of that of a 2 × 2 matrix, and that of a 4 × 4 in terms of 3 × 3, and so on.

Because matrix multiplication is defined, it is possible to define the multiplicative inverse of a matrix, which is usually just called its inverse;

(B1)ij = (1)i+jDji/ det (B)

The inverse is defined if and only if det (B) =0.

Соседние файлы в предмете [НЕСОРТИРОВАННОЕ]