Properties and Applications of Matrices

Slides:



Advertisements
Similar presentations
Matrix.
Advertisements

Copyright © 2009 Pearson Education, Inc. CHAPTER 9: Systems of Equations and Matrices 9.1 Systems of Equations in Two Variables 9.2 Systems of Equations.
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
Matrices MSU CSE 260.
3.8 Matrices.
8.4 Matrix Operations Day 1 Thurs May 7 Do Now Solve X – 2y = -6 3x + 4y = 7.
Row 1 Row 2 Row 3 Row m Column 1Column 2Column 3 Column 4.
Rev.S08 MAC 1140 Module 10 System of Equations and Inequalities II.
TH EDITION LIAL HORNSBY SCHNEIDER COLLEGE ALGEBRA.
Copyright © 2013, 2009, 2005 Pearson Education, Inc. 1 5 Systems and Matrices Copyright © 2013, 2009, 2005 Pearson Education, Inc.
Chapter 4 Matrices By: Matt Raimondi.
Chapter 8 Matrices and Determinants Copyright © 2014, 2010, 2007 Pearson Education, Inc Matrix Operations and Their Applications.
Copyright © 2011 Pearson, Inc. 7.2 Matrix Algebra.
1 C ollege A lgebra Systems and Matrices (Chapter5) 1.
Algebra 3: Section 5.5 Objectives of this Section Find the Sum and Difference of Two Matrices Find Scalar Multiples of a Matrix Find the Product of Two.
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.
Operations with Matrices
Slide Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley.
Chapter 6 Systems of Linear Equations and Matrices Sections 6.3 – 6.5.
Copyright © Cengage Learning. All rights reserved. 7 Linear Systems and Matrices.
Chapter 6 Matrices and Determinants Copyright © 2014, 2010, 2007 Pearson Education, Inc Matrix Operations and Their Applications.
Meeting 18 Matrix Operations. Matrix If A is an m x n matrix - that is, a matrix with m rows and n columns – then the scalar entry in the i th row and.
Matrices: Basic Operations and Their Properties
CALCULUS – III Matrix Operation by Dr. Eman Saad & Dr. Shorouk Ossama.
Chapter 2 … part1 Matrices Linear Algebra S 1. Ch2_2 2.1 Addition, Scalar Multiplication, and Multiplication of Matrices Definition A matrix is a rectangular.
Matrix Operations.
1.3 Matrices and Matrix Operations. A matrix is a rectangular array of numbers. The numbers in the arry are called the Entries in the matrix. The size.
Sec 4.1 Matrices.
Copyright © Cengage Learning. All rights reserved. 2 SYSTEMS OF LINEAR EQUATIONS AND MATRICES.
Algebra Matrix Operations. Definition Matrix-A rectangular arrangement of numbers in rows and columns Dimensions- number of rows then columns Entries-
12-2 MATRIX MULTIPLICATION MULTIPLY MATRICES BY USING SCALAR AND MATRIX MULTIPLICATION.
Ch. 12 Vocabulary 1.) matrix 2.) element 3.) scalar 4.) scalar multiplication.
Ch. 7 – Matrices and Systems of Equations 7.5 – Operations with Matrices.
Matrices. Matrix A matrix is an ordered rectangular array of numbers. The entry in the i th row and j th column is denoted by a ij. Ex. 4 Columns 3 Rows.
Linear Algebra by Dr. Shorouk Ossama.
2.3 Modeling Real World Data with Matrices
MTH108 Business Math I Lecture 20.
13.4 Product of Two Matrices
MATRICES.
12-1 Organizing Data Using Matrices
Multiplying Matrices.
Christmas Packets are due on Friday!!!
10.4 The Algebra of Matrices
College Algebra Chapter 6 Matrices and Determinants and Applications
MATHEMATICS Matrix Algebra
What we’re learning today:
L6 matrix operations.
Matrix Multiplication
Matrix Operations Monday, August 06, 2018.
Matrix Operations SpringSemester 2017.
Section 7.4 Matrix Algebra.
Multiplying Matrices.
7.3 Matrices.
Math-2 (honors) Matrix Algebra
Section 2.4 Matrices.
CS100: Discrete structures
Copyright © 2006 Brooks/Cole, a division of Thomson Learning, Inc.
Multiplying Matrices.
[MATRICES ].
RAYAT SHIKSHAN SANSTHA’S S.M.JOSHI COLLEGE HADAPSAR, PUNE
Section 9.4 Matrix Operations
Matrix Operations SpringSemester 2017.
Multiplying Matrices.
3.5 Perform Basic Matrix Operations Algebra II.
Multiplying Matrices.
[MATRICES ].
Multiplying Matrices.
Presentation transcript:

Properties and Applications of Matrices 6.5 Learn matrix notation Learn how matrices are used in social networks Find sums, differences, and scalar multiples of matrices Find matrix products Use technology (optional)

Matrix Notation A general element of a matrix is denoted aij. The ij refers to an element in the ith row, jth column. For example, a31 would be an element in matrix A located in the third row, first column. The matrices are equal if corresponding elements are equal.

Example: Determining matrix elements Let aij denote a general element in A, and bij denote a general element in B, where (a) Identify a12, b32 and a13 . (b) Compute a31b13 + a32b23 + a33b33 . (c) Is there a value for x that will make the statement A = B true?

Example: Determining matrix elements Solution (a) Element a12 is located in the 1st row and 2nd column of A = 3. b32 = 2 (row 3, column 2) a13= 4 (row 1, column 3)

Example: Determining matrix elements Compute a31b13 + a32b23 + a33b33 . = (4)(7) + (2)(–2) + (5)(2) = 34 (c) No, since a32 = 2 ≠ 5 = b32 and a33 = 5 ≠ 2 = b32 . So A ≠ B.

Operations on Matrices Matrix Addition The sum of two m  n matrices A and B is the m  n matrix A + B, in which each element is the sum of the corresponding elements of A and B. This is written as A + B = [aij] + [bij] = [aij + bij]. If A and B have different dimensions, then A + B is undefined.

Operations on Matrices Matrix Subtraction The difference of two m  n matrices A and B is the m  n matrix A – B, in which each element is the difference of the corresponding elements of A and B. This is written as A – B = [aij] – [bij] = [aij – bij]. If A and B have different dimensions, then A – B is undefined.

Operations on Matrices Multiplication of a Matrix by a Scalar The product of a scalar (real number) k and an m  n matrix A is the m  n matrix kA, in which each element is k times the corresponding element of A. This is written as kA = k[aij] = [kaij].

Example: Performing operations on matrices If possible, perform the indicated operations using (a) A + 3B (b) A  C (c) –2C  3D

Example: Performing operations on matrices Solution (a) A + 3B

Example: Performing operations on matrices (b) A – C is undefined because the dimension of A is 2  2 and unequal to the dimension of C, which is 3  2.

Example: Performing operations on matrices (c) –2C  3D

Matrix Multiplication The product of an m  n matrix A and an n  k matrix B is the m  k matrix AB, which is computed as follows. To find the element of AB in the ith row and jth column, multiply each element in the ith row of A by the corresponding element in the jth column of B. The sum of these products will give the element in row i, column j of AB.

Matrix Multiplication

Example: Multiplying matrices If possible, compute each product using a) AB b) CA (c) DC

Example: Multiplying matrices Solution (a) AB =

Example: Multiplying matrices Solution (b) CA =

Example: Multiplying matrices Solution c) The dimension of D is 3  3 and the dimension of C is 2  3. Therefore DC is undefined. The number of columns in D (3) does not match the number of rows in C (2).

Properties of Matrices Let A, B, and C be matrices. Assume that each matrix operation is defined. 1. A + B = B + A 2. (A + B) + C = A + (B + C) 3. (AB)C = A(BC) 4. A(B + C) = AB + AC