Matrices Flashcards

1
Q

What is the order of the following matrices ?

A

Number of rows by numbers of columns
y by x

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

What does it mean for matrices to be “non conformable”?

A

This means that they matrices do not have the exact same order. For example

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

What does associative mean?

A

It means that despite the order/ grouping of numbers, the answers will be the same.

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

What does it mean for something to be commutative ?

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

What are the general steps to carrying out matrices multiplication?

A
  1. write out the order of both matrices
  2. see if compatible, if they are write order of answer matrix
  3. start with first element (1x1) first row by first colum
  4. multiply each pair of numbers and add up the answers
  5. then go onto next element (1x2) first row by second column
  6. multiply each pair and add up numbers
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Multiply

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

Multiply (find FE)

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

Is matrix muliplication commutative or associative?

A
  • not commutative
    as order within which multiplied does matter
  • is associative
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

what is the original point/shape and the transformed point/shape reffered to ?

A
  • orginal= object
  • transformed= image
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

what is a transformation?

A

the mapping of an object onto a image

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

how do you find the transformation representated by a given matrix?

A
  1. split up the identity matrix into points (unit vectors)
  2. see how they have been transformed by ploting the points on a graph
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Describe the transformation of the matrix

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

What is the transformation matrix for any angle theta anti-clockwise. ?

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

What is the matrix transformation for any clockwise rotation by angle theta?

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

Describe the transformation by the matrix

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

Describe the transformation by the matrix

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

What are shears?

A

The base stays rooted and the rest shifts and becomes parallel. The area of original shape is the same to the shear.

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

What are the 2 different types of shears?

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

Successive transformations

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

3D matrices

22
Q

Describe the Transformation under matrix

23
Q

Describe the Transformation under matrix

24
Q

Describe the transformation

25
What are invariant points?
Points that do not change after a transformation. The origin will always be an invariant point
26
What are invariant lines?
A line of points that MAY be invariant or points that remain upon that line after a transformation
27
28
More proof by induction matrices
29
30
31
32
Describe the 3D planes
33
What are the components of an algorithm?
* finite number of steps * unambigious steps * deterministic
34
What is complexity ?
* Size in relation to run time (efficiency ) * measure of which one is faster
35
Perform a quick sort algorithm to sort it into ascending order
**values less than or equal to go to the left of pivot**
36
what is * first fit * first fit decreasing * full bin
* FF: putting the numbers using given order in question * FFD: ordering the list into descending order - biggest first * FB: using brain for optimal solution
37
what does heuristic mean?
* a method that finds the solution efficently, but with no gurante that this solution is optimal * important when classical methods fail, only way to find is exhauting all solutions
38
how can the efficency of different packing methods be tested?
counting the number of comparisions needed in worst case
39
what is the complexit of the first fit and first fit decreasing algorithm , in the worst case?
o (n sqaured)
40
what is the complexity of the quick sort algorithm , in the worst case?
O (n squared)
41
What is big O notation?
42
43
Use quick sort to sort the following numbers in descending order
44
Use quick sort to sort the following numbers in descending order
45
46
47
48
49
50
51
52