How to Multiply Two Matrices. Steps for Matrix Multiplication 1.Determine whether the matrices are compatible. 2.Determine the dimensions of the product.

Slides:



Advertisements
Similar presentations
2.3 Modeling Real World Data with Matrices
Advertisements

Section 13-4: Matrix Multiplication
Section 4.2 – Multiplying Matrices Day 2
Matrix Multiplication To Multiply matrix A by matrix B: Multiply corresponding entries and then add the resulting products (1)(-1)+ (2)(3) Multiply each.
Maths for Computer Graphics
Table of Contents Matrices - Multiplication Assume that matrix A is of order m  n and matrix B is of order p  q. To determine whether or not A can be.
Fundamentals of matrices
Objective Video Example by Mrs. G Give It a Try Lesson 4.1  Add and subtract matrices  Multiply a matrix by a scalar number  Solve a matrix equation.
4.2 Operations with Matrices Scalar multiplication.
Row 1 Row 2 Row 3 Row m Column 1Column 2Column 3 Column 4.
Matrix Arithmetic. A matrix M is an array of cell entries (m row,column ) and it must have rectangular dimensions (Rows x Columns). Example: 3x x.
Warm Up. Multiplying Matrices 6.2 part 2 **Multiply rows times columns. **You can only multiply if the number of columns in the 1 st matrix is equal.
AIM: How do we perform basic matrix operations? DO NOW:  Describe the steps for solving a system of Inequalities  How do you know which region is shaded?
If A and B are both m × n matrices then the sum of A and B, denoted A + B, is a matrix obtained by adding corresponding elements of A and B. add these.
3.6 – Multiply Matrices The product of two matrices A and B is defined provided the number of columns in A is equal to the number of rows in B. If A is.
Lesson 11-1 Matrix Basics and Augmented Matrices Objective: To learn to solve systems of linear equation using matrices.
Class Opener:. Identifying Matrices Student Check:
4.1: Matrix Operations Objectives: Students will be able to: Add, subtract, and multiply a matrix by a scalar Solve Matrix Equations Use matrices to organize.
Matrices and Systems of Linear Equations
8.2 Operations With Matrices
Matrices: Simplifying Algebraic Expressions Combining Like Terms & Distributive Property.
Matrix Operations.
Section 3.5 Revised ©2012 |
Multiplying Matrices Algebra 2—Section 3.6. Recall: Scalar Multiplication - each element in a matrix is multiplied by a constant. Multiplying one matrix.
Sec 4.1 Matrices.
Algebra Matrix Operations. Definition Matrix-A rectangular arrangement of numbers in rows and columns Dimensions- number of rows then columns Entries-
What is Matrix Multiplication? Matrix multiplication is the process of multiplying two matrices together to get another matrix. It differs from scalar.
Section 4.3 – Multiplying Matrices. MATRIX MULTIPLICATION 1. The order makes a difference…AB is different from BA. 2. The number of columns in first matrix.
Section – Operations with Matrices No Calculator By the end of this lesson you should be able to: Write a matrix and identify its order Determine.
3.6 Multiplying Matrices Homework 3-17odd and odd.
Notes Over 4.2 Finding the Product of Two Matrices Find the product. If it is not defined, state the reason. To multiply matrices, the number of columns.
Systems of Equations and Matrices Review of Matrix Properties Mitchell.
Precalculus Section 14.1 Add and subtract matrices Often a set of data is arranged in a table form A matrix is a rectangular.
Matrix – is a rectangular arrangement of numbers in rows and columns. Dimensions – Size – m is rows, n is columns. m x n ( row ∙ column) Elements – The.
A rectangular array of numeric or algebraic quantities subject to mathematical operations. The regular formation of elements into columns and rows.
4-2 Multiplying Matrices Warm Up Lesson Presentation Lesson Quiz
13.4 Product of Two Matrices
Multiplying Matrices.
Matrix Operations Free powerpoints at
Matrix Operations.
Matrix Operations.
Matrix Operations Free powerpoints at
What we’re learning today:
Multiplying Matrices GSE Accelerated Pre-Calculus Keeper 2.
Matrix Multiplication
Matrix Operations Monday, August 06, 2018.
Matrix Operations.
Matrices and Data Holt Algebra 2.
Multiplying Matrices Algebra 2—Section 3.6.
Matrix Operations Free powerpoints at
Multiplying Matrices.
WarmUp 2-3 on your calculator or on paper..
Matrices Elements, Adding and Subtracting
4.1 Matrices – Basic Operations
Matrix Multiplication
MATRICES MATRIX OPERATIONS.
Objectives Multiply two matrices.
Multiplying Matrices.
Matrices and Data Holt Algebra 2.
3.5 Perform Basic Matrix Operations
3.6 Multiply Matrices.
1.8 Matrices.
Matrix A matrix is a rectangular arrangement of numbers in rows and columns Each number in a matrix is called an Element. The dimensions of a matrix are.
1.8 Matrices.
Multiplying Matrices.
Multiplying Matrices.
Matrix Multiplication Sec. 4.2
Introduction to Matrices
Multiplying Matrices.
Presentation transcript:

How to Multiply Two Matrices

Steps for Matrix Multiplication 1.Determine whether the matrices are compatible. 2.Determine the dimensions of the product matrix. 3.Using the addresses of each entry in the product matrix, multiply and add a row in the first matrix by a column in the second.

Test for Compatibility/Dimensions of the Product Matrix 1.Line the matrices next to each other, and write the dimensions under each matrix. 2.Verify that the number of columns in the first matrix equals the number of rows in the second matrix. 3.If the matrices are compatible, the dimensions of the product matrix is found as follows: the number of rows from first matrix by the number of columns from the second.

Test for Compatibility/Dimensions of the Product Matrix Examples: Compatible? Yes What are the dimensions of the product matrix? 3 x 22 x 2 3 x 22 x 2 3 x 2 =

Test for Compatibility/Dimensions of the Product Matrix Your turn. Is matrix multiplication possible? If so, what is are the dimensions of the product matrix?

How to Multiply: Addresses Once we know the dimensions of the product matrix, we next find the value for each entry. In order to do this, we need to be able to give each entry its own address. Each entry has a two number address. The first is its row, the second its column. 1,11,2 3,1 3,2 2,2 2,1

How to Multiply: Addresses Label the addresses for the entries in the following matrices.

Multiplying Entry by Entry To compute the value of entry 1,1: Multiply the first entry from row 1 from the first matrix by the first entry of column 1 from the second matrix; add that to the product of the second entry from row 1 of the first matrix and the second entry from the first column of the second matrix. Etc. In general, to find the entry m, n: Multiply the m th row of the first matrix by the n th column of the second, and add the products.

x 2 For entry 1,1, multiply and add row-1 of first matrix by column-1 of second. (2 x -1) + (1 x 6) = 4 For entry 1,2, multiply and add row-1 of first matrix by column-2 of second. (2 x 5) + (2 x 1) = 12 For entry 2,1, multiply and add row-2 of first matrix by column-1 of second. (3 x -1) + (-2 x 6) = -15 For entry 2,2, multiply and add row-2 of first matrix by column-2 of second. (3 x 5) + (-2 x 2) =

Can you multiply the matrices? 1 x 3 and 3 x 2 yes What are the dimensions of the product matrix? 1 x 2 What is in entry 1,1? Multiply and add row 1 of the first matrix by column 1 of the second. (2 x -1) + (3 x 0) + (4 x 5) = 18 What is in entry 1,2? Multiply and add row 1 of the first matrix by column 1 of the second. (2 x 4) + (3 x 1) + (4 x 2) = 19

Try It!