Matrices Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

What do i and j represent in matrices?

A

i is the row and j is the column.

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

What is the identity matrix? What is a null matrix?

A

The identity matrix is a matrix which has 0’s everywhere except diagonally from the top left to bottom right, which are 1’s. The null matrix is just a matrix full of 0’s.

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

What is the transpose of a matrix?

A

Where aji = aij, the matrix is symmetric.

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

What order matrix do you get when you multiply two matrix together?

A

A matrix with the number of rows equal to that of matrix A and a number of columns equal to that of matrix B.

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

How do you find the elements of the product of two matrices A and B?

A

cij = sum from k=1 to number of columns in A or number of rows in B of :aik*bkj

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

What do you get if you multiply a matrix A by the identity matrix I?

A

You get the original matrix, A.

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

What do you get if you multiply a matrix by its inverse?

A

The identity matrix I.

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

What is the equation for the inverse of a matrix including minors?

A

A^-1 = 1/|A| * C(transpose)

where C is the cofactor matrix whose elements are multiplied by (-1)^(i+j)

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

How do you find the inverse of a 2 by 2 matrix?

A
  • Swap the position of the two leading diagonal elements
  • Negate the two off-diagonal elements
  • Multiply all by the reciprocal of the determinant of tha matrix
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How do you find the inverse of a 3 by 3 matrix?

A

Find all the minors - this is the cofactor matrix.

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

How do you solve simultateous equations using the inverse matrix?

A

Put the equations into a matrix, with one unknown column and one column for the answers. The answers to the simultaneous equation are the inverse of the matrix multiplied by the answers of the equation. (e.g. x+y = 4 - 4 is the answer here)

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

How do you solve simultaneous equations using determinants?

A
  • Solve the equations to find x and y
  • The answers you get should look similar to determinants
  • Convert to determinants and rearrange so you have x and y on the top and the determinants as the denominators
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How do you solve simultaneous equations using Gaussian elimination?

A

Use row operations to make a triangle of 0’s in the bottom left corner, starting from the top and working round the corner

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

What does it mean if, during Gaussian elimination, you get a zero in the bottom right corner (whole bottom row are zeros?

A

There is no solution to this set of equations.

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

How do you solve simultaneous equations using row reduced echelon form?

A

Use row operations until you have the identity matrix. Find zeros in same order, but after bottom left triangle, start from top middle zero and then work round the corner.

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

What does it mean if a set of vectors, e.g. a, b and c are linearly independent?

A

Linearly independent if αa + βb + γc = 0 is only satisfied if α = β = γ = 0

17
Q

What is the procedure to work out if a set of vectors is linearly independent?

A

Put α, β and γ in front of each matrix and make it equal to zero, and find α, β and γ. Then form a matrix with the vectors as columns and obtain row-reduced echeclon form. If there are all zeros in final column, is linearly independant.

18
Q

What are the conditions required for a set of vectors to form a linear vector space?

A
  • The set is closed under commutative and associative addition (a+b = b+a and (a+b)+c = a+(b+c)
  • The set is closed under multiplication by a scalar that gives a new vector
  • There exists a null vector such that a=0 = a
  • Multiplication by unity leaves all vectors unchanged
  • All vectors have a corresponding negative vector such that: a+(-a) = 0 and -1 x a = -a
19
Q

What is the span of a set of vectors?

A

The infinity set of vectors that may be written as linear combinations of the original set of vectors.

20
Q

What is the image of a vector A?

A

The span of the column vectors of A.

21
Q

What is the kernel of a vector A?

A

The solution of the square matrix multiplied by α, β and γ, all equaling zero (vector with α, β and γ as x,y and z)

22
Q

What is the rank of a matrix A?

A

The dimension of the image of A (number of linearly independent rows or linearly independent columns). Is also the number of non-zero rows in row reduced echelonform. ALso the size of the largest square submatrix with a non-zero determinant.

23
Q

What is nullity of matrix A?

A

The dimension of the kernel of A.

24
Q

What is the rank-nullity theorem?

A

For a m by n matrix, rank(A) + nullity(A) = n

25
Q

How can you tell if there are solutions from the rank?

A

If the rank is equal to the number of columns of A, then there are unique solutions. If the rank of A is different to the rank of the cofactor matrix then there are no solutions.

26
Q

What are linear transformations?

A

Where a matrix is multiplied by another matrix A to transform it into another vector space.

27
Q

How do you find the eigenvalues of a matrix?

A

Find the magnitude of the matrix - lambda x the identity matrix. Then solve the equation.

28
Q

How do you find the eigenvectors?

A

Multiply the found matrix from (A-lambda X I) by e11 and e21, using the different eigenvalues.

29
Q

How do you normalise eigenvectors?

A

Multiply the found eigenvector by beta which is equal to the inverse of the square root of the sum of the individual elements squared.

30
Q

How can you find eigenvectors using the vectors/cross product?

A

Find (A-lambda X I) and take the vector product of the first two rows.

31
Q

How do you find the inverse of a matrix using the identity matrix?

A

Perform row operations until matrix A is in row-reduced echelon form, but do the same row operations to the identity matrix. This will convert I into the inverse of A.

32
Q

What is matrix diagonalisation?

A

You want to find the non-singular matrix P such that: D = P^-1 X A X P, where D is a diagonal matrix.

33
Q

How do you find P?

A

P is constructed by arranging the eigenvectors of A as the columns. The diagonal elements of D then correspond to the eigenvalues of A.

34
Q

What do you get if you put a Diagonal matrix to the power of n?

A

All the diagonal elements are put to the power of n too.