SlideShare a Scribd company logo
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

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
Lori Rapp
 
Integrated Math 2 Section 3-7
Integrated Math 2 Section 3-7Integrated Math 2 Section 3-7
Integrated Math 2 Section 3-7
Jimbo Lamb
 
11.3
11.311.3
11.3
nglaze10
 
Order of operations basic practice
Order of operations basic practiceOrder of operations basic practice
Order of operations basic practice
jslloyd23
 
Absolute Value Equations
Absolute Value EquationsAbsolute Value Equations
Absolute Value Equations
Lori Rapp
 
Unit 2 retest review
Unit 2 retest reviewUnit 2 retest review
Unit 2 retest review
mlabuski
 
Matematica
MatematicaMatematica
SPECIAL PRODUCTS
SPECIAL PRODUCTSSPECIAL PRODUCTS
SPECIAL PRODUCTS
zanedomingo
 
Chapter 01
Chapter 01Chapter 01
Chapter 01
ramiz100111
 
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
Hazel Joy Chong
 
Multiplying Polynomials
Multiplying PolynomialsMultiplying Polynomials
Multiplying Polynomials
nina
 
Homework packet
Homework packetHomework packet
Homework packet
eastwestmathdepartment
 

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

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

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

Lesson 2 like terms
Lesson 2   like termsLesson 2   like terms
Lesson 2 like terms
Simon Borgert
 
AA Section 8-8
AA Section 8-8AA Section 8-8
AA Section 8-8
Jimbo Lamb
 
3-Cm26
3-Cm263-Cm26
3-Cm26
mathome79
 
MATH : EQUATIONS
MATH : EQUATIONSMATH : EQUATIONS
MATH : EQUATIONS
M, Michelle Jeannite
 
Factoring Cubes
Factoring CubesFactoring Cubes
Factoring Cubes
swartzje
 
51541 0131469657 ism-0
51541 0131469657 ism-051541 0131469657 ism-0
51541 0131469657 ism-0
Ani_Agustina
 
Calculo purcell 9 ed solucionario
Calculo  purcell  9 ed   solucionarioCalculo  purcell  9 ed   solucionario
Calculo purcell 9 ed solucionario
Luis Manuel Leon
 
V2.0
V2.0V2.0
Stepenovanje
StepenovanjeStepenovanje
Stepenovanje
Jelena Dobrivojevic
 
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
 
Algebra
Algebra Algebra
Algebra
Adjex Academy
 
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
 
4.5
4.54.5
งานคณิตศาสตร์อาจารย์เค
งานคณิตศาสตร์อาจารย์เคงานคณิตศาสตร์อาจารย์เค
งานคณิตศาสตร์อาจารย์เค
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
豪 鱟灊
 
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
豪 鱟灊
 

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
 
51541 0131469657 ism-0
51541 0131469657 ism-051541 0131469657 ism-0
51541 0131469657 ism-0
 
Calculo purcell 9 ed solucionario
Calculo  purcell  9 ed   solucionarioCalculo  purcell  9 ed   solucionario
Calculo purcell 9 ed solucionario
 
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
 
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
 

More from festivalelmo

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

Your Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective UpskillingYour Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Excellence Foundation for South Sudan
 
Leveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit InnovationLeveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit Innovation
TechSoup
 
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem studentsRHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
Himanshu Rai
 
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptxNEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
iammrhaywood
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
Nicholas Montgomery
 
How to deliver Powerpoint Presentations.pptx
How to deliver Powerpoint  Presentations.pptxHow to deliver Powerpoint  Presentations.pptx
How to deliver Powerpoint Presentations.pptx
HajraNaeem15
 
The History of Stoke Newington Street Names
The History of Stoke Newington Street NamesThe History of Stoke Newington Street Names
The History of Stoke Newington Street Names
History of Stoke Newington
 
A Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdfA Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdf
Jean Carlos Nunes Paixão
 
How to Create a More Engaging and Human Online Learning Experience
How to Create a More Engaging and Human Online Learning Experience How to Create a More Engaging and Human Online Learning Experience
How to Create a More Engaging and Human Online Learning Experience
Wahiba Chair Training & Consulting
 
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
Nguyen Thanh Tu Collection
 
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
National Information Standards Organization (NISO)
 
The basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptxThe basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptx
heathfieldcps1
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
PECB
 
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UPLAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
RAHUL
 
Walmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdfWalmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdf
TechSoup
 
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
imrankhan141184
 
Chapter wise All Notes of First year Basic Civil Engineering.pptx
Chapter wise All Notes of First year Basic Civil Engineering.pptxChapter wise All Notes of First year Basic Civil Engineering.pptx
Chapter wise All Notes of First year Basic Civil Engineering.pptx
Denish Jangid
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Fajar Baskoro
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
eBook.com.bd (প্রয়োজনীয় বাংলা বই)
 
MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
Colégio Santa Teresinha
 

Recently uploaded (20)

Your Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective UpskillingYour Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective Upskilling
 
Leveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit InnovationLeveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit Innovation
 
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem studentsRHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
 
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptxNEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
 
How to deliver Powerpoint Presentations.pptx
How to deliver Powerpoint  Presentations.pptxHow to deliver Powerpoint  Presentations.pptx
How to deliver Powerpoint Presentations.pptx
 
The History of Stoke Newington Street Names
The History of Stoke Newington Street NamesThe History of Stoke Newington Street Names
The History of Stoke Newington Street Names
 
A Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdfA Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdf
 
How to Create a More Engaging and Human Online Learning Experience
How to Create a More Engaging and Human Online Learning Experience How to Create a More Engaging and Human Online Learning Experience
How to Create a More Engaging and Human Online Learning Experience
 
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
 
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
 
The basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptxThe basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptx
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
 
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UPLAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
 
Walmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdfWalmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdf
 
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
 
Chapter wise All Notes of First year Basic Civil Engineering.pptx
Chapter wise All Notes of First year Basic Civil Engineering.pptxChapter wise All Notes of First year Basic Civil Engineering.pptx
Chapter wise All Notes of First year Basic Civil Engineering.pptx
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
 
MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
 

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