matrices Flashcards
(28 cards)
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
what is this property of a matrix : multiplication by identity matrix ?
IA = A = AI
what is this property of a matrix : transpose of sum ?
(A+B)^T = A^T + B^T
what is this property of a matrix : transpose of a product ?
(AB)^T = A^T.B^T
what is the determinant of a 2x2 matrix ?
the product of the leading diagonal - the product of the second diagonal
if |A| = 0 the A is a singular matrix and it does not have an inverse
what is the inverse of a 2x2 matrix ?
1/the determinant . the original matrix (with the leading diagonal elements swapped and the elements on the second diagonal changed signs)
how do you solve simultaneous equations using matrices ?e
put the equations in the form AX=B
then times both sides by A^-1
and that solves it
X = A^-1 . B
how of you calculate the determinant of a 3x3 matrix ( any row ) ?
choose the row and
times each element by the determinant of the minor of the element.
then if the order adds to an even number don’t change the sign but if its odd, change the sign.
then add the elements
what is the minor of an element ?
the determinant of the elements left when you eliminate all the elements in the same row and column of your chosen element.
if the two rows or columns in a matrix are identical what is the determinant ?
zero