matrices the basics vocabulary and basic concepts

11
Matrices The Basics Vocabulary and basic concepts

Upload: calvin-allen

Post on 23-Dec-2015

214 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Matrices The Basics Vocabulary and basic concepts

Matrices The Basics

Vocabulary and basic concepts

Page 2: Matrices The Basics Vocabulary and basic concepts

Mrs. S Richards

A matrix is an array of numbersFor exampleThree classes are split into boys and girls.A: 15 boys and 17 girls.B: 18 boys and 14 girls.C: 10 boys and 19 girls.

This data could be arranged as a 2 X 3 MATRIX.

15 18 10

17 14 19

Page 3: Matrices The Basics Vocabulary and basic concepts

Mrs. S Richards

A matrix with R rows and C columns is called an

R X C Matrix.

This is called the ORDER of the matrix.

Each entry in the matrix is called an ELEMENT.

Page 4: Matrices The Basics Vocabulary and basic concepts

Mrs. S Richards

The CO-ORDINATE (2,3) has ONE ROW and TWO COLUMMS. It is a 1X2 matrix

A matrix with only one row is called a ROW VECTOR.

The vector represents a TRANSLATION or shift

6 units to the right and 2 units down.

A matrix with only one column and any number of rows is called a

COLUMN VECTOR.

A Matrix with the same number of ROWS as COLUMNS is called a

SQUARE MATRIX.

1 2 6

6 3 7

3 0 10

6

2

Page 5: Matrices The Basics Vocabulary and basic concepts

Mrs. S Richards

Addition and Subtraction of Matrices

We may add or subtract two matrices ONLY if they have the SAME ORDER.

Adding or subtracting matrices is carried out by adding or subtracting their corresponding elements.

2 1 6 5 8 4

3 4 1 7 4 11

2 3 4 1 6 2 1 3 2

1 3 6 0 5 4 1 2 2

5 7 0 2 5 3 3 2 3

If two matrices A and B are of UNEQUAL ORDER then A + B does not exist.

Page 6: Matrices The Basics Vocabulary and basic concepts

Mrs. S Richards

Addition and Subtraction of Matrices

62 1 2 1

3 4 3

8 4

4 1

5 6 5

1 7 1 7 4

1

If two matrices A and B are of EQUAL ORDER then A + B = B + A

Addition of Matrices (where allowed) is COMMUTATIVE

Page 7: Matrices The Basics Vocabulary and basic concepts

Mrs. S Richards

EQUAL MATRICES

Two matrices A and B are equal if EVERY element in A is equal to EVERY element in B.

Two matrices may be the SAME ORDER but NOT EQUAL.

4 3 4 3

1 0 1 0

CAN YOU SEE WHY?

Page 8: Matrices The Basics Vocabulary and basic concepts

Mrs. S Richards

4 3

1 0A

Multiplication by a Scalar

If k is a constant scalar, the matrix kA is such that EACH OF ITS ENTRIES ARE

MULTIPLIED by k

8 62

2 0A

4 3

1 0

k kkA

k k

345 51

5 15 0

A

Page 9: Matrices The Basics Vocabulary and basic concepts

Mrs. S Richards

The ZERO or NULL Matrix

Has every element ZERO.

0 0

0 0

0 0 0

0 0 0

Adding or subtracting the NULL Matrix will have no effect.

MULTIPLYING by the NULL Matrix will create another NULL MATRIX.

Page 10: Matrices The Basics Vocabulary and basic concepts

Mrs. S Richards

The UNIT or IDENTITY MATRIX IA VERY IMPORTANT MATRIX. (Later work!)1 0

0 1

This is denoted by the letter I and has zero entries except for 1’s on the diagonal.

MULTIPLYING by the IDENTITY Matrix will create the SAME MATRIX. In a similar way to Multiplying a number by 1

1 0 0

0 1 0

0 0 1

These are always SQUARE MATRICES

Page 11: Matrices The Basics Vocabulary and basic concepts

Mrs. S Richards

The TRANSPOSE OF A MATRIX

The rows are written as columns and the columns as rows.

A=0 5

1 2

t 0A

5

1

2

4 5 7

3 1 2

1 2 0

B t

1

2

02

43

1B 5

7