Multiply matrices Use the properties of matrix multiplication.

Slides:



Advertisements
Similar presentations
Matrix.
Advertisements

2.3 Modeling Real World Data with Matrices
Section 13-4: Matrix Multiplication
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
Fundamentals of matrices
8.4 Matrix Operations Day 1 Thurs May 7 Do Now Solve X – 2y = -6 3x + 4y = 7.
4.2 Adding and Subtracting Matrices 4.3 Matrix Multiplication
Row 1 Row 2 Row 3 Row m Column 1Column 2Column 3 Column 4.
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.
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: Simplifying Algebraic Expressions Combining Like Terms & Distributive Property.
Matrix Operations.
Multiplying Matrices Algebra 2—Section 3.6. Recall: Scalar Multiplication - each element in a matrix is multiplied by a constant. Multiplying one matrix.
Chapter 4 Section 2: Multiplying Matrices. VOCABULARY The product of two matrices A and B is DEFINED provided the number of columns in A is equal to the.
MATRICES Danny Nguyen Marissa Lally Clauberte Louis HOW TO'S: ADD, SUBTRACT, AND MULTIPLY MATRICES.
Sec 4.1 Matrices.
Multiplying Matrices Lesson 4.2. Definition of Multiplying Matrices The product of two matrices A and B is defined provided the number of columns in A.
Algebra Matrix Operations. Definition Matrix-A rectangular arrangement of numbers in rows and columns Dimensions- number of rows then columns Entries-
Objectives: Students will be able to… Multiply two matrices Apply matrix multiplication to real life problems.
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.
4-3 Matrix Multiplication Objectives: To multiply by a scalar To multiply two matrices.
3.5 Perform Basic Matrix Operations Add Matrices Subtract Matrices Solve Matric equations for x and y.
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.
12-2 MATRIX MULTIPLICATION MULTIPLY MATRICES BY USING SCALAR AND MATRIX MULTIPLICATION.
Add and subtract matrices. Multiply by a matrix scalar.
MATRICES. Introduction Matrix algebra has several uses in economics as well as other fields of study. One important application of Matrices is that it.
Matrix Operations McDougal Littell Algebra 2 Larson, Boswell, Kanold, Stiff Larson, Boswell, Kanold, Stiff Algebra 2: Applications, Equations, Graphs Algebra.
A rectangular array of numeric or algebraic quantities subject to mathematical operations. The regular formation of elements into columns and rows.
Ch. 12 Vocabulary 1.) matrix 2.) element 3.) scalar 4.) scalar multiplication.
MATRIX MULTIPLICATION
Ch. 7 – Matrices and Systems of Equations 7.5 – Operations with Matrices.
Matrix Operations McDougal Littell Algebra 2
13.4 Product of Two Matrices
Properties and Applications of Matrices
Lesson 43: Working with Matrices: Multiplication
Multiplying Matrices.
Sec. 4-3: Matrix Multiplication 8/24/17
Christmas Packets are due on Friday!!!
Matrices Rules & Operations.
4-3 Multiplying Matrices
Matrix Multiplication
Introduction To Matrices
Matrix Operations Monday, August 06, 2018.
Multiplying Matrices Algebra 2—Section 3.6.
Warm Up Use scalar multiplication to evaluate the following:
Multiplying Matrices.
WarmUp 2-3 on your calculator or on paper..
MULTIPLYING TWO MATRICES
Multiplying Matrices.
MATRICES MATRIX OPERATIONS.
Multiplying Matrices.
Matrix Operations Chapter 4, Sections 1, 2, 3.
Dimensions matching Rows times Columns
Multiplication of Matrices
3.6 Multiply Matrices.
1.8 Matrices.
What is the dimension of the matrix below?
1.8 Matrices.
Multiplying Matrices.
3.5 Perform Basic Matrix Operations Algebra II.
Multiplying Matrices.
Multiplying Matrices.
Presentation transcript:

Multiply matrices Use the properties of matrix multiplication.

Rules for multiplying matrices 1.The # of columns in the first matrix must be equal to the # of rows in the second matrix. 2.The elements in the rows of the first matrix are multiplied to the corresponding elements in the columns of the second matrix. 3. Add all the multiplication problems together and put the answer in the corresponding(row #, column #) in the answer matrix. 4.Continue to multiply each row(1 st matrix) to each column(2 nd matrix).

Key Concept a ₁ b ₁ x ₁ y ₁ a ₁ x ₁ + b ₁ x ₂ a ₁ y ₁ + b ₁ y ₂ a ₂ b ₂ x ₂ y ₂ a ₂ x ₁ + b ₂ x ₂ a ₂ y ₁ + b ₂ y ₂ 2x2 2x22x2 Could you multiply? If yes what are the dimensions of the answer matrix? 1) A3x1 B1x5 2) M4x2 N3x2 3) J5x3 K3x1 4) A6x4 B4x7 5) R4x5 T4x2

Associative Prop. Of Matrix Multiplication (AB)C = A(BC) Associative Prop. Of Scalar Multiplication c(AB) = (cA)B = A(cB) Note c is a constant Left Distributive Property C(A + B) = CA + CB Right Distributive Property (A + B)C = AC + BC *** Make sure you can multiply the matrices