12.2 Multiplication of Matrices. Matrix Multiplication The product of two matrices, A m×p and B p×n, is the matrix AB with dimensions m × n. Any element.

Slides:



Advertisements
Similar presentations
Matrix.
Advertisements

Precalculus Lesson 7.2 Matrix Algebra 4/6/2017 8:43 PM
MF-852 Financial Econometrics
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 12 System of Linear Equations.
CALCULUS – II Matrix Multiplication by Dr. Eman Saad & Dr. Shorouk Ossama.
Matrices MSU CSE 260.
Finding the Inverse of a Matrix
12.1 Addition of Matrices. Matrix: is any rectangular array of numbers written within brackets; represented by a capital letter; classified by its dimensions.
8.4 Matrix Operations Day 1 Thurs May 7 Do Now Solve X – 2y = -6 3x + 4y = 7.
Chapter 7 Matrix Mathematics Matrix Operations Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Row 1 Row 2 Row 3 Row m Column 1Column 2Column 3 Column 4.
4.2 Operations with Matrices Scalar multiplication.
Lesson 54 – Multiplication of Matrices
ECON 1150 Matrix Operations Special Matrices
MATRICES Adapted from presentation found on the internet. Thank you to the creator of the original presentation!
Matrix Algebra. Quick Review Quick Review Solutions.
Overview Definitions Basic matrix operations (+, -, x) Determinants and inverses.
Copyright © 2011 Pearson, Inc. 7.2 Matrix Algebra.
Ch X 2 Matrices, Determinants, and Inverses.
Unit 6 : Matrices.
Chapter 4 – Matrix CSNB 143 Discrete Mathematical Structures.
Fundamentals of Engineering Analysis
Chapter 6 Systems of Linear Equations and Matrices Sections 6.3 – 6.5.
Matrices: Basic Operations and Their Properties
(2 + 1) + 4 = 2 + (1 + 4) Associative Property of Addition.
Sec 4.1 Matrices.
PROPERTIES OF REAL NUMBERS. COMMUTATIVE PROPERTY OF ADDITION What it means We can add numbers in any order Numeric Example Algebraic Example
Matrices and Determinants
MATRICES Operations with Matrices Properties of Matrix Operations
MATRIX A set of numbers arranged in rows and columns enclosed in round or square brackets is called a matrix. The order of a matrix gives the number of.
by D. Fisher (2 + 1) + 4 = 2 + (1 + 4) Associative Property of Addition 1.
(2 + 1) + 4 = 2 + (1 + 4) Associative Property of Addition.
4-3 Matrix Multiplication Objectives: To multiply by a scalar To multiply two matrices.
3.6 Multiplying Matrices Homework 3-17odd and odd.
Chapter 1 Section 1.6 Algebraic Properties of Matrix Operations.
Chapter 4 Matrices. In Chapter 4, You Will… Move from using matrices in organizing data to manipulating matrices through data. Learn to represent real-world.
12-2 MATRIX MULTIPLICATION MULTIPLY MATRICES BY USING SCALAR AND MATRIX MULTIPLICATION.
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.
Chapter 5: Matrices and Determinants Section 5.1: Matrix Addition.
MATRICES. Introduction Matrix algebra has several uses in economics as well as other fields of study. One important application of Matrices is that it.
Ch. 12 Vocabulary 1.) matrix 2.) element 3.) scalar 4.) scalar multiplication.
College Algebra Chapter 6 Matrices and Determinants and Applications
MTH108 Business Math I Lecture 20.
Lesson 12 – 2 Multiplication of Matrices
Properties and Applications of Matrices
MATRICES.
College Algebra Chapter 6 Matrices and Determinants and Applications
Linear Algebra Lecture 2.
Properties of Operations
Finding the Inverse of a Matrix
MATHEMATICS Matrix Multiplication
Matrix Operations Add and Subtract Matrices Multiply Matrices
Multiplying Matrices.
Matrix Algebra.
MATRICES MATRIX OPERATIONS.
MATRICES MATRIX OPERATIONS.
Commutative Properties
Section 2.4 Matrices.
Multiplying Matrices.
Matrix Algebra.
Multiplication of Matrices
1.8 Matrices.
MATRICES MATRIX OPERATIONS.
Matrix Operations Ms. Olifer.
Warm-Up Find the slope of 4y = 3x + 21 Solve -3x – 5 = x + 12
1.8 Matrices.
Multiplying Matrices.
3.5 Perform Basic Matrix Operations Algebra II.
Multiplying Matrices.
Multiplying Matrices.
Presentation transcript:

12.2 Multiplication of Matrices

Matrix Multiplication The product of two matrices, A m×p and B p×n, is the matrix AB with dimensions m × n. Any element in the ith row and jth column of this product matrix is the sum of the products of the corresponding elements of the ith row of A and the jth column of B. When you multiply matrices, they need to be conformable for multiplication. This means: # of columns in 1 st matrix = # of rows in 2 nd matrix Ex 1) 3 × 22 × 2 match dimensions of product 3 × 2 To get each element: this is the first row, first column so we take 1 st row of A × 1 st column of B (4)(2) + (5)(5) = = 33 write yourself how to get this element (4)(3) + (5)(6) = = 42 (7)(2) + (2)(5) = = 24

Ex 2) Find A 2 (same A from Ex 1) 3 × 2 Wait! You can’t! So… undefined We can solve for unknown elements in a matrix equation. Ex 3) Solve for x and y. 3x – 4 = 2 3x = 6 x = y = –3 5y = –15 y = –3

The Identity Matrix The identity matrix is the equivalent to the algebraic 1. Multiplying by it does not change the original. etc. Pattern: 1’s along the diagonal & 0’s everywhere else *If the product of two matrices is I, then they are inverses of each other. You can also multiply by a 0 matrix to get an O matrix.

Properties of Matrix Multiplication for Square Matrices If A, B, and C are n × n matrices, then AB is an n × n matrix.Closure (AB)C = A(BC)Associative I n×n A = AI n×n = AMultiplicative Identity O n×n A = AO n×n = O n×n Multiplicative Property of the Zero Matrix A –1 is the multiplicative inverse of A if A –1 is defined and AA –1 = A –1 A= I n×n Multiplicative Inverse A(B + C)= AB + AC (B + C)A = BA + CA Distributive Properties What properties are not here?? Commutative! When we “store” information in matrices, we may have to transpose them (switch rows & columns) to make them conformable for multiplication. Ex: Per 3 Per 4 Boys Girls It’s still the same!

Ex 4) A fruit stand owner packages fruit in three different ways for gift packages. Economy package, E, has 6 apples, 3 oranges and 3 pears. Standard package, S, has 5 apples, 4 oranges and 4 pears. Luxury package, L, has 6 types of each fruit. The costs are $0.50 for an apple, $1.10 for an orange and $0.80 for a pear. What is the total cost of preparing each package of fruit? Cost apple orange pear Number of Items apple orange pear If we multiply in this state… the labels don’t match up cost per fruitpackage per fruit cost per fruitfruit per package Package E S L 1 × 33 × 3 1 × 3

Homework #1202 Pg 608 #1, 3, 5, 8, 15, 16, 18, 19, 20, 29, 31, 34, 41, 42