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

mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
“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
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
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 ModeThiyagu K
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
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 ...EduSkills OECD
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting DataJhengPantaleon
 
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
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
PSYCHIATRIC History collection FORMAT.pptx
PSYCHIATRIC   History collection FORMAT.pptxPSYCHIATRIC   History collection FORMAT.pptx
PSYCHIATRIC History collection FORMAT.pptxPoojaSen20
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
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
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 

Recently uploaded (20)

mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
“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...
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
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
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
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 ...
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
 
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
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
PSYCHIATRIC History collection FORMAT.pptx
PSYCHIATRIC   History collection FORMAT.pptxPSYCHIATRIC   History collection FORMAT.pptx
PSYCHIATRIC History collection FORMAT.pptx
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
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
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 

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