• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/8

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

8 Cards in this Set

  • Front
  • Back
To multiply matrix A by matrix B:
The ROWS of A must be the same size as the COLUMNS of matrix B.
How do you multiply two matrices i.e... A•B?
1) Multiply each entry of row 1 by exactly one entry (moving down) column 1, add the products together.
2) repeat with row 1, column 2.
3) repeat with row 2, column 1; then row 2 column 2 etc.
In matrix multiplication, multiplying an m x n matrix by an n x p matrix gives:
an m x p matrix
a 1 x 2 matrix multiplied by a 2 x 1 matrix gives:
a 1 x1 matrix
a 2 x 2 matrix multiplied by a 2 x 1 matrix gives a:
2 x 1 matrix
If two matrices are multiplied, how many rows and columns will the product matrix have?
If two matrices are multiplied, the product matrix will have same number of ROWS of the first factor matrix and the same number of COLUMNS of the second factor matrix.
Any system of linear equations can be written as a matrix equation in the form:
AX = B, where A is a matrix of coefficients, X is a column matrix of variables, and B is a column matrix of constants.
When multiplying two matrices together, where do the products of each row go?
The products of row 1 (row 1 multiplied by each column), go in row 1 of the product matrix. The products of row 2 (row 2 multiplied by each column), go in row 2 of the product matrix. More specifically, the product of row 1 and column 1 is the entry of row 1, column 1 of the product matrix. The product of row 1, column 2 is the entry of row 1, column 2 of the product matrix.