SlideShare a Scribd company logo
1 of 43
2.7 Combining Functions


John 16:33 I have said these things to you, that in me you
may have peace. In the world you will have tribulation. But
take heart; I have overcome the world.”
We can add, subtract, multiply, divide functions
We can add, subtract, multiply, divide functions

       f (x) + g(x) = ( f + g)(x)   D : D f I Dg
We can add, subtract, multiply, divide functions

       f (x) + g(x) = ( f + g)(x)   D : D f I Dg

       f (x) − g(x) = ( f − g)(x)   D : D f I Dg
We can add, subtract, multiply, divide functions

       f (x) + g(x) = ( f + g)(x)   D : D f I Dg

       f (x) − g(x) = ( f − g)(x)   D : D f I Dg

       f (x)⋅ g(x) = ( f ⋅ g)(x)    D : D f I Dg
We can add, subtract, multiply, divide functions

       f (x) + g(x) = ( f + g)(x)   D : D f I Dg

       f (x) − g(x) = ( f − g)(x)   D : D f I Dg

       f (x)⋅ g(x) = ( f ⋅ g)(x)    D : D f I Dg

      f (x) ⎛ f ⎞                 D : D f I Dg
           = ⎜ ⎟ ( x )
      g(x) ⎝ g ⎠                        and
                                        g(x) ≠ 0
x−4           x−3
Example:   f (x) =        g(x) =
                   x −1          x−2
x−4            x−3
Example:     f (x) =         g(x) =
                     x −1           x−2
                x−4 x−3
  ( f + g)(x) =     +            D:   {x : x ≠ 1,2}
                x −1 x − 2
x−4            x−3
Example:     f (x) =         g(x) =
                     x −1           x−2
                x−4 x−3
  ( f + g)(x) =     +            D:   {x : x ≠ 1,2}
                x −1 x − 2
                x−4 x−3
  ( f − g)(x) =     −            D:   {x : x ≠ 1,2}
                x −1 x − 2
x−4                x−3
Example:          f (x) =             g(x) =
                          x −1               x−2
                x−4 x−3
  ( f + g)(x) =     +                     D:   {x : x ≠ 1,2}
                x −1 x − 2
                x−4 x−3
  ( f − g)(x) =     −                     D:   {x : x ≠ 1,2}
                x −1 x − 2

                ⎛ x − 4 ⎞ ⎛ x − 3 ⎞
  ( f ⋅ g)(x) = ⎜
                ⎝ x − 1 ⎟ ⎜ x − 2 ⎟
                         ⎠ ⎝       ⎠
                                          D:   {x : x ≠ 1,2}
x−4                   x−3
Example:           f (x) =                g(x) =
                           x −1                  x−2
                x−4 x−3
  ( f + g)(x) =     +                         D:   {x : x ≠ 1,2}
                x −1 x − 2
                x−4 x−3
  ( f − g)(x) =     −                         D:   {x : x ≠ 1,2}
                x −1 x − 2

                ⎛ x − 4 ⎞ ⎛ x − 3 ⎞
  ( f ⋅ g)(x) = ⎜
                ⎝ x − 1 ⎟ ⎜ x − 2 ⎟
                         ⎠ ⎝       ⎠
                                              D:   {x : x ≠ 1,2}

  ⎛ f ⎞       ⎛ x − 4 ⎞ ⎛ x − 2 ⎞
  ⎜ g ⎟ (x) = ⎜ x − 1 ⎟ ⎜ x − 3 ⎟
                ⎝       ⎠ ⎝       ⎠
                                              D:   {x : x ≠ 1,2, 3}
  ⎝ ⎠
x−4                   x−3
Example:           f (x) =                g(x) =
                           x −1                  x−2
                x−4 x−3
  ( f + g)(x) =     +                         D:   {x : x ≠ 1,2}
                x −1 x − 2
                x−4 x−3
  ( f − g)(x) =     −                         D:   {x : x ≠ 1,2}
                x −1 x − 2

                ⎛ x − 4 ⎞ ⎛ x − 3 ⎞
  ( f ⋅ g)(x) = ⎜
                ⎝ x − 1 ⎟ ⎜ x − 2 ⎟
                         ⎠ ⎝       ⎠
                                              D:   {x : x ≠ 1,2}

  ⎛ f ⎞       ⎛ x − 4 ⎞ ⎛ x − 2 ⎞
  ⎜ g ⎟ (x) = ⎜ x − 1 ⎟ ⎜ x − 3 ⎟
                ⎝       ⎠ ⎝       ⎠
                                              D:   {x : x ≠ 1,2, 3}
  ⎝ ⎠

  Be sure to read Example 2 in your textbook
Composite Functions
Composite Functions
The output of one function (the inner function)
is used as input for another function (the
outer function)    notation : f ( g ( x ))
Composite Functions
 The output of one function (the inner function)
 is used as input for another function (the
 outer function)    notation : f ( g ( x ))
Example 1:    y = x +1
Composite Functions
 The output of one function (the inner function)
 is used as input for another function (the
 outer function)    notation : f ( g ( x ))
Example 1:    y = x +1
 Inner function is done first        x +1

 Outer function is done second        x
Composite Functions
 The output of one function (the inner function)
 is used as input for another function (the
 outer function)    notation : f ( g ( x ))
Example 1:    y = x +1
 Inner function is done first        x +1

 Outer function is done second        x
             g(x) = x + 1
             f (x) = x
             f (g(x)) = x + 1
Composite Functions

Example 2:    y = sin ( 3θ )
Composite Functions

Example 2:        y = sin ( 3θ )

  Inner      3θ                    g(θ ) = 3θ
Composite Functions

Example 2:        y = sin ( 3θ )

  Inner      3θ                    g(θ ) = 3θ

  Outer      sin ( x )             f (x) = sin ( x )
Composite Functions

Example 2:        y = sin ( 3θ )

  Inner      3θ                    g(θ ) = 3θ

  Outer      sin ( x )             f (x) = sin ( x )

                  f (g(θ )) = sin ( 3θ )
Composite Functions

Example 3:    y = sin 2 (θ )
Composite Functions

Example 3:       y = sin 2 (θ )

  Inner      sin (θ )             g(θ ) = sin (θ )
Composite Functions

Example 3:           y = sin 2 (θ )

  Inner      sin (θ )                 g(θ ) = sin (θ )

  Outer      x   2
                                      f (x) = x   2
Composite Functions

Example 3:           y = sin 2 (θ )

  Inner      sin (θ )                 g(θ ) = sin (θ )

  Outer      x   2
                                      f (x) = x   2




                     f (g(θ )) = sin 2 (θ )
Composite Functions

Example 4:    y = sin 2 ( 3θ )
Composite Functions

Example 4:     y = sin 2 ( 3θ )

  Innermost         3θ            h(θ ) = 3θ
Composite Functions

Example 4:     y = sin 2 ( 3θ )

  Innermost         3θ            h(θ ) = 3θ

  Next Inner       sin (θ )       g(θ ) = sin (θ )
Composite Functions

Example 4:     y = sin 2 ( 3θ )

  Innermost         3θ            h(θ ) = 3θ

  Next Inner       sin (θ )       g(θ ) = sin (θ )

  Outer             x   2
                                  f (x) = x 2
Composite Functions

Example 4:     y = sin 2 ( 3θ )

  Innermost         3θ               h(θ ) = 3θ

  Next Inner       sin (θ )          g(θ ) = sin (θ )

  Outer             x   2
                                     f (x) = x 2

                    f (g(h(θ ))) = sin 2 ( 3θ )
Composite Functions

Example 4:     y = sin 2 ( 3θ )

  Innermost         3θ               h(θ ) = 3θ

  Next Inner       sin (θ )          g(θ ) = sin (θ )

  Outer             x   2
                                     f (x) = x 2

                    f (g(h(θ ))) = sin 2 ( 3θ )


 Be sure to read Example 7 in your textbook
Is f (g(x)) = g( f (x)) ?
Is f (g(x)) = g( f (x)) ?   Let f(x) = 2x+1
                                g(x) = x-3
Is f (g(x)) = g( f (x)) ?     Let f(x) = 2x+1
                                  g(x) = x-3

    f (g(x)) = 2(x − 3) + 1
            = 2x − 6 + 1
            = 2x − 5
Is f (g(x)) = g( f (x)) ?     Let f(x) = 2x+1
                                    g(x) = x-3

    f (g(x)) = 2(x − 3) + 1   g( f (x)) = (2x + 1) − 3
            = 2x − 6 + 1               = 2x − 2
            = 2x − 5
Is f (g(x)) = g( f (x)) ?      Let f(x) = 2x+1
                                     g(x) = x-3

    f (g(x)) = 2(x − 3) + 1    g( f (x)) = (2x + 1) − 3
            = 2x − 6 + 1                = 2x − 2
            = 2x − 5

                        Not the same
Is f (g(x)) = g( f (x)) ?      Let f(x) = 2x+1
                                     g(x) = x-3

    f (g(x)) = 2(x − 3) + 1    g( f (x)) = (2x + 1) − 3
            = 2x − 6 + 1                = 2x − 2
            = 2x − 5

                        Not the same
                Could they be the same?
Could f (g(x)) = g( f (x)) ?
Could f (g(x)) = g( f (x)) ?
                                           x −1
             Let f (x) = 2x + 1 and g(x) =
                                             2
Could f (g(x)) = g( f (x)) ?
                                              x −1
                Let f (x) = 2x + 1 and g(x) =
                                                2

                 ⎛ x − 1 ⎞
    f (g(x)) = 2 ⎜       ⎟ + 1
                 ⎝ 2 ⎠

             = x − 1+ 1

             =x
Could f (g(x)) = g( f (x)) ?
                                              x −1
                Let f (x) = 2x + 1 and g(x) =
                                                2

                 ⎛ x − 1 ⎞                   (2x + 1) − 1
    f (g(x)) = 2 ⎜       ⎟ + 1   g( f (x)) =
                 ⎝ 2 ⎠                            2
                                               2x
             = x − 1+ 1                      =
                                                2
             =x                             =x
Could f (g(x)) = g( f (x)) ?
                                              x −1
                Let f (x) = 2x + 1 and g(x) =
                                                2

                 ⎛ x − 1 ⎞                   (2x + 1) − 1
    f (g(x)) = 2 ⎜       ⎟ + 1   g( f (x)) =
                 ⎝ 2 ⎠                            2
                                               2x
             = x − 1+ 1                      =
                                                2
             =x                             =x

    These are the same. It happens when f(x)
       and g(x) are inverses of each other.
HW #9

“There are precious few Einsteins among us.
Most brilliance arises from ordinary people
working together in extraordinary ways.”
                              Roger Von Oech

More Related Content

What's hot (20)

Composite functions
Composite functionsComposite functions
Composite functions
 
1. functions
1. functions1. functions
1. functions
 
Math integration-homework help
Math integration-homework helpMath integration-homework help
Math integration-homework help
 
Lesson 15: The Chain Rule
Lesson 15: The Chain RuleLesson 15: The Chain Rule
Lesson 15: The Chain Rule
 
Parabola
ParabolaParabola
Parabola
 
Vertex
VertexVertex
Vertex
 
Sifat Limit Fungsi Aljabar dan Contoh Soal
Sifat Limit Fungsi Aljabar dan Contoh SoalSifat Limit Fungsi Aljabar dan Contoh Soal
Sifat Limit Fungsi Aljabar dan Contoh Soal
 
Calculus Final Exam
Calculus Final ExamCalculus Final Exam
Calculus Final Exam
 
PM5006 Week 6
PM5006 Week 6PM5006 Week 6
PM5006 Week 6
 
Research Inventy : International Journal of Engineering and Science
Research Inventy : International Journal of Engineering and ScienceResearch Inventy : International Journal of Engineering and Science
Research Inventy : International Journal of Engineering and Science
 
Grup
GrupGrup
Grup
 
Chapter 2(limits)
Chapter 2(limits)Chapter 2(limits)
Chapter 2(limits)
 
Ex algebra (5)
Ex algebra  (5)Ex algebra  (5)
Ex algebra (5)
 
Lesson 10: The Chain Rule
Lesson 10: The Chain RuleLesson 10: The Chain Rule
Lesson 10: The Chain Rule
 
Jordan's solution
Jordan's solutionJordan's solution
Jordan's solution
 
Lesson 11: The Chain Rule
Lesson 11: The Chain RuleLesson 11: The Chain Rule
Lesson 11: The Chain Rule
 
Pc 1.8 notes
Pc 1.8 notesPc 1.8 notes
Pc 1.8 notes
 
Calculus First Test 2011/10/20
Calculus First Test 2011/10/20Calculus First Test 2011/10/20
Calculus First Test 2011/10/20
 
AA Section 8-3
AA Section 8-3AA Section 8-3
AA Section 8-3
 
Logarithms
LogarithmsLogarithms
Logarithms
 

Viewers also liked

Bowie live at the Annandale
Bowie live at the AnnandaleBowie live at the Annandale
Bowie live at the AnnandaleHenry Pepper
 
How To Be the Perfect Client
How To Be the Perfect ClientHow To Be the Perfect Client
How To Be the Perfect ClientKenneth Grady
 
Lake Tahoe Productions Network Ver4
Lake Tahoe Productions Network Ver4Lake Tahoe Productions Network Ver4
Lake Tahoe Productions Network Ver4Kurt Holobaugh
 
Bronwyn Harch Evolving through Disruption v1
Bronwyn Harch Evolving through Disruption v1Bronwyn Harch Evolving through Disruption v1
Bronwyn Harch Evolving through Disruption v1Bronwyn Harch (FTSE)
 
Fotos de matemáticas
Fotos de matemáticasFotos de matemáticas
Fotos de matemáticasbegogarcia18
 
Eadi Marketing- Web designing presentation
Eadi Marketing- Web designing presentationEadi Marketing- Web designing presentation
Eadi Marketing- Web designing presentationagrawal4443
 
Presentación proyectos de educacion infantil
Presentación proyectos de educacion infantilPresentación proyectos de educacion infantil
Presentación proyectos de educacion infantilMaribel307benavides
 
Multiplicacion y Division
Multiplicacion y DivisionMultiplicacion y Division
Multiplicacion y DivisionSantiago Pineda
 
Management control systems
Management control systemsManagement control systems
Management control systemsmamta singh
 
Ansel Adams Why Black and White
Ansel Adams Why Black and WhiteAnsel Adams Why Black and White
Ansel Adams Why Black and Whitedsupplitt
 
SIFT Algorithm Introduction
SIFT Algorithm IntroductionSIFT Algorithm Introduction
SIFT Algorithm IntroductionTruong LD
 
Mapas mentales de Español y Matematicas
Mapas mentales de Español y MatematicasMapas mentales de Español y Matematicas
Mapas mentales de Español y MatematicasEditorial MD
 

Viewers also liked (20)

0201 ch 2 day 1
0201 ch 2 day 10201 ch 2 day 1
0201 ch 2 day 1
 
Bowie live at the Annandale
Bowie live at the AnnandaleBowie live at the Annandale
Bowie live at the Annandale
 
0205 ch 2 day 5
0205 ch 2 day 50205 ch 2 day 5
0205 ch 2 day 5
 
How To Be the Perfect Client
How To Be the Perfect ClientHow To Be the Perfect Client
How To Be the Perfect Client
 
Lake Tahoe Productions Network Ver4
Lake Tahoe Productions Network Ver4Lake Tahoe Productions Network Ver4
Lake Tahoe Productions Network Ver4
 
Bronwyn Harch Evolving through Disruption v1
Bronwyn Harch Evolving through Disruption v1Bronwyn Harch Evolving through Disruption v1
Bronwyn Harch Evolving through Disruption v1
 
Fotos de matemáticas
Fotos de matemáticasFotos de matemáticas
Fotos de matemáticas
 
Ohmslawweb
OhmslawwebOhmslawweb
Ohmslawweb
 
Eadi Marketing- Web designing presentation
Eadi Marketing- Web designing presentationEadi Marketing- Web designing presentation
Eadi Marketing- Web designing presentation
 
LaMima Gilbert Lewis PM
LaMima Gilbert Lewis PMLaMima Gilbert Lewis PM
LaMima Gilbert Lewis PM
 
Thermal Power Plant
Thermal Power PlantThermal Power Plant
Thermal Power Plant
 
Presentación proyectos de educacion infantil
Presentación proyectos de educacion infantilPresentación proyectos de educacion infantil
Presentación proyectos de educacion infantil
 
Multiplicacion y Division
Multiplicacion y DivisionMultiplicacion y Division
Multiplicacion y Division
 
Portfolio
PortfolioPortfolio
Portfolio
 
Management control systems
Management control systemsManagement control systems
Management control systems
 
Ansel Adams Why Black and White
Ansel Adams Why Black and WhiteAnsel Adams Why Black and White
Ansel Adams Why Black and White
 
Scale invariant feature transform
Scale invariant feature transformScale invariant feature transform
Scale invariant feature transform
 
Oracle GoldenGate R12.2 セットアップガイド
Oracle GoldenGate R12.2 セットアップガイドOracle GoldenGate R12.2 セットアップガイド
Oracle GoldenGate R12.2 セットアップガイド
 
SIFT Algorithm Introduction
SIFT Algorithm IntroductionSIFT Algorithm Introduction
SIFT Algorithm Introduction
 
Mapas mentales de Español y Matematicas
Mapas mentales de Español y MatematicasMapas mentales de Español y Matematicas
Mapas mentales de Español y Matematicas
 

Similar to 0210 ch 2 day 10

Operation on functions
Operation on functionsOperation on functions
Operation on functionsJeralyn Obsina
 
lesson10-thechainrule034slides-091006133832-phpapp01.pptx
lesson10-thechainrule034slides-091006133832-phpapp01.pptxlesson10-thechainrule034slides-091006133832-phpapp01.pptx
lesson10-thechainrule034slides-091006133832-phpapp01.pptxJohnReyManzano2
 
Lesson 4 Nov 17 09
Lesson 4 Nov 17 09Lesson 4 Nov 17 09
Lesson 4 Nov 17 09ingroy
 
The Chain Rule, Part 2
The Chain Rule, Part 2The Chain Rule, Part 2
The Chain Rule, Part 2Pablo Antuna
 
Derivatives vinnie
Derivatives vinnieDerivatives vinnie
Derivatives vinniecanalculus
 
Operations on Functions.pdf
Operations on Functions.pdfOperations on Functions.pdf
Operations on Functions.pdfJetCarilloToledo
 
The Chain Rule Powerpoint Lesson
The Chain Rule Powerpoint LessonThe Chain Rule Powerpoint Lesson
The Chain Rule Powerpoint LessonPaul Hawks
 
The Chain Rule Powerpoint Lesson
The Chain Rule Powerpoint LessonThe Chain Rule Powerpoint Lesson
The Chain Rule Powerpoint LessonPaul Hawks
 
Ppt fiske daels mei drisa desain media komputer
Ppt fiske daels mei drisa desain media komputerPpt fiske daels mei drisa desain media komputer
Ppt fiske daels mei drisa desain media komputerArdianPratama22
 
functions limits and continuity
functions limits and continuityfunctions limits and continuity
functions limits and continuityPume Ananda
 
Algebra 2 Unit 5 Lesson 5
Algebra 2 Unit 5 Lesson 5Algebra 2 Unit 5 Lesson 5
Algebra 2 Unit 5 Lesson 5Kate Nowak
 
The Chain Rule Powerpoint Lesson
The Chain Rule Powerpoint LessonThe Chain Rule Powerpoint Lesson
The Chain Rule Powerpoint LessonPaul Hawks
 

Similar to 0210 ch 2 day 10 (20)

Operation on functions
Operation on functionsOperation on functions
Operation on functions
 
lesson10-thechainrule034slides-091006133832-phpapp01.pptx
lesson10-thechainrule034slides-091006133832-phpapp01.pptxlesson10-thechainrule034slides-091006133832-phpapp01.pptx
lesson10-thechainrule034slides-091006133832-phpapp01.pptx
 
______2
  ______2  ______2
______2
 
Lesson 4 Nov 17 09
Lesson 4 Nov 17 09Lesson 4 Nov 17 09
Lesson 4 Nov 17 09
 
The Chain Rule, Part 2
The Chain Rule, Part 2The Chain Rule, Part 2
The Chain Rule, Part 2
 
Derivatives vinnie
Derivatives vinnieDerivatives vinnie
Derivatives vinnie
 
Operations on Functions.pdf
Operations on Functions.pdfOperations on Functions.pdf
Operations on Functions.pdf
 
The Chain Rule Powerpoint Lesson
The Chain Rule Powerpoint LessonThe Chain Rule Powerpoint Lesson
The Chain Rule Powerpoint Lesson
 
The Chain Rule Powerpoint Lesson
The Chain Rule Powerpoint LessonThe Chain Rule Powerpoint Lesson
The Chain Rule Powerpoint Lesson
 
Ppt fiske daels mei drisa desain media komputer
Ppt fiske daels mei drisa desain media komputerPpt fiske daels mei drisa desain media komputer
Ppt fiske daels mei drisa desain media komputer
 
functions limits and continuity
functions limits and continuityfunctions limits and continuity
functions limits and continuity
 
Functions limits and continuity
Functions limits and continuityFunctions limits and continuity
Functions limits and continuity
 
Algebra 2 Unit 5 Lesson 5
Algebra 2 Unit 5 Lesson 5Algebra 2 Unit 5 Lesson 5
Algebra 2 Unit 5 Lesson 5
 
The Chain Rule Powerpoint Lesson
The Chain Rule Powerpoint LessonThe Chain Rule Powerpoint Lesson
The Chain Rule Powerpoint Lesson
 
Day 5 examples
Day 5 examplesDay 5 examples
Day 5 examples
 
Invers fungsi
Invers fungsiInvers fungsi
Invers fungsi
 
FUNCIONES.pptx
FUNCIONES.pptxFUNCIONES.pptx
FUNCIONES.pptx
 
Notes 3-7
Notes 3-7Notes 3-7
Notes 3-7
 
MS2 POwer Rules
MS2 POwer RulesMS2 POwer Rules
MS2 POwer Rules
 
125 7.7
125 7.7125 7.7
125 7.7
 

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
 
1103 ch 11 day 3
1103 ch 11 day 31103 ch 11 day 3
1103 ch 11 day 3
 
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
 

Recently uploaded

“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaVirag Sontakke
 
MARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupMARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupJonathanParaisoCruz
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
Meghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentMeghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentInMediaRes1
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...M56BOOKSTORE PRODUCT/SERVICE
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfUjwalaBharambe
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxEyham Joco
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxAvyJaneVismanos
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 

Recently uploaded (20)

“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of India
 
MARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupMARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized Group
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
9953330565 Low Rate Call Girls In Rohini Delhi NCR
9953330565 Low Rate Call Girls In Rohini  Delhi NCR9953330565 Low Rate Call Girls In Rohini  Delhi NCR
9953330565 Low Rate Call Girls In Rohini Delhi NCR
 
Meghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentMeghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media Component
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptx
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptx
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 

0210 ch 2 day 10

  • 1. 2.7 Combining Functions John 16:33 I have said these things to you, that in me you may have peace. In the world you will have tribulation. But take heart; I have overcome the world.”
  • 2. We can add, subtract, multiply, divide functions
  • 3. We can add, subtract, multiply, divide functions f (x) + g(x) = ( f + g)(x) D : D f I Dg
  • 4. We can add, subtract, multiply, divide functions f (x) + g(x) = ( f + g)(x) D : D f I Dg f (x) − g(x) = ( f − g)(x) D : D f I Dg
  • 5. We can add, subtract, multiply, divide functions f (x) + g(x) = ( f + g)(x) D : D f I Dg f (x) − g(x) = ( f − g)(x) D : D f I Dg f (x)⋅ g(x) = ( f ⋅ g)(x) D : D f I Dg
  • 6. We can add, subtract, multiply, divide functions f (x) + g(x) = ( f + g)(x) D : D f I Dg f (x) − g(x) = ( f − g)(x) D : D f I Dg f (x)⋅ g(x) = ( f ⋅ g)(x) D : D f I Dg f (x) ⎛ f ⎞ D : D f I Dg = ⎜ ⎟ ( x ) g(x) ⎝ g ⎠ and g(x) ≠ 0
  • 7. x−4 x−3 Example: f (x) = g(x) = x −1 x−2
  • 8. x−4 x−3 Example: f (x) = g(x) = x −1 x−2 x−4 x−3 ( f + g)(x) = + D: {x : x ≠ 1,2} x −1 x − 2
  • 9. x−4 x−3 Example: f (x) = g(x) = x −1 x−2 x−4 x−3 ( f + g)(x) = + D: {x : x ≠ 1,2} x −1 x − 2 x−4 x−3 ( f − g)(x) = − D: {x : x ≠ 1,2} x −1 x − 2
  • 10. x−4 x−3 Example: f (x) = g(x) = x −1 x−2 x−4 x−3 ( f + g)(x) = + D: {x : x ≠ 1,2} x −1 x − 2 x−4 x−3 ( f − g)(x) = − D: {x : x ≠ 1,2} x −1 x − 2 ⎛ x − 4 ⎞ ⎛ x − 3 ⎞ ( f ⋅ g)(x) = ⎜ ⎝ x − 1 ⎟ ⎜ x − 2 ⎟ ⎠ ⎝ ⎠ D: {x : x ≠ 1,2}
  • 11. x−4 x−3 Example: f (x) = g(x) = x −1 x−2 x−4 x−3 ( f + g)(x) = + D: {x : x ≠ 1,2} x −1 x − 2 x−4 x−3 ( f − g)(x) = − D: {x : x ≠ 1,2} x −1 x − 2 ⎛ x − 4 ⎞ ⎛ x − 3 ⎞ ( f ⋅ g)(x) = ⎜ ⎝ x − 1 ⎟ ⎜ x − 2 ⎟ ⎠ ⎝ ⎠ D: {x : x ≠ 1,2} ⎛ f ⎞ ⎛ x − 4 ⎞ ⎛ x − 2 ⎞ ⎜ g ⎟ (x) = ⎜ x − 1 ⎟ ⎜ x − 3 ⎟ ⎝ ⎠ ⎝ ⎠ D: {x : x ≠ 1,2, 3} ⎝ ⎠
  • 12. x−4 x−3 Example: f (x) = g(x) = x −1 x−2 x−4 x−3 ( f + g)(x) = + D: {x : x ≠ 1,2} x −1 x − 2 x−4 x−3 ( f − g)(x) = − D: {x : x ≠ 1,2} x −1 x − 2 ⎛ x − 4 ⎞ ⎛ x − 3 ⎞ ( f ⋅ g)(x) = ⎜ ⎝ x − 1 ⎟ ⎜ x − 2 ⎟ ⎠ ⎝ ⎠ D: {x : x ≠ 1,2} ⎛ f ⎞ ⎛ x − 4 ⎞ ⎛ x − 2 ⎞ ⎜ g ⎟ (x) = ⎜ x − 1 ⎟ ⎜ x − 3 ⎟ ⎝ ⎠ ⎝ ⎠ D: {x : x ≠ 1,2, 3} ⎝ ⎠ Be sure to read Example 2 in your textbook
  • 14. Composite Functions The output of one function (the inner function) is used as input for another function (the outer function) notation : f ( g ( x ))
  • 15. Composite Functions The output of one function (the inner function) is used as input for another function (the outer function) notation : f ( g ( x )) Example 1: y = x +1
  • 16. Composite Functions The output of one function (the inner function) is used as input for another function (the outer function) notation : f ( g ( x )) Example 1: y = x +1 Inner function is done first x +1 Outer function is done second x
  • 17. Composite Functions The output of one function (the inner function) is used as input for another function (the outer function) notation : f ( g ( x )) Example 1: y = x +1 Inner function is done first x +1 Outer function is done second x g(x) = x + 1 f (x) = x f (g(x)) = x + 1
  • 19. Composite Functions Example 2: y = sin ( 3θ ) Inner 3θ g(θ ) = 3θ
  • 20. Composite Functions Example 2: y = sin ( 3θ ) Inner 3θ g(θ ) = 3θ Outer sin ( x ) f (x) = sin ( x )
  • 21. Composite Functions Example 2: y = sin ( 3θ ) Inner 3θ g(θ ) = 3θ Outer sin ( x ) f (x) = sin ( x ) f (g(θ )) = sin ( 3θ )
  • 23. Composite Functions Example 3: y = sin 2 (θ ) Inner sin (θ ) g(θ ) = sin (θ )
  • 24. Composite Functions Example 3: y = sin 2 (θ ) Inner sin (θ ) g(θ ) = sin (θ ) Outer x 2 f (x) = x 2
  • 25. Composite Functions Example 3: y = sin 2 (θ ) Inner sin (θ ) g(θ ) = sin (θ ) Outer x 2 f (x) = x 2 f (g(θ )) = sin 2 (θ )
  • 26. Composite Functions Example 4: y = sin 2 ( 3θ )
  • 27. Composite Functions Example 4: y = sin 2 ( 3θ ) Innermost 3θ h(θ ) = 3θ
  • 28. Composite Functions Example 4: y = sin 2 ( 3θ ) Innermost 3θ h(θ ) = 3θ Next Inner sin (θ ) g(θ ) = sin (θ )
  • 29. Composite Functions Example 4: y = sin 2 ( 3θ ) Innermost 3θ h(θ ) = 3θ Next Inner sin (θ ) g(θ ) = sin (θ ) Outer x 2 f (x) = x 2
  • 30. Composite Functions Example 4: y = sin 2 ( 3θ ) Innermost 3θ h(θ ) = 3θ Next Inner sin (θ ) g(θ ) = sin (θ ) Outer x 2 f (x) = x 2 f (g(h(θ ))) = sin 2 ( 3θ )
  • 31. Composite Functions Example 4: y = sin 2 ( 3θ ) Innermost 3θ h(θ ) = 3θ Next Inner sin (θ ) g(θ ) = sin (θ ) Outer x 2 f (x) = x 2 f (g(h(θ ))) = sin 2 ( 3θ ) Be sure to read Example 7 in your textbook
  • 32. Is f (g(x)) = g( f (x)) ?
  • 33. Is f (g(x)) = g( f (x)) ? Let f(x) = 2x+1 g(x) = x-3
  • 34. Is f (g(x)) = g( f (x)) ? Let f(x) = 2x+1 g(x) = x-3 f (g(x)) = 2(x − 3) + 1 = 2x − 6 + 1 = 2x − 5
  • 35. Is f (g(x)) = g( f (x)) ? Let f(x) = 2x+1 g(x) = x-3 f (g(x)) = 2(x − 3) + 1 g( f (x)) = (2x + 1) − 3 = 2x − 6 + 1 = 2x − 2 = 2x − 5
  • 36. Is f (g(x)) = g( f (x)) ? Let f(x) = 2x+1 g(x) = x-3 f (g(x)) = 2(x − 3) + 1 g( f (x)) = (2x + 1) − 3 = 2x − 6 + 1 = 2x − 2 = 2x − 5 Not the same
  • 37. Is f (g(x)) = g( f (x)) ? Let f(x) = 2x+1 g(x) = x-3 f (g(x)) = 2(x − 3) + 1 g( f (x)) = (2x + 1) − 3 = 2x − 6 + 1 = 2x − 2 = 2x − 5 Not the same Could they be the same?
  • 38. Could f (g(x)) = g( f (x)) ?
  • 39. Could f (g(x)) = g( f (x)) ? x −1 Let f (x) = 2x + 1 and g(x) = 2
  • 40. Could f (g(x)) = g( f (x)) ? x −1 Let f (x) = 2x + 1 and g(x) = 2 ⎛ x − 1 ⎞ f (g(x)) = 2 ⎜ ⎟ + 1 ⎝ 2 ⎠ = x − 1+ 1 =x
  • 41. Could f (g(x)) = g( f (x)) ? x −1 Let f (x) = 2x + 1 and g(x) = 2 ⎛ x − 1 ⎞ (2x + 1) − 1 f (g(x)) = 2 ⎜ ⎟ + 1 g( f (x)) = ⎝ 2 ⎠ 2 2x = x − 1+ 1 = 2 =x =x
  • 42. Could f (g(x)) = g( f (x)) ? x −1 Let f (x) = 2x + 1 and g(x) = 2 ⎛ x − 1 ⎞ (2x + 1) − 1 f (g(x)) = 2 ⎜ ⎟ + 1 g( f (x)) = ⎝ 2 ⎠ 2 2x = x − 1+ 1 = 2 =x =x These are the same. It happens when f(x) and g(x) are inverses of each other.
  • 43. HW #9 “There are precious few Einsteins among us. Most brilliance arises from ordinary people working together in extraordinary ways.” Roger Von Oech

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
  27. \n
  28. \n
  29. \n
  30. \n
  31. \n
  32. \n
  33. \n
  34. \n
  35. \n