SlideShare a Scribd company logo
1 of 31
9.5 The Algebra of Matrices
                      Day Two




Ephesians 4:32 "Be kind to one another, tenderhearted,
forgiving one another, as God in Christ forgave you."
Matrix Multiplication
   When doing A ⋅ B ,
   # columns in A must = # rows in B
Matrix Multiplication
   When doing A ⋅ B ,
   # columns in A must = # rows in B

Inner Product of Row A and Column B
                           ⎡     b1 ⎤
                           ⎢        ⎥
                                  b2 ⎥
     ⎡ a1 a2    → an ⎤ ⋅ ⎢
     ⎣               ⎦ ⎢          ⎥
                                  ↓ ⎥
                           ⎢
                           ⎢     bn ⎥
                           ⎣        ⎦
     has inner product of
       a1b1 + a2b2 + ... + anbn
Matrix Multiplication

If A is an m x n matrix and
   B is an n x k matrix

Then AB is the m x k matrix, C where cij
  is the inner product of the
  ith row of A and the jth column of B
⎡ 5 ⎤
    ⎡ 5 9 2 ⎤       ⎢    ⎥
A = ⎢       ⎥   B = ⎢ −1 ⎥   Find AB
    ⎣ 6 5 3 ⎦       ⎢ 1 ⎥
                      ⎣    ⎦
⎡ 5 ⎤
    ⎡ 5 9 2 ⎤       ⎢    ⎥
A = ⎢       ⎥   B = ⎢ −1 ⎥   Find AB
    ⎣ 6 5 3 ⎦       ⎢ 1 ⎥
                      ⎣    ⎦
       2x3 times 3x1
⎡ 5 ⎤
    ⎡ 5 9 2 ⎤       ⎢    ⎥
A = ⎢       ⎥   B = ⎢ −1 ⎥   Find AB
    ⎣ 6 5 3 ⎦       ⎢ 1 ⎥
                      ⎣    ⎦
       2x3 times 3x1
                         equal: we can multiply
⎡ 5 ⎤
    ⎡ 5 9 2 ⎤       ⎢    ⎥
A = ⎢       ⎥   B = ⎢ −1 ⎥   Find AB
    ⎣ 6 5 3 ⎦       ⎢ 1 ⎥
                      ⎣    ⎦
       2x3 times 3x1
                         equal: we can multiply
                         dimension of product
⎡ 5 ⎤
    ⎡ 5 9 2 ⎤           ⎢    ⎥
A = ⎢       ⎥       B = ⎢ −1 ⎥    Find AB
    ⎣ 6 5 3 ⎦           ⎢ 1 ⎥
                          ⎣    ⎦
        2x3 times 3x1
                             equal: we can multiply
                             dimension of product

   AB11 : 5 ⋅ 5 + 9 ⋅ −1+ 2 ⋅1 → 18
⎡ 5 ⎤
    ⎡ 5 9 2 ⎤           ⎢    ⎥
A = ⎢       ⎥       B = ⎢ −1 ⎥    Find AB
    ⎣ 6 5 3 ⎦           ⎢ 1 ⎥
                          ⎣    ⎦
        2x3 times 3x1
                             equal: we can multiply
                             dimension of product

   AB11 : 5 ⋅ 5 + 9 ⋅ −1+ 2 ⋅1 → 18
   AB21 : 6 ⋅ 5 + 5 ⋅ −1+ 3⋅1 → 28
⎡ 5 ⎤
    ⎡ 5 9 2 ⎤           ⎢    ⎥
A = ⎢       ⎥       B = ⎢ −1 ⎥    Find AB
    ⎣ 6 5 3 ⎦           ⎢ 1 ⎥
                          ⎣    ⎦
        2x3 times 3x1
                             equal: we can multiply
                             dimension of product

   AB11 : 5 ⋅ 5 + 9 ⋅ −1+ 2 ⋅1 → 18
   AB21 : 6 ⋅ 5 + 5 ⋅ −1+ 3⋅1 → 28

                 ⎡ 18 ⎤
            AB = ⎢    ⎥
                 ⎣ 28 ⎦
      verify with calculator
⎡ 2 −1 7 ⎤       ⎡ 2 5 ⎤
    ⎢        ⎥       ⎢      ⎥
A = ⎢ 3 0 5 ⎥    B = ⎢ 3 −2 ⎥   Find AB
    ⎢ −4 2 7 ⎥
    ⎣        ⎦       ⎢ 0 −1 ⎥
                       ⎣      ⎦
⎡ 2 −1 7 ⎤       ⎡ 2 5 ⎤
    ⎢        ⎥       ⎢      ⎥
A = ⎢ 3 0 5 ⎥    B = ⎢ 3 −2 ⎥   Find AB
    ⎢ −4 2 7 ⎥
    ⎣        ⎦       ⎢ 0 −1 ⎥
                       ⎣      ⎦
   3x3 times 3x2    product : 3x2
⎡ 2 −1 7 ⎤                ⎡ 2 5 ⎤
    ⎢        ⎥                ⎢      ⎥
A = ⎢ 3 0 5 ⎥             B = ⎢ 3 −2 ⎥   Find AB
    ⎢ −4 2 7 ⎥
    ⎣        ⎦                ⎢ 0 −1 ⎥
                                ⎣      ⎦
     3x3 times 3x2           product : 3x2
AB11 : 2 ⋅ 2 + −1⋅ 3 + 7 ⋅ 0 → 1
⎡ 2 −1 7 ⎤                ⎡ 2 5 ⎤
    ⎢        ⎥                ⎢      ⎥
A = ⎢ 3 0 5 ⎥             B = ⎢ 3 −2 ⎥   Find AB
    ⎢ −4 2 7 ⎥
    ⎣        ⎦                ⎢ 0 −1 ⎥
                                ⎣      ⎦
     3x3 times 3x2           product : 3x2
AB11 : 2 ⋅ 2 + −1⋅ 3 + 7 ⋅ 0 → 1
AB12 : 2 ⋅ 5 + −1⋅ −2 + 7 ⋅ −1 → 5
⎡ 2 −1 7 ⎤                 ⎡ 2 5 ⎤
    ⎢        ⎥                 ⎢      ⎥
A = ⎢ 3 0 5 ⎥              B = ⎢ 3 −2 ⎥   Find AB
    ⎢ −4 2 7 ⎥
    ⎣        ⎦                 ⎢ 0 −1 ⎥
                                 ⎣      ⎦
     3x3 times 3x2            product : 3x2
AB11 : 2 ⋅ 2 + −1⋅ 3 + 7 ⋅ 0 → 1
AB12 : 2 ⋅ 5 + −1⋅ −2 + 7 ⋅ −1 → 5
AB 21 : 3⋅ 2 + 0 ⋅ 3 + 5 ⋅ 0 → 6
⎡ 2 −1 7 ⎤                 ⎡ 2 5 ⎤
    ⎢        ⎥                 ⎢      ⎥
A = ⎢ 3 0 5 ⎥              B = ⎢ 3 −2 ⎥   Find AB
    ⎢ −4 2 7 ⎥
    ⎣        ⎦                 ⎢ 0 −1 ⎥
                                 ⎣      ⎦
     3x3 times 3x2            product : 3x2
AB11 : 2 ⋅ 2 + −1⋅ 3 + 7 ⋅ 0 → 1
AB12 : 2 ⋅ 5 + −1⋅ −2 + 7 ⋅ −1 → 5
AB 21 : 3⋅ 2 + 0 ⋅ 3 + 5 ⋅ 0 → 6
AB 22 : 3⋅ 5 + 0 ⋅ −2 + 5 ⋅ −1 → 10
⎡ 2 −1 7 ⎤                 ⎡ 2 5 ⎤
    ⎢        ⎥                 ⎢      ⎥
A = ⎢ 3 0 5 ⎥              B = ⎢ 3 −2 ⎥    Find AB
    ⎢ −4 2 7 ⎥
    ⎣        ⎦                 ⎢ 0 −1 ⎥
                                 ⎣      ⎦
     3x3 times 3x2             product : 3x2
AB11 : 2 ⋅ 2 + −1⋅ 3 + 7 ⋅ 0 → 1
AB12 : 2 ⋅ 5 + −1⋅ −2 + 7 ⋅ −1 → 5
AB 21 : 3⋅ 2 + 0 ⋅ 3 + 5 ⋅ 0 → 6
AB 22 : 3⋅ 5 + 0 ⋅ −2 + 5 ⋅ −1 → 10
AB 31 : − 4 ⋅ 2 + 2 ⋅ 3 + 7 ⋅ 0 → − 2
⎡ 2 −1 7 ⎤                 ⎡ 2 5 ⎤
    ⎢        ⎥                 ⎢      ⎥
A = ⎢ 3 0 5 ⎥              B = ⎢ 3 −2 ⎥    Find AB
    ⎢ −4 2 7 ⎥
    ⎣        ⎦                 ⎢ 0 −1 ⎥
                                 ⎣      ⎦
     3x3 times 3x2             product : 3x2
AB11 : 2 ⋅ 2 + −1⋅ 3 + 7 ⋅ 0 → 1
AB12 : 2 ⋅ 5 + −1⋅ −2 + 7 ⋅ −1 → 5
AB 21 : 3⋅ 2 + 0 ⋅ 3 + 5 ⋅ 0 → 6
AB 22 : 3⋅ 5 + 0 ⋅ −2 + 5 ⋅ −1 → 10
AB 31 : − 4 ⋅ 2 + 2 ⋅ 3 + 7 ⋅ 0 → − 2
AB 32 : − 4 ⋅ 5 + 2 ⋅ −2 + 7 ⋅ −1 → − 31
⎡ 2 −1 7 ⎤                 ⎡ 2 5 ⎤
    ⎢        ⎥                 ⎢      ⎥
A = ⎢ 3 0 5 ⎥              B = ⎢ 3 −2 ⎥      Find AB
    ⎢ −4 2 7 ⎥
    ⎣        ⎦                 ⎢ 0 −1 ⎥
                                 ⎣      ⎦
     3x3 times 3x2             product : 3x2
AB11 : 2 ⋅ 2 + −1⋅ 3 + 7 ⋅ 0 → 1
AB12 : 2 ⋅ 5 + −1⋅ −2 + 7 ⋅ −1 → 5
                                                ⎡ 1   5 ⎤
AB 21 : 3⋅ 2 + 0 ⋅ 3 + 5 ⋅ 0 → 6                ⎢        ⎥
                                           AB = ⎢ 6 10 ⎥
AB 22 : 3⋅ 5 + 0 ⋅ −2 + 5 ⋅ −1 → 10
                                                ⎢ −2 −31 ⎥
                                                ⎣        ⎦
AB 31 : − 4 ⋅ 2 + 2 ⋅ 3 + 7 ⋅ 0 → − 2
AB 32 : − 4 ⋅ 5 + 2 ⋅ −2 + 7 ⋅ −1 → − 31
⎡ 2 −1 7 ⎤                ⎡ 2 5 ⎤
     ⎢        ⎥                ⎢      ⎥
 A = ⎢ 3 0 5 ⎥             B = ⎢ 3 −2 ⎥      Find AB
     ⎢ −4 2 7 ⎥
     ⎣        ⎦                ⎢ 0 −1 ⎥
                                 ⎣      ⎦
     3x3 times 3x2             product : 3x2
AB11 : 2 ⋅ 2 + −1⋅ 3 + 7 ⋅ 0 → 1
AB12 : 2 ⋅ 5 + −1⋅ −2 + 7 ⋅ −1 → 5
                                                ⎡ 1   5 ⎤
AB 21 : 3⋅ 2 + 0 ⋅ 3 + 5 ⋅ 0 → 6                ⎢        ⎥
                                           AB = ⎢ 6 10 ⎥
AB 22 : 3⋅ 5 + 0 ⋅ −2 + 5 ⋅ −1 → 10
                                                ⎢ −2 −31 ⎥
                                                ⎣        ⎦
AB 31 : − 4 ⋅ 2 + 2 ⋅ 3 + 7 ⋅ 0 → − 2
AB 32 : − 4 ⋅ 5 + 2 ⋅ −2 + 7 ⋅ −1 → − 31
Verify with calculator. Then do BA. Does AB=BA?
⎡ 2 −1 7 ⎤                ⎡ 2 5 ⎤
     ⎢        ⎥                ⎢      ⎥
 A = ⎢ 3 0 5 ⎥             B = ⎢ 3 −2 ⎥      Find AB
     ⎢ −4 2 7 ⎥
     ⎣        ⎦                ⎢ 0 −1 ⎥
                                 ⎣      ⎦
     3x3 times 3x2             product : 3x2
AB11 : 2 ⋅ 2 + −1⋅ 3 + 7 ⋅ 0 → 1
AB12 : 2 ⋅ 5 + −1⋅ −2 + 7 ⋅ −1 → 5
                                                ⎡ 1   5 ⎤
AB 21 : 3⋅ 2 + 0 ⋅ 3 + 5 ⋅ 0 → 6                ⎢        ⎥
                                           AB = ⎢ 6 10 ⎥
AB 22 : 3⋅ 5 + 0 ⋅ −2 + 5 ⋅ −1 → 10
                                                ⎢ −2 −31 ⎥
                                                ⎣        ⎦
AB 31 : − 4 ⋅ 2 + 2 ⋅ 3 + 7 ⋅ 0 → − 2
AB 32 : − 4 ⋅ 5 + 2 ⋅ −2 + 7 ⋅ −1 → − 31
Verify with calculator. Then do BA. Does AB=BA?
Nope. Matrix Multiplication is NOT commutative ...
Properties for Matrix Multiplication
Properties for Matrix Multiplication

A ( BC ) = ( AB ) C          Associative
Properties for Matrix Multiplication

A ( BC ) = ( AB ) C          Associative

A ( B + C ) = AB + AC        Distributive
Properties for Matrix Multiplication

A ( BC ) = ( AB ) C          Associative

A ( B + C ) = AB + AC        Distributive

( B + C ) A = BA + CA        Distributive
 but not = AB + AC
A Linear System written as a Matrix Equation
A Linear System written as a Matrix Equation

   ⎡ 1 1 1 ⎤ ⎡ x ⎤ ⎡ 1 ⎤
   ⎢        ⎥ ⎢   ⎥ ⎢     ⎥
   ⎢ 2 −3 0 ⎥ ⎢ y ⎥ = ⎢ 2 ⎥
   ⎢ 2 6 2 ⎥ ⎢ z ⎥ ⎢ 5 ⎥
   ⎣        ⎦ ⎣   ⎦ ⎣     ⎦
A Linear System written as a Matrix Equation

   ⎡ 1 1 1 ⎤ ⎡ x ⎤ ⎡ 1 ⎤
   ⎢        ⎥ ⎢   ⎥ ⎢     ⎥
   ⎢ 2 −3 0 ⎥ ⎢ y ⎥ = ⎢ 2 ⎥
   ⎢ 2 6 2 ⎥ ⎢ z ⎥ ⎢ 5 ⎥
   ⎣        ⎦ ⎣   ⎦ ⎣     ⎦




         ⎧ x + y + z = 1
         ⎪
         ⎨2x − 3y = 2
         ⎪2x + 6y + 2z = 5
         ⎩
A Linear System written as a Matrix Equation

      ⎡ 1 1 1 ⎤ ⎡ x ⎤ ⎡ 1 ⎤
      ⎢        ⎥ ⎢   ⎥ ⎢     ⎥
      ⎢ 2 −3 0 ⎥ ⎢ y ⎥ = ⎢ 2 ⎥
      ⎢ 2 6 2 ⎥ ⎢ z ⎥ ⎢ 5 ⎥
      ⎣        ⎦ ⎣   ⎦ ⎣     ⎦




            ⎧ x + y + z = 1
            ⎪
            ⎨2x − 3y = 2
            ⎪2x + 6y + 2z = 5
            ⎩
Read Example 7 on pp. 682, 683
Read Computer Graphics on pp. 683, 684
HW #11

Let us always meet each other with smile, for the smile
is the beginning of love.
                           Mother Teresa

More Related Content

What's hot (12)

Module 10 Topic 3 factoring perfect square & difference of square
Module 10 Topic 3   factoring perfect square & difference of squareModule 10 Topic 3   factoring perfect square & difference of square
Module 10 Topic 3 factoring perfect square & difference of square
 
Integrated Math 2 Section 3-7
Integrated Math 2 Section 3-7Integrated Math 2 Section 3-7
Integrated Math 2 Section 3-7
 
11.3
11.311.3
11.3
 
Order of operations basic practice
Order of operations basic practiceOrder of operations basic practice
Order of operations basic practice
 
Absolute Value Equations
Absolute Value EquationsAbsolute Value Equations
Absolute Value Equations
 
Unit 2 retest review
Unit 2 retest reviewUnit 2 retest review
Unit 2 retest review
 
Matematica
MatematicaMatematica
Matematica
 
SPECIAL PRODUCTS
SPECIAL PRODUCTSSPECIAL PRODUCTS
SPECIAL PRODUCTS
 
Chapter 01
Chapter 01Chapter 01
Chapter 01
 
Lecture 08 quadratic formula and nature of roots
Lecture 08 quadratic formula and nature of rootsLecture 08 quadratic formula and nature of roots
Lecture 08 quadratic formula and nature of roots
 
Multiplying Polynomials
Multiplying PolynomialsMultiplying Polynomials
Multiplying Polynomials
 
Homework packet
Homework packetHomework packet
Homework packet
 

Viewers also liked

Viewers also liked (6)

0909 ch 9 day 9
0909 ch 9 day 90909 ch 9 day 9
0909 ch 9 day 9
 
0911 ch 9 day 11
0911 ch 9 day 110911 ch 9 day 11
0911 ch 9 day 11
 
0913 ch 9 day 13
0913 ch 9 day 130913 ch 9 day 13
0913 ch 9 day 13
 
1103 ch 11 day 3
1103 ch 11 day 31103 ch 11 day 3
1103 ch 11 day 3
 
0908 ch 9 day 8
0908 ch 9 day 80908 ch 9 day 8
0908 ch 9 day 8
 
0906 ch 9 day 6
0906 ch 9 day 60906 ch 9 day 6
0906 ch 9 day 6
 

Similar to 0912 ch 9 day 12

Factoring Cubes
Factoring CubesFactoring Cubes
Factoring Cubes
swartzje
 
Inversematrixpptx 110418192746-phpapp014.7
Inversematrixpptx 110418192746-phpapp014.7Inversematrixpptx 110418192746-phpapp014.7
Inversematrixpptx 110418192746-phpapp014.7
Kimguan Tan
 
Inverse matrix pptx
Inverse matrix pptxInverse matrix pptx
Inverse matrix pptx
Kimguan Tan
 
Module 10 Topic 1 factoring gcf
Module 10 Topic 1   factoring gcfModule 10 Topic 1   factoring gcf
Module 10 Topic 1 factoring gcf
Lori Rapp
 
งานคณิตศาสตร์อาจารย์เค
งานคณิตศาสตร์อาจารย์เคงานคณิตศาสตร์อาจารย์เค
งานคณิตศาสตร์อาจารย์เค
krookay2012
 
Advanced Trigonometry
Advanced TrigonometryAdvanced Trigonometry
Advanced Trigonometry
timschmitz
 
Module 10 Topic 4 solving quadratic equations part 1
Module 10 Topic 4   solving quadratic equations part 1Module 10 Topic 4   solving quadratic equations part 1
Module 10 Topic 4 solving quadratic equations part 1
Lori Rapp
 
4.5 Multiplication Of Two Matrices
4.5 Multiplication Of Two Matrices4.5 Multiplication Of Two Matrices
4.5 Multiplication Of Two Matrices
豪 鱟灊
 

Similar to 0912 ch 9 day 12 (20)

Lesson 2 like terms
Lesson 2   like termsLesson 2   like terms
Lesson 2 like terms
 
AA Section 8-8
AA Section 8-8AA Section 8-8
AA Section 8-8
 
3-Cm26
3-Cm263-Cm26
3-Cm26
 
MATH : EQUATIONS
MATH : EQUATIONSMATH : EQUATIONS
MATH : EQUATIONS
 
Factoring Cubes
Factoring CubesFactoring Cubes
Factoring Cubes
 
Calculo purcell 9 ed solucionario
Calculo  purcell  9 ed   solucionarioCalculo  purcell  9 ed   solucionario
Calculo purcell 9 ed solucionario
 
51541 0131469657 ism-0
51541 0131469657 ism-051541 0131469657 ism-0
51541 0131469657 ism-0
 
V2.0
V2.0V2.0
V2.0
 
Stepenovanje
StepenovanjeStepenovanje
Stepenovanje
 
Inversematrixpptx 110418192746-phpapp014.7
Inversematrixpptx 110418192746-phpapp014.7Inversematrixpptx 110418192746-phpapp014.7
Inversematrixpptx 110418192746-phpapp014.7
 
Inverse matrix pptx
Inverse matrix pptxInverse matrix pptx
Inverse matrix pptx
 
Algebra
Algebra Algebra
Algebra
 
Module 10 Topic 1 factoring gcf
Module 10 Topic 1   factoring gcfModule 10 Topic 1   factoring gcf
Module 10 Topic 1 factoring gcf
 
4.5
4.54.5
4.5
 
งานคณิตศาสตร์อาจารย์เค
งานคณิตศาสตร์อาจารย์เคงานคณิตศาสตร์อาจารย์เค
งานคณิตศาสตร์อาจารย์เค
 
Advanced Trigonometry
Advanced TrigonometryAdvanced Trigonometry
Advanced Trigonometry
 
Module 10 Topic 4 solving quadratic equations part 1
Module 10 Topic 4   solving quadratic equations part 1Module 10 Topic 4   solving quadratic equations part 1
Module 10 Topic 4 solving quadratic equations part 1
 
4.5 Multiplication Of Two Matrices
4.5 Multiplication Of Two Matrices4.5 Multiplication Of Two Matrices
4.5 Multiplication Of Two Matrices
 
Mathematics
MathematicsMathematics
Mathematics
 
Mathematics
MathematicsMathematics
Mathematics
 

More from festivalelmo

More from festivalelmo (20)

0101 ch 1 day 1
0101 ch 1 day 10101 ch 1 day 1
0101 ch 1 day 1
 
1204 ch 12 day 4
1204 ch 12 day 41204 ch 12 day 4
1204 ch 12 day 4
 
1203 ch 12 day 3
1203 ch 12 day 31203 ch 12 day 3
1203 ch 12 day 3
 
1201 ch 12 day 1
1201 ch 12 day 11201 ch 12 day 1
1201 ch 12 day 1
 
1202 ch 12 day 2
1202 ch 12 day 21202 ch 12 day 2
1202 ch 12 day 2
 
1104 ch 11 day 4
1104 ch 11 day 41104 ch 11 day 4
1104 ch 11 day 4
 
1114 ch 11 day 14
1114 ch 11 day 141114 ch 11 day 14
1114 ch 11 day 14
 
1113 ch 11 day 13
1113 ch 11 day 131113 ch 11 day 13
1113 ch 11 day 13
 
1112 ch 11 day 12
1112 ch 11 day 121112 ch 11 day 12
1112 ch 11 day 12
 
1110 ch 11 day 10
1110 ch 11 day 101110 ch 11 day 10
1110 ch 11 day 10
 
1109 ch 11 day 9
1109 ch 11 day 91109 ch 11 day 9
1109 ch 11 day 9
 
1108 ch 11 day 8
1108 ch 11 day 81108 ch 11 day 8
1108 ch 11 day 8
 
1107 ch 11 day 7
1107 ch 11 day 71107 ch 11 day 7
1107 ch 11 day 7
 
1106 ch 11 day 6
1106 ch 11 day 61106 ch 11 day 6
1106 ch 11 day 6
 
1105 ch 11 day 5
1105 ch 11 day 51105 ch 11 day 5
1105 ch 11 day 5
 
1115 ch 11 day 15
1115 ch 11 day 151115 ch 11 day 15
1115 ch 11 day 15
 
1007 ch 10 day 7
1007 ch 10 day 71007 ch 10 day 7
1007 ch 10 day 7
 
1006 ch 10 day 6
1006 ch 10 day 61006 ch 10 day 6
1006 ch 10 day 6
 
1005 ch 10 day 5
1005 ch 10 day 51005 ch 10 day 5
1005 ch 10 day 5
 
1004 ch 10 day 4
1004 ch 10 day 41004 ch 10 day 4
1004 ch 10 day 4
 

Recently uploaded

Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
ciinovamais
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
QucHHunhnh
 
Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.
MateoGardella
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
QucHHunhnh
 

Recently uploaded (20)

Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 

0912 ch 9 day 12

  • 1. 9.5 The Algebra of Matrices Day Two Ephesians 4:32 "Be kind to one another, tenderhearted, forgiving one another, as God in Christ forgave you."
  • 2. Matrix Multiplication When doing A ⋅ B , # columns in A must = # rows in B
  • 3. Matrix Multiplication When doing A ⋅ B , # columns in A must = # rows in B Inner Product of Row A and Column B ⎡ b1 ⎤ ⎢ ⎥ b2 ⎥ ⎡ a1 a2 → an ⎤ ⋅ ⎢ ⎣ ⎦ ⎢ ⎥ ↓ ⎥ ⎢ ⎢ bn ⎥ ⎣ ⎦ has inner product of a1b1 + a2b2 + ... + anbn
  • 4. Matrix Multiplication If A is an m x n matrix and B is an n x k matrix Then AB is the m x k matrix, C where cij is the inner product of the ith row of A and the jth column of B
  • 5. ⎡ 5 ⎤ ⎡ 5 9 2 ⎤ ⎢ ⎥ A = ⎢ ⎥ B = ⎢ −1 ⎥ Find AB ⎣ 6 5 3 ⎦ ⎢ 1 ⎥ ⎣ ⎦
  • 6. ⎡ 5 ⎤ ⎡ 5 9 2 ⎤ ⎢ ⎥ A = ⎢ ⎥ B = ⎢ −1 ⎥ Find AB ⎣ 6 5 3 ⎦ ⎢ 1 ⎥ ⎣ ⎦ 2x3 times 3x1
  • 7. ⎡ 5 ⎤ ⎡ 5 9 2 ⎤ ⎢ ⎥ A = ⎢ ⎥ B = ⎢ −1 ⎥ Find AB ⎣ 6 5 3 ⎦ ⎢ 1 ⎥ ⎣ ⎦ 2x3 times 3x1 equal: we can multiply
  • 8. ⎡ 5 ⎤ ⎡ 5 9 2 ⎤ ⎢ ⎥ A = ⎢ ⎥ B = ⎢ −1 ⎥ Find AB ⎣ 6 5 3 ⎦ ⎢ 1 ⎥ ⎣ ⎦ 2x3 times 3x1 equal: we can multiply dimension of product
  • 9. ⎡ 5 ⎤ ⎡ 5 9 2 ⎤ ⎢ ⎥ A = ⎢ ⎥ B = ⎢ −1 ⎥ Find AB ⎣ 6 5 3 ⎦ ⎢ 1 ⎥ ⎣ ⎦ 2x3 times 3x1 equal: we can multiply dimension of product AB11 : 5 ⋅ 5 + 9 ⋅ −1+ 2 ⋅1 → 18
  • 10. ⎡ 5 ⎤ ⎡ 5 9 2 ⎤ ⎢ ⎥ A = ⎢ ⎥ B = ⎢ −1 ⎥ Find AB ⎣ 6 5 3 ⎦ ⎢ 1 ⎥ ⎣ ⎦ 2x3 times 3x1 equal: we can multiply dimension of product AB11 : 5 ⋅ 5 + 9 ⋅ −1+ 2 ⋅1 → 18 AB21 : 6 ⋅ 5 + 5 ⋅ −1+ 3⋅1 → 28
  • 11. ⎡ 5 ⎤ ⎡ 5 9 2 ⎤ ⎢ ⎥ A = ⎢ ⎥ B = ⎢ −1 ⎥ Find AB ⎣ 6 5 3 ⎦ ⎢ 1 ⎥ ⎣ ⎦ 2x3 times 3x1 equal: we can multiply dimension of product AB11 : 5 ⋅ 5 + 9 ⋅ −1+ 2 ⋅1 → 18 AB21 : 6 ⋅ 5 + 5 ⋅ −1+ 3⋅1 → 28 ⎡ 18 ⎤ AB = ⎢ ⎥ ⎣ 28 ⎦ verify with calculator
  • 12. ⎡ 2 −1 7 ⎤ ⎡ 2 5 ⎤ ⎢ ⎥ ⎢ ⎥ A = ⎢ 3 0 5 ⎥ B = ⎢ 3 −2 ⎥ Find AB ⎢ −4 2 7 ⎥ ⎣ ⎦ ⎢ 0 −1 ⎥ ⎣ ⎦
  • 13. ⎡ 2 −1 7 ⎤ ⎡ 2 5 ⎤ ⎢ ⎥ ⎢ ⎥ A = ⎢ 3 0 5 ⎥ B = ⎢ 3 −2 ⎥ Find AB ⎢ −4 2 7 ⎥ ⎣ ⎦ ⎢ 0 −1 ⎥ ⎣ ⎦ 3x3 times 3x2 product : 3x2
  • 14. ⎡ 2 −1 7 ⎤ ⎡ 2 5 ⎤ ⎢ ⎥ ⎢ ⎥ A = ⎢ 3 0 5 ⎥ B = ⎢ 3 −2 ⎥ Find AB ⎢ −4 2 7 ⎥ ⎣ ⎦ ⎢ 0 −1 ⎥ ⎣ ⎦ 3x3 times 3x2 product : 3x2 AB11 : 2 ⋅ 2 + −1⋅ 3 + 7 ⋅ 0 → 1
  • 15. ⎡ 2 −1 7 ⎤ ⎡ 2 5 ⎤ ⎢ ⎥ ⎢ ⎥ A = ⎢ 3 0 5 ⎥ B = ⎢ 3 −2 ⎥ Find AB ⎢ −4 2 7 ⎥ ⎣ ⎦ ⎢ 0 −1 ⎥ ⎣ ⎦ 3x3 times 3x2 product : 3x2 AB11 : 2 ⋅ 2 + −1⋅ 3 + 7 ⋅ 0 → 1 AB12 : 2 ⋅ 5 + −1⋅ −2 + 7 ⋅ −1 → 5
  • 16. ⎡ 2 −1 7 ⎤ ⎡ 2 5 ⎤ ⎢ ⎥ ⎢ ⎥ A = ⎢ 3 0 5 ⎥ B = ⎢ 3 −2 ⎥ Find AB ⎢ −4 2 7 ⎥ ⎣ ⎦ ⎢ 0 −1 ⎥ ⎣ ⎦ 3x3 times 3x2 product : 3x2 AB11 : 2 ⋅ 2 + −1⋅ 3 + 7 ⋅ 0 → 1 AB12 : 2 ⋅ 5 + −1⋅ −2 + 7 ⋅ −1 → 5 AB 21 : 3⋅ 2 + 0 ⋅ 3 + 5 ⋅ 0 → 6
  • 17. ⎡ 2 −1 7 ⎤ ⎡ 2 5 ⎤ ⎢ ⎥ ⎢ ⎥ A = ⎢ 3 0 5 ⎥ B = ⎢ 3 −2 ⎥ Find AB ⎢ −4 2 7 ⎥ ⎣ ⎦ ⎢ 0 −1 ⎥ ⎣ ⎦ 3x3 times 3x2 product : 3x2 AB11 : 2 ⋅ 2 + −1⋅ 3 + 7 ⋅ 0 → 1 AB12 : 2 ⋅ 5 + −1⋅ −2 + 7 ⋅ −1 → 5 AB 21 : 3⋅ 2 + 0 ⋅ 3 + 5 ⋅ 0 → 6 AB 22 : 3⋅ 5 + 0 ⋅ −2 + 5 ⋅ −1 → 10
  • 18. ⎡ 2 −1 7 ⎤ ⎡ 2 5 ⎤ ⎢ ⎥ ⎢ ⎥ A = ⎢ 3 0 5 ⎥ B = ⎢ 3 −2 ⎥ Find AB ⎢ −4 2 7 ⎥ ⎣ ⎦ ⎢ 0 −1 ⎥ ⎣ ⎦ 3x3 times 3x2 product : 3x2 AB11 : 2 ⋅ 2 + −1⋅ 3 + 7 ⋅ 0 → 1 AB12 : 2 ⋅ 5 + −1⋅ −2 + 7 ⋅ −1 → 5 AB 21 : 3⋅ 2 + 0 ⋅ 3 + 5 ⋅ 0 → 6 AB 22 : 3⋅ 5 + 0 ⋅ −2 + 5 ⋅ −1 → 10 AB 31 : − 4 ⋅ 2 + 2 ⋅ 3 + 7 ⋅ 0 → − 2
  • 19. ⎡ 2 −1 7 ⎤ ⎡ 2 5 ⎤ ⎢ ⎥ ⎢ ⎥ A = ⎢ 3 0 5 ⎥ B = ⎢ 3 −2 ⎥ Find AB ⎢ −4 2 7 ⎥ ⎣ ⎦ ⎢ 0 −1 ⎥ ⎣ ⎦ 3x3 times 3x2 product : 3x2 AB11 : 2 ⋅ 2 + −1⋅ 3 + 7 ⋅ 0 → 1 AB12 : 2 ⋅ 5 + −1⋅ −2 + 7 ⋅ −1 → 5 AB 21 : 3⋅ 2 + 0 ⋅ 3 + 5 ⋅ 0 → 6 AB 22 : 3⋅ 5 + 0 ⋅ −2 + 5 ⋅ −1 → 10 AB 31 : − 4 ⋅ 2 + 2 ⋅ 3 + 7 ⋅ 0 → − 2 AB 32 : − 4 ⋅ 5 + 2 ⋅ −2 + 7 ⋅ −1 → − 31
  • 20. ⎡ 2 −1 7 ⎤ ⎡ 2 5 ⎤ ⎢ ⎥ ⎢ ⎥ A = ⎢ 3 0 5 ⎥ B = ⎢ 3 −2 ⎥ Find AB ⎢ −4 2 7 ⎥ ⎣ ⎦ ⎢ 0 −1 ⎥ ⎣ ⎦ 3x3 times 3x2 product : 3x2 AB11 : 2 ⋅ 2 + −1⋅ 3 + 7 ⋅ 0 → 1 AB12 : 2 ⋅ 5 + −1⋅ −2 + 7 ⋅ −1 → 5 ⎡ 1 5 ⎤ AB 21 : 3⋅ 2 + 0 ⋅ 3 + 5 ⋅ 0 → 6 ⎢ ⎥ AB = ⎢ 6 10 ⎥ AB 22 : 3⋅ 5 + 0 ⋅ −2 + 5 ⋅ −1 → 10 ⎢ −2 −31 ⎥ ⎣ ⎦ AB 31 : − 4 ⋅ 2 + 2 ⋅ 3 + 7 ⋅ 0 → − 2 AB 32 : − 4 ⋅ 5 + 2 ⋅ −2 + 7 ⋅ −1 → − 31
  • 21. ⎡ 2 −1 7 ⎤ ⎡ 2 5 ⎤ ⎢ ⎥ ⎢ ⎥ A = ⎢ 3 0 5 ⎥ B = ⎢ 3 −2 ⎥ Find AB ⎢ −4 2 7 ⎥ ⎣ ⎦ ⎢ 0 −1 ⎥ ⎣ ⎦ 3x3 times 3x2 product : 3x2 AB11 : 2 ⋅ 2 + −1⋅ 3 + 7 ⋅ 0 → 1 AB12 : 2 ⋅ 5 + −1⋅ −2 + 7 ⋅ −1 → 5 ⎡ 1 5 ⎤ AB 21 : 3⋅ 2 + 0 ⋅ 3 + 5 ⋅ 0 → 6 ⎢ ⎥ AB = ⎢ 6 10 ⎥ AB 22 : 3⋅ 5 + 0 ⋅ −2 + 5 ⋅ −1 → 10 ⎢ −2 −31 ⎥ ⎣ ⎦ AB 31 : − 4 ⋅ 2 + 2 ⋅ 3 + 7 ⋅ 0 → − 2 AB 32 : − 4 ⋅ 5 + 2 ⋅ −2 + 7 ⋅ −1 → − 31 Verify with calculator. Then do BA. Does AB=BA?
  • 22. ⎡ 2 −1 7 ⎤ ⎡ 2 5 ⎤ ⎢ ⎥ ⎢ ⎥ A = ⎢ 3 0 5 ⎥ B = ⎢ 3 −2 ⎥ Find AB ⎢ −4 2 7 ⎥ ⎣ ⎦ ⎢ 0 −1 ⎥ ⎣ ⎦ 3x3 times 3x2 product : 3x2 AB11 : 2 ⋅ 2 + −1⋅ 3 + 7 ⋅ 0 → 1 AB12 : 2 ⋅ 5 + −1⋅ −2 + 7 ⋅ −1 → 5 ⎡ 1 5 ⎤ AB 21 : 3⋅ 2 + 0 ⋅ 3 + 5 ⋅ 0 → 6 ⎢ ⎥ AB = ⎢ 6 10 ⎥ AB 22 : 3⋅ 5 + 0 ⋅ −2 + 5 ⋅ −1 → 10 ⎢ −2 −31 ⎥ ⎣ ⎦ AB 31 : − 4 ⋅ 2 + 2 ⋅ 3 + 7 ⋅ 0 → − 2 AB 32 : − 4 ⋅ 5 + 2 ⋅ −2 + 7 ⋅ −1 → − 31 Verify with calculator. Then do BA. Does AB=BA? Nope. Matrix Multiplication is NOT commutative ...
  • 23. Properties for Matrix Multiplication
  • 24. Properties for Matrix Multiplication A ( BC ) = ( AB ) C Associative
  • 25. Properties for Matrix Multiplication A ( BC ) = ( AB ) C Associative A ( B + C ) = AB + AC Distributive
  • 26. Properties for Matrix Multiplication A ( BC ) = ( AB ) C Associative A ( B + C ) = AB + AC Distributive ( B + C ) A = BA + CA Distributive but not = AB + AC
  • 27. A Linear System written as a Matrix Equation
  • 28. A Linear System written as a Matrix Equation ⎡ 1 1 1 ⎤ ⎡ x ⎤ ⎡ 1 ⎤ ⎢ ⎥ ⎢ ⎥ ⎢ ⎥ ⎢ 2 −3 0 ⎥ ⎢ y ⎥ = ⎢ 2 ⎥ ⎢ 2 6 2 ⎥ ⎢ z ⎥ ⎢ 5 ⎥ ⎣ ⎦ ⎣ ⎦ ⎣ ⎦
  • 29. A Linear System written as a Matrix Equation ⎡ 1 1 1 ⎤ ⎡ x ⎤ ⎡ 1 ⎤ ⎢ ⎥ ⎢ ⎥ ⎢ ⎥ ⎢ 2 −3 0 ⎥ ⎢ y ⎥ = ⎢ 2 ⎥ ⎢ 2 6 2 ⎥ ⎢ z ⎥ ⎢ 5 ⎥ ⎣ ⎦ ⎣ ⎦ ⎣ ⎦ ⎧ x + y + z = 1 ⎪ ⎨2x − 3y = 2 ⎪2x + 6y + 2z = 5 ⎩
  • 30. A Linear System written as a Matrix Equation ⎡ 1 1 1 ⎤ ⎡ x ⎤ ⎡ 1 ⎤ ⎢ ⎥ ⎢ ⎥ ⎢ ⎥ ⎢ 2 −3 0 ⎥ ⎢ y ⎥ = ⎢ 2 ⎥ ⎢ 2 6 2 ⎥ ⎢ z ⎥ ⎢ 5 ⎥ ⎣ ⎦ ⎣ ⎦ ⎣ ⎦ ⎧ x + y + z = 1 ⎪ ⎨2x − 3y = 2 ⎪2x + 6y + 2z = 5 ⎩ Read Example 7 on pp. 682, 683 Read Computer Graphics on pp. 683, 684
  • 31. HW #11 Let us always meet each other with smile, for the smile is the beginning of love. Mother Teresa

Editor's Notes

  1. \n
  2. \n
  3. \n
  4. \n
  5. \n
  6. \n
  7. \n
  8. \n
  9. \n
  10. \n
  11. \n
  12. \n
  13. \n
  14. \n
  15. \n
  16. \n
  17. \n
  18. \n
  19. \n
  20. \n
  21. \n
  22. \n
  23. \n
  24. \n
  25. \n
  26. \n