1 Systems of Linear Equations Flashcards

1
Q

In a system of equations when are all equations satisfied?

A

At the equilibrium

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

When does the substitution method become hard?

A

When there are more equations

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

When is a system of equations consistent?

A

When the system has atleast one solution

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

When is a system of equations inconsistent

A

When there are no solutions

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

How should you rearrange equations so Gaussian elimination can be used?

A

With all the unknowns on the left and parameters on the right

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

What is a matrix

A

A rectangular array of elements

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

Why does an m x n matrix look like?

A

M rows and N columns

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

What is a vector?

A

A matrix with only one row or one column

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

What notation is used for a transposed matrix

A

A’ or A ^t if A Is the original matrix

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

What does transposing a matrix do?

A

• if matrix A is m x n then matrix A’ is n x m

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

What is a square matrix

A

A matrix with the same number of rows and columns

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

What are symmetric matrices

A

A matrix where A=A’ this can only happen if the matrix is square

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

What do you do when multiplying by a scalar?

A

Multiply all elements by the scalar

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

When can matrices be added?

A

When they are the same size

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

When can matrices be subtracted?

A

When they are the same size

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

When can two matrices be multiplied?

A

When the number of columns of the first is equal to the number or rows of the second

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

If a matrix (m x n) and a matrix (n x k) are multiplied, what are the dimensions of the result

A

m x k

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

Does ABC=BAC if all letters are matrices

A

No

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

Does (AB)C=A(BC) if all letters are matrices?

A

Yes

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

Does A(B+C)= AB+AC if all letters are matrices?

A

Yes

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

Does (AB)’=B’A’

A

Yes

22
Q

What is the identity matrix?

A

A square matrix made up of n rows and columns, where all elements are zeros except for the diagonal which are 1’s

23
Q

What happens when a matrix of the right dimensions is multiplied by the identity matrix?

A

It equals the original matrix

A x In = In x A = A

24
Q

What is the inverse matrix

A

The inverse matrix of an n x n matrix A is an n x n matrix A^-1 such that A x A^-1 = A^-1 x A = In

25
Q

When are inverse matrices defined?

A

For square matrices when the determinant doesn’t equal zero

26
Q

When is a matrix called singular

A

When the matrix doesn’t have an inverse

27
Q

When is a matrix non singular?

A

When the matrix has an inverse

28
Q

When are the inverses of matrices unique?

A

Always

29
Q

How is the inverse of a 2x2 matrix found

A

A^-1= 1/|A|x (a22 -a12)

(-a21 a11)

30
Q

What does (A^-1)^-1 equal?

A

A

31
Q

What is (A^-1)’ equal to?

A

(A’)^-1

32
Q

What is (AB)^-1 equal to? Assuming AB is invertible

A

B^-1A^-1

33
Q

What is (cA)^-1 equal to? Assuming c is a number not equal to 0

A

c^-1A^-1

34
Q

What form can a system of linear equations be put into

A

Matrices in the form Ax= b

35
Q

What is the determinant used for?

A

To find the inverse matrix or determine if it exists

36
Q

When do determinants occur?

A

Only with square numbers

37
Q

What is the determinant of a 1x1 matrix?

A

The only element in the matrix

38
Q

What is the determinant of a 2x2 matrix

A

a11a22-a12a21

39
Q

What is the sarrus rule

A

A way of finding the determinant in a 3x3 matrix

|A| = a11a22a33 + a12a23a31 + a13a21a32 - a31a22a13 - a32a23a11 - a33a21a12

Diagonal pattern

40
Q

How can the determinant be found for larger matrices?

A

They can be broken down until the determinant is easier to find with the below equation

|A|= a11|A11| - a12|A12| + … + (-1)^(1+n)a1n|A1n|

41
Q

What is the minor of an element

A

|Aij| with deleted row i and column j is called the minor of element aij

42
Q

What is the cofactor

A

The cofactor is the minor with the appropriate sign

Cij = (-1)^(i+j) |Aij|

43
Q

What is |A’| equal to?

A

|A|

44
Q

What is |AB| equal to

A

|A| x |B|

45
Q

What is C’ called?

A

The adjoint of the given matrix, it is the transposed matrix of the cofactors

46
Q

What are the two ways the inverse can be found?

A

A^-1 = 1/|A| x C’

A^-1 = 1/|A| x (-1)^(i+j) x |Aji|

47
Q

What is the way of finding the inverse of a particular element in a matrix

A

Aij^-1= 1/|A| x Cji

48
Q

What can be said about the equation system Ax=b if |A| is not equal to zero

A

There is a unique inverse A^-1

The solution x= A^-1 x b is the only solution

49
Q

What is cramers rule?

A

A way of finding the solution to an equation system

X1= |D1|/|A|

Xn = |D1|/|A|

50
Q

What is the Leontief model?

A

An input output model, it is a classical application of linear Algebra in economics

51
Q

Equation for the Leontief model

A

Xi = ai1x1 + … + ainxn + bi

  • xi= total number of good i produced
  • aij= units of good i needed to produce one unit of j
  • aijxj = number of units of good i needed to produce xj units of good j
  • bi = consumption of good i