matrices Flashcards
what is the order of a matrix with a rows and b columns ?
order a,b
Ma,b
what are the numbers in the matrix called ?
elements
the element in matrix A or row i and column j is noted as ?
Aij
in a matrix ( 1 2 )
( 3 4 )
what is the leading diagonal ?
1 ,4
what is the upper triangular in a matrix ?
all elements where i > j
what is the lower triangular in a matrix ?
all elements where i < j
what is the transpose of a matrix ?
A = A^t
the i,j th element becomes the j,i th element
Amn becomes Anm
how can you tell when a matrix is symmetric ?
A = A^T
what is a
a. row vector ?
b. column vector ?
a. a vector with only 1 row
b. a vector with only 1 column
how do you add/subtract matrices A and B ?
you add/subtract each corresponding element ?
like : A11 +/- B11
how do you multiply a matrix by a constant ?
you multiply each element by the constant
e.g. A11 x K and A12 x K
how do you multiply two matrices ?
you can only multiply matrices where the first matrix has the same number of columns and the second matrix has rows
you multiply the first matrix rose by the first column of the second matrix and add those elements together
every time you start a new row of the first matrix , start a new row in the answer matrix
every time you start a new column of the second matrix , start a new column in the answer column
what is this property of a matrix : commutative law ?
AB /= BA
what is this property of a matrix : associative law ?
A(BC) = (AB)C
what is this property of a matrix : distributive law ?
- scalar multiple
K(AB) = (KA)B = A(KB) - over addition
A(B+C) = AB + AC