2.6 Matrices Flashcards

1
Q

Matrix:
what are they?
when are they equal?

A

A matrix is a rectangular array of numbers. A matrix with m rows and n columns is called an
m × n matrix.
The plural of matrix is matrices.
A matrix with the same number of rows as
columns is called square.
Two matrices are equal if they have the same number of rows and the same number of columns and the corresponding entries in every position are equal.

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

Some terminology about matrices:

A

Let m and n be positive integers and let
A =
⎡ a11 a12 a1n ⎤
⎢ a21 a22 a2n ⎥
⎢ ⋅⋅ ⋅ ⎥
⎢ ⋅⋅ ⋅ ⎥
⎢ ⋅⋅ ⋅ ⎥
⎢ am1 am2 . amn ⎥
⎣ ⎦

The ith row of A is the 1 × n matrix [ai1, ai2, … , ain]. The jth column of A is the m × 1 matrix
⎡ a1j ⎤
⎢ a2j ⎢
⎢ . ⎢
⎢ ⎥
⎢ amj ⎥
⎣ ⎦
The (i, j)th element or entry of A is the element aij, that is, the number in the ith row and
jth column of A.
A convenient shorthand notation for expressing the matrix A is to write
A = [aij],
which indicates that A is the matrix with its (i, j)th element equal to aij.

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

Matrix Addition:

A

Let A = [aij] and B = [bij] be m × n matrices. The sum of A and B, denoted by A + B, is
the m × n matrix that has aij + bij as its (i, j)th element. In other words, A + B = [aij + bij].

Matrices of different sizes cannot be added, because such matrices will not both have
entries in some of their positions.

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

Matrix products:

A

A product of two matrices is defined only when the number of columns in the first matrix equals the number of rows of the second matrix.
Product not defined otherwise.

Let A be an m × k matrix and B be a k × n matrix. The product of A and B, denoted by AB, is
the m × n matrix with its (i, j)th entry equal to the sum of the products of the corresponding
elements from the ith row of A and the jth column of B. In other words, if AB = [cij], then
cij = ai1b1j + ai2b2j + ⋯ + aikbkj.

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

Associativity of Matrix multiplication:

A

Matrix multiplication is associative, as can easily be proved using the associativity
of addition and multiplication of real numbers

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

Matrix Commutativity.

A

Its not.

In general, suppose that A is an m × n matrix and B is an r × s matrix.
If n = r, AB defined. If s = m, BA defined.
Even when AB and BA are both defined,
they will not be the same size unless m = n = r = s. Hence, if both AB and BA
are defined and are the same size,
then both A and B must be square and of the same size.
Furthermore, even with A and B both n × n matrices, AB and BA are not necessarily equal.

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

Identity Matrix:

A

The identity matrix of order n is the n × n matrix
In = [𝛿ij], (the Kronecker delta) where
𝛿ij = 1 if i = j and 𝛿ij = 0 if i ≠ j.
page 190, to see matrix.

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

Matrix multiplied by identity Matrix:

A

Multiplying a matrix by an appropriately sized identity matrix does not change this matrix. In
other words, when A is an m × n matrix, we have
AIn = ImA = A.

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

Power of Matrices:

A

Powers of square matrices can be defined because matrix multiplication is associative. When A
is an n × n matrix, we have
A^0 = In, A^r = AAA ⋯ A ( A written r times).

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

Transpose of a matrix:

A

Let A = [aij] be an m × n matrix. The transpose of A, denoted by A^t,
is the n × m matrix
obtained by interchanging the rows and columns of A. In other words, if At = [bij], then
bij = aji for i = 1, 2, … , n and j = 1, 2, … , m.

ij th entry for A is ji the entry for its transpose.

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

Symmetric Matrix:

A

A square matrix A is called symmetric if A = A^t.
Thus, A = [aij] is symmetric if aij = aji for
all i and j with 1 ≤ i ≤ n and 1 ≤ j ≤ n.

Note that a matrix is symmetric if and only if it is square and it is symmetric with respect to its
main diagonal (which consists of entries that are in the ith row and ith column for some i).
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Zero One Matrix.

A

A matrix all of whose entries are either 0 or 1 is called a zero–one matrix.

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

Join of matrices A and B

A

Let A = [aij] and B = [bij] be m × n zero–one matrices. Then the join of A and B is the zero-one matrix with (i, j)th entry aij ∨ bij. The join of A and B is denoted by A ∨ B.

Join Or , Junior, Joiner.

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

Meet of matrice A and B

A

Let A = [aij] and B = [bij] be m × n zero–one matrices.
The meet of
A and B is the zero–one matrix with (i, j)th entry aij ∧ bij. The meet of A and B is denoted
by A ∧ B.

Meet and Greet

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

Boolean Product:

A

Let A = [aij] be an m × k zero–one matrix and B = [bij] be a k × n zero–one matrix. Then
the Boolean product of A and B, denoted by A ⊙ B, is the m × n matrix with (i, j)th entry cij
where

cij = (ai1 ∧ b1j) ∨ (ai2 ∧ b2j) ∨ ⋯ ∨ (aik ∧ bkj).

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

Boolean powers of a square zero–one matrix:

A

Let A be a square zero–one matrix and let r be a positive integer. The rth Boolean power of
A is the Boolean product of r factors of A. The rth Boolean product of A is denoted by A^[r]
.
Hence,
A^[r] = A ⊙ A ⊙ A ⊙ ⋯ ⊙ A.

(This is well defined because the Boolean product of matrices is associative.) We also define
A^[0] to be In.

17
Q

Commutativity of matrix Addition?

A

A + B = B + A

18
Q

Matrix Addition associativity?

A

A + (B + C) = (A + B) + C.

19
Q

Is matrix multiplication distributive over matrix addition?

A

(A + B)C = AC + BC

C(A + B) = CA + CB

20
Q

Matrix Multiplication’s associativity?

A

A(BC) = (AB)C.

21
Q

Diagonal Matrix:

A

The n × n matrix A = [aij] is called a diagonal matrix

if aij = 0 when i ≠ j.

22
Q

Transpose of

transpose of matrix is?

A

Matrix itself.

(A^t)^t = A.

23
Q

Matrix addition and multiplication involving transpose, 2 identities.

A

a) (A + B)^t = A^t + B^t

b) (AB)^t = B^tA^t

24
Q

The inverse of Matrix:

A

If A and B are n × n matrices with AB = BA = In, then B
is called the inverse of A (this terminology is appropriate because such a matrix B is unique) and A is said to be invertible.
The notation B = A^−1 denotes that B is the inverse of A.

25
Q

Inverse of
A
a b
c d

A

[I/(ad-bc) ]*

d -b
-c a

26
Q

Join and meet of same set?

A

A V A = A

A ^ A = A

27
Q

Commutativity of Meet and join?

A

A ∨ B = B ∨ A

B ∧ A = A ∧ B

28
Q

Associativity of meet and join operations:

A

(A ∨ B) ∨ C = A ∨ (B ∨ C).

A ∧ B) ∧ C = A ∧ (B ∧ C

29
Q

distributive laws of the meet over the

join operation

A

A ∨ (B ∧ C) = (A ∨ B) ∧ (A ∨ C).

A ∧ (B ∨ C) = (A ∧ B) ∨ (A ∧ C).