Chapter 6 Matrices Flashcards

1
Q

What does every matrix have?

A

Numbers (elements)
Collumn/s
Row/s

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How do you workout out the order of a matrix?

A

The order of a matrix is the number of rows (m) x the number of columns (n).

So a matrix with 2 rows and 1 column has the order ‘2 x 1’

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

When can you add and subtract matrices?

A

Only when they have the same order.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How do you add and subtract matrices?

A

By adding the corresponding elements from each matrix.

E.g. (1 2) + (4 5) = (5 7)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What do you do to multiply a matrix by any number / when you see a big number in front of a matrix?

A

Multiply each element in the matrix by that number.

E.g. 4 (3 2) = (12 8)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the scalar quantity?

A

The number you multiply your matrix by.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the matrix quantity?

A

The product of a whole multiplication (a number x a matrix).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How do you work out the values of letters (missing numbers) in matrix additions / subtractions?

A

Make an equation for the letter.

E.g. (a 7) + (3 -1) = (11 6)

a + 3 = 11
a = 11 - 3
a = 8

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

When can you multiply matrices?

A

Only when the number of columns in the first matrix is equal to the number of rows in the second matrix.

Number of collumns = second number in order
Number of rows = first number in order

Or just write out the order of each matrix and if the two inside numbers are the same then can multiply!

E.g. 1 x 2 2 x 2

Inside numbers are the same so can multiply!

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How can you workout the order of the product of a matrix multiplication?

A

Write the the order of both the matrices you are multiplying,

E.g. 2 x 2 2 x 1

The order of your product will be the two outside numbers!

So 2 x 1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

How do you multiply matrices?

A

1) workout the order of your product
2) first no. In product = (first number in first matrix x first number in second) + (second number in first matrix x third number in second matrix)
3) second no. In product = (first number in first matrix x second number in second) + (second number in first matrix x fourth number in second matrix)
4) third no. In product = (third number in first matrix x first number in second matrix) + (fourth number in first matrix x third number in second matrix)
5) fourth no. In product = (third number in first matrix x second number in second matrix) + (fourth number in first matrix x fourth number in second matrix)

and etc.
Some matrices may have less or more than four numbers.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is the identity matrix?

A

Is always called ‘I’.

= 1 0
0 1

Represents the number one as when multiplied by a matrix it stays the same, but when added to a number it adds one.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is the zero matrix?

A

Is always called ‘Z’.

= 0 0
0 0

Represents the number 0, as when multiplied by a matrix it changes it to zero, when added to a matrix it stays the same.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is a matrix?

A

A matrix is a rectangular array of numbers.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

How can you work out the value of letters (missing numbers) in matrix multiplications?

A
  • work out what was multiplied by what to make each element in the product matrix using the matrix multiplication method.
  • form equations to solve each letter
  • solve them.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

How do you work out the image of a point after transformation by a matrix?

A

E.g. Point A = (1,1)

Matrix = 2 0
0 2

  • turn A into a vector = 1
    1
  • multiply by Matrix (matrix always in front of vector in multiplication)
  • so image of point A after transformation by the matrix is the product matrix of the multiplication.
17
Q

How do you transform the unit square (coordinates (0,0) (1,0) (1,1) (0,1) ) using a matrix?

A
  • Multiply all 4 vertices (coordinates) of the unit square by your matrix.
  • Plot each new point to make new square.
  • work out the total enlargement from the original unit square to your new square.
18
Q

What matrix rotates something 90 degrees clockwise about 0?

A

0 1

-1 0

19
Q

What matrix rotates something 180 degrees about 0?

A

-1 0

0 -1

20
Q

What matrix rotates something 90 degrees anti-clockwise about 0?

A

0 -1

1 0

21
Q

What matrix reflects something in the x axis?

A

1 0

0 -1

22
Q

what matrix reflects something in the y axis?

A

-1 0

0 1

23
Q

What matrix reflects something in the line y=x?

A

0 1

1 0

24
Q

What matrix reflects something in the line y=-x?

A

0 -1

-1 0

25
Q

What matrix enlarges something by scale factor m, centre 0?

A

m 0

0 m

26
Q

If asked to describe fully the single transformation a matrix represents…

A

Work out the image of the two points A (1,0) and B (0,1) under transformation by that matrix every time

Draw the old A and B points on one graph, and the new A’ and B’ points on a graph next to it to work out what had happened to them e.g. Reflection / rotation / enlargement etc