SlideShare ist ein Scribd-Unternehmen logo
1 von 64
Chapter 2
                  Functions


Zephaniah 3:17 The LORD your God is in your
midst, a mighty one who will save; he will rejoice
over you with gladness; he will quiet you by his
love; he will exult over you with loud singing.
2.1 What is a function
2.1 What is a function
A function is a relation where for any given input
there is exactly one output
2.1 What is a function
A function is a relation where for any given input
there is exactly one output
A relation is a set of ordered pairs
2.1 What is a function
A function is a relation where for any given input
there is exactly one output
A relation is a set of ordered pairs
Book Definition: A function f is a rule that
assigns to each element x in a set A exactly one
element, called f(x), to a set B
Input:   x   domain
Output: y    range
Input:   x         domain
Output: y          range
Domain: the set of all “legal” inputs
Range:   the set of all possible outputs
Input:     x          domain
Output: y             range
Domain: the set of all “legal” inputs
Range:     the set of all possible outputs
Notation
           y = f(x)
Input:     x          domain
Output: y             range
Domain: the set of all “legal” inputs
Range:     the set of all possible outputs
Notation
           y = f(x)
         y depends on x
Input:     x          domain
Output: y             range
Domain: the set of all “legal” inputs
Range:     the set of all possible outputs
Notation
           y = f(x)
         y depends on x
         x: independent variable
Input:     x          domain
Output: y             range
Domain: the set of all “legal” inputs
Range:     the set of all possible outputs
Notation
           y = f(x)
         y depends on x
         x: independent variable
         y: dependent variable
3
Consider:   y=x
3
Consider:       y=x
    Find f(2)
3
Consider:       y=x
    Find f(2)
                            3
                f (2) = 2
                     =8
3
Consider:        y=x
    Find f(2)
                             3
                 f (2) = 2
                      =8

    Find f(-3)
3
Consider:        y=x
    Find f(2)
                             3
                 f (2) = 2
                      =8

    Find f(-3)
                                 3
                f (−3) = (−3)
                      = (−3)(−3)(−3)

                      = −27
3
Consider:          y=x
    Find f ( 2 )
3
Consider:          y=x
    Find f ( 2 )
                             3
            f   ( 2) =   2
                             1   3
                      ⎛ ⎞
                    = ⎜ 2 ⎟2
                      ⎝ ⎠
                         3
                    =2   2
3
Consider:          y=x
    Find f ( 2 )
                             3
            f   ( 2) =   2
                             1   3
                      ⎛ ⎞
                    = ⎜ 2 ⎟2
                                     -or-
                      ⎝ ⎠
                         3
                    =2   2
3
Consider:          y=x
    Find f ( 2 )
                             3                               3
            f   ( 2) =   2                  f   ( 2) =   2
                             1   3
                      ⎛ ⎞
                    = ⎜ 2 ⎟2
                                     -or-           = 2 2 2
                      ⎝ ⎠
                         3
                    =2   2
                                                    =2 2
If f (x) = 2x − 3x + 4
             2
                         find   f (−2)
If f (x) = 2x − 3x + 4
             2
                              find   f (−2)

                          2
          f (−2) = 2 ( −2 ) − 3( −2 ) + 4
                 = 2(4) + 6 + 4
                 = 18
If f (x) = 2x − 3x + 4
             2
                         find   f (a + h)
If f (x) = 2x − 3x + 4
              2
                                find    f (a + h)

                            2
      f (a + h) = 2 ( a + h ) − 3( a + h ) + 4
If f (x) = 2x − 3x + 4
              2
                                find       f (a + h)

                            2
      f (a + h) = 2 ( a + h ) − 3( a + h ) + 4

                  = 2 ( a + 2ah + h ) − 3a − 3h + 4
                        2             2
If f (x) = 2x − 3x + 4
              2
                                  find       f (a + h)

                              2
      f (a + h) = 2 ( a + h ) − 3( a + h ) + 4

                  = 2 ( a + 2ah + h ) − 3a − 3h + 4
                          2             2


                      2                 2
                  = 2a + 4ah + 2h − 3a − 3h + 4
If f (x) = 2x − 3x + 4
              2
                                   find       f (a + h)

                               2
      f (a + h) = 2 ( a + h ) − 3( a + h ) + 4

                  = 2 ( a + 2ah + h ) − 3a − 3h + 4
                           2             2


                      2                  2
                  = 2a + 4ah + 2h − 3a − 3h + 4
                       2           2
                  = 2a + 2h + 4ah − 3a − 3h + 4
A Piecewise Function is defined by different rules
on different parts of its domain.
A Piecewise Function is defined by different rules
on different parts of its domain.

             ⎧ 3 − x, x ≤ 3
     f (x) = ⎨ 2
             ⎩ x , x > 3
A Piecewise Function is defined by different rules
on different parts of its domain.

             ⎧ 3 − x, x ≤ 3
     f (x) = ⎨ 2              (review how to graph ... do on board)
             ⎩ x , x > 3
A Piecewise Function is defined by different rules
on different parts of its domain.

              ⎧ 3 − x, x ≤ 3
      f (x) = ⎨ 2              (review how to graph ... do on board)
              ⎩ x , x > 3
Find f(2)
A Piecewise Function is defined by different rules
on different parts of its domain.

              ⎧ 3 − x, x ≤ 3
      f (x) = ⎨ 2              (review how to graph ... do on board)
              ⎩ x , x > 3
Find f(2)
      f (2) = 3 − 2
            =1
A Piecewise Function is defined by different rules
on different parts of its domain.

               ⎧ 3 − x, x ≤ 3
       f (x) = ⎨ 2              (review how to graph ... do on board)
               ⎩ x , x > 3
Find f(2)
      f (2) = 3 − 2
            =1
Find f(4)
A Piecewise Function is defined by different rules
on different parts of its domain.

               ⎧ 3 − x, x ≤ 3
       f (x) = ⎨ 2              (review how to graph ... do on board)
               ⎩ x , x > 3
Find f(2)
      f (2) = 3 − 2
            =1
Find f(4)
       f (4) = 4 2
            = 16
Finding Domains ...
    State the Domain for each function:
Finding Domains ...
    State the Domain for each function:

           7
  f (x) =
          x+5
Finding Domains ...
    State the Domain for each function:

           7
  f (x) =
          x+5
  {x : x ≠ −5}
Finding Domains ...
    State the Domain for each function:

           7
  f (x) =                        f (x) = x
          x+5
  {x : x ≠ −5}
Finding Domains ...
    State the Domain for each function:

           7
  f (x) =                        f (x) = x
          x+5
  {x : x ≠ −5}                   {x : x ≥ 0}
Finding Domains ...
    State the Domain for each function:

           7
  f (x) =                         f (x) = x
          x+5
  {x : x ≠ −5}                    {x : x ≥ 0}
                             1
                  f (x) =
                            x−3
Finding Domains ...
    State the Domain for each function:

           7
  f (x) =                           f (x) = x
          x+5
  {x : x ≠ −5}                      {x : x ≥ 0}
                              1
                  f (x) =
                             x−3
                      {x : x > 3}
Finding Domains ...
    State the Domain for each function:
Finding Domains ...
    State the Domain for each function:

            4
  f (x) = 2
         x +x
Finding Domains ...
    State the Domain for each function:

            4
  f (x) = 2
         x +x
     2
    x +x≠0
Finding Domains ...
    State the Domain for each function:

            4
  f (x) = 2
         x +x
     2
    x +x≠0
    x ( x + 1) ≠ 0
Finding Domains ...
    State the Domain for each function:

            4
  f (x) = 2
         x +x
     2
    x +x≠0
    x ( x + 1) ≠ 0
    x ≠ 0 and x + 1 ≠ 0
Finding Domains ...
    State the Domain for each function:

            4
  f (x) = 2
         x +x
     2
    x +x≠0
    x ( x + 1) ≠ 0
    x ≠ 0 and x + 1 ≠ 0
   {x : x ≠ −1,0}
Finding Domains ...
    State the Domain for each function:

            4
  f (x) = 2                f (x) = 16 − x 2
         x +x
     2
    x +x≠0
    x ( x + 1) ≠ 0
    x ≠ 0 and x + 1 ≠ 0
   {x : x ≠ −1,0}
Finding Domains ...
    State the Domain for each function:

            4
  f (x) = 2                f (x) = 16 − x 2
         x +x
     2                            2
    x +x≠0                 16 − x ≥ 0
    x ( x + 1) ≠ 0
    x ≠ 0 and x + 1 ≠ 0
   {x : x ≠ −1,0}
Finding Domains ...
    State the Domain for each function:

            4
  f (x) = 2                f (x) = 16 − x 2
         x +x
     2                            2
    x +x≠0                 16 − x ≥ 0
    x ( x + 1) ≠ 0               2
                                x ≤ 16
    x ≠ 0 and x + 1 ≠ 0
   {x : x ≠ −1,0}
Finding Domains ...
    State the Domain for each function:

            4
  f (x) = 2                f (x) = 16 − x 2
         x +x
     2                            2
    x +x≠0                 16 − x ≥ 0
    x ( x + 1) ≠ 0               2
                                x ≤ 16
    x ≠ 0 and x + 1 ≠ 0    x ≥ −4 and x ≤ 4
   {x : x ≠ −1,0}
Finding Domains ...
    State the Domain for each function:

            4
  f (x) = 2                f (x) = 16 − x 2
         x +x
     2                            2
    x +x≠0                 16 − x ≥ 0
    x ( x + 1) ≠ 0               2
                                x ≤ 16
    x ≠ 0 and x + 1 ≠ 0    x ≥ −4 and x ≤ 4
   {x : x ≠ −1,0}
Finding Domains ...
    State the Domain for each function:

            4
  f (x) = 2                f (x) = 16 − x 2
         x +x
     2                            2
    x +x≠0                 16 − x ≥ 0
    x ( x + 1) ≠ 0               2
                                x ≤ 16
    x ≠ 0 and x + 1 ≠ 0    x ≥ −4 and x ≤ 4
   {x : x ≠ −1,0}
                           {x : −4 ≤ x ≤ 4}
Finding Domains ...
    State the Domain for each function:

            4
  f (x) = 2                f (x) = 16 − x 2
         x +x
     2                            2
    x +x≠0                 16 − x ≥ 0
    x ( x + 1) ≠ 0               2
                                x ≤ 16
    x ≠ 0 and x + 1 ≠ 0    x ≥ −4 and x ≤ 4
   {x : x ≠ −1,0}
                           {x : −4 ≤ x ≤ 4}
                                [ −4, 4 ]
Finding Domains ...
    State the Domain for each function:
Finding Domains ...
    State the Domain for each function:
                      2
                      x +x−2
              f (x) = 2
                     x + 5x + 6
Finding Domains ...
    State the Domain for each function:
                        2
                      x +x−2
              f (x) = 2
                     x + 5x + 6

              f (x) =
                      ( x + 2 )( x − 1)
                      ( x + 2 )( x + 3)
Finding Domains ...
    State the Domain for each function:
                        2
                      x +x−2
              f (x) = 2
                     x + 5x + 6

              f (x) =
                      ( x + 2 )( x − 1)
                      ( x + 2 )( x + 3)
                {x : x ≠ −3,−2}
Bonus Math ...
    Let’s look at the graph for that function:
                     2
                     x +x−2
             f (x) = 2
                    x + 5x + 6
Bonus Math ...
    Let’s look at the graph for that function:
                        2
                        x +x−2
                f (x) = 2
                       x + 5x + 6
                           x −1
Behaves like:      f (x) =
                           x+3
Bonus Math ...
    Let’s look at the graph for that function:
                        2
                        x +x−2
                f (x) = 2
                       x + 5x + 6
                           x −1
Behaves like:      f (x) =
                           x+3
   vertical asymptote at x=-3
Bonus Math ...
    Let’s look at the graph for that function:
                        2
                        x +x−2
                f (x) = 2
                       x + 5x + 6
                           x −1
Behaves like:      f (x) =
                           x+3
   vertical asymptote at x=-3
   hole at x=-2
Bonus Math ...
    Let’s look at the graph for that function:
                                 2
                             x +x−2
                     f (x) = 2
                            x + 5x + 6
                                    x −1
Behaves like:               f (x) =
                                    x+3
   vertical asymptote at x=-3
   hole at x=-2
   (graph both to verify)
Do HW #1
“Always do more than what is required of you.”
                      George S. Patton

Weitere ähnliche Inhalte

Was ist angesagt?

Logarithms
LogarithmsLogarithms
Logarithms
supoteta
 
Add Maths Module
Add Maths ModuleAdd Maths Module
Add Maths Module
bspm
 
Concept map function
Concept map functionConcept map function
Concept map function
zabidah awang
 
02[anal add math cd]
02[anal add math cd]02[anal add math cd]
02[anal add math cd]
ilya shafiqah
 
Chapter 1 functions
Chapter 1  functionsChapter 1  functions
Chapter 1 functions
Umair Pearl
 
Soalan kuiz matematik tambahan ting empat 2006
Soalan kuiz matematik tambahan ting empat 2006Soalan kuiz matematik tambahan ting empat 2006
Soalan kuiz matematik tambahan ting empat 2006
zabidah awang
 
Math quota-cmu-g-455
Math quota-cmu-g-455Math quota-cmu-g-455
Math quota-cmu-g-455
Rungroj Ssan
 
Pc12 sol c04_4-4
Pc12 sol c04_4-4Pc12 sol c04_4-4
Pc12 sol c04_4-4
Garden City
 

Was ist angesagt? (19)

Logarithms
LogarithmsLogarithms
Logarithms
 
Form 4 add maths note
Form 4 add maths noteForm 4 add maths note
Form 4 add maths note
 
Add Maths Module
Add Maths ModuleAdd Maths Module
Add Maths Module
 
Algebra 2 Unit 5 Lesson 2
Algebra 2 Unit 5 Lesson 2Algebra 2 Unit 5 Lesson 2
Algebra 2 Unit 5 Lesson 2
 
Maths important questions for 2018
Maths important questions for 2018Maths important questions for 2018
Maths important questions for 2018
 
Concept map function
Concept map functionConcept map function
Concept map function
 
02[anal add math cd]
02[anal add math cd]02[anal add math cd]
02[anal add math cd]
 
Chapter 1 functions
Chapter 1  functionsChapter 1  functions
Chapter 1 functions
 
Soalan kuiz matematik tambahan ting empat 2006
Soalan kuiz matematik tambahan ting empat 2006Soalan kuiz matematik tambahan ting empat 2006
Soalan kuiz matematik tambahan ting empat 2006
 
Jacob's and Vlad's D.E.V. Project - 2012
Jacob's and Vlad's D.E.V. Project - 2012Jacob's and Vlad's D.E.V. Project - 2012
Jacob's and Vlad's D.E.V. Project - 2012
 
Math quota-cmu-g-455
Math quota-cmu-g-455Math quota-cmu-g-455
Math quota-cmu-g-455
 
Pc12 sol c04_4-4
Pc12 sol c04_4-4Pc12 sol c04_4-4
Pc12 sol c04_4-4
 
Complex numbers
Complex numbersComplex numbers
Complex numbers
 
Lesson 21: Curve Sketching (slides)
Lesson 21: Curve Sketching (slides)Lesson 21: Curve Sketching (slides)
Lesson 21: Curve Sketching (slides)
 
Functionworksheet1
Functionworksheet1Functionworksheet1
Functionworksheet1
 
Ex algebra (5)
Ex algebra  (5)Ex algebra  (5)
Ex algebra (5)
 
Lesson 1 operations slides notes
Lesson 1 operations slides notesLesson 1 operations slides notes
Lesson 1 operations slides notes
 
Natalia rosales duban erazo
Natalia rosales duban erazoNatalia rosales duban erazo
Natalia rosales duban erazo
 
Algebra 2 Lesson 5-6
Algebra 2 Lesson 5-6Algebra 2 Lesson 5-6
Algebra 2 Lesson 5-6
 

Andere mochten auch

Bronwyn Harch Evolving through Disruption v1
Bronwyn Harch Evolving through Disruption v1Bronwyn Harch Evolving through Disruption v1
Bronwyn Harch Evolving through Disruption v1
Bronwyn Harch (FTSE)
 
Lake Tahoe Productions Network Ver4
Lake Tahoe Productions Network Ver4Lake Tahoe Productions Network Ver4
Lake Tahoe Productions Network Ver4
Kurt Holobaugh
 
Fotos de matemáticas
Fotos de matemáticasFotos de matemáticas
Fotos de matemáticas
begogarcia18
 
Presentación proyectos de educacion infantil
Presentación proyectos de educacion infantilPresentación proyectos de educacion infantil
Presentación proyectos de educacion infantil
Maribel307benavides
 
Management control systems
Management control systemsManagement control systems
Management control systems
mamta singh
 

Andere mochten auch (20)

Bowie live at the Annandale
Bowie live at the AnnandaleBowie live at the Annandale
Bowie live at the Annandale
 
Bronwyn Harch Evolving through Disruption v1
Bronwyn Harch Evolving through Disruption v1Bronwyn Harch Evolving through Disruption v1
Bronwyn Harch Evolving through Disruption v1
 
0205 ch 2 day 5
0205 ch 2 day 50205 ch 2 day 5
0205 ch 2 day 5
 
Ohmslawweb
OhmslawwebOhmslawweb
Ohmslawweb
 
Lake Tahoe Productions Network Ver4
Lake Tahoe Productions Network Ver4Lake Tahoe Productions Network Ver4
Lake Tahoe Productions Network Ver4
 
How To Be the Perfect Client
How To Be the Perfect ClientHow To Be the Perfect Client
How To Be the Perfect Client
 
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
 
Fotos de matemáticas
Fotos de matemáticasFotos de matemáticas
Fotos de matemáticas
 
Thermal Power Plant
Thermal Power PlantThermal Power Plant
Thermal Power Plant
 
Multiplicacion y Division
Multiplicacion y DivisionMultiplicacion y Division
Multiplicacion y Division
 
Presentación proyectos de educacion infantil
Presentación proyectos de educacion infantilPresentación proyectos de educacion infantil
Presentación proyectos de educacion infantil
 
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
 
Mapas mentales para Primaria
Mapas mentales para Primaria Mapas mentales para Primaria
Mapas mentales para Primaria
 

Ähnlich wie 0201 ch 2 day 1

Equations of Tangents and Normals
Equations of Tangents and NormalsEquations of Tangents and Normals
Equations of Tangents and Normals
coburgmaths
 
Applications of derivatives
Applications of derivativesApplications of derivatives
Applications of derivatives
Tarun Gehlot
 
ฟังก์ชัน(function)
ฟังก์ชัน(function)ฟังก์ชัน(function)
ฟังก์ชัน(function)
Yodhathai Reesrikom
 
119 Powerpoint 2.6
119 Powerpoint 2.6119 Powerpoint 2.6
119 Powerpoint 2.6
Jeneva Clark
 
Form 4 Add Maths Note
Form 4 Add Maths NoteForm 4 Add Maths Note
Form 4 Add Maths Note
Chek Wei Tan
 

Ähnlich wie 0201 ch 2 day 1 (20)

Equations of Tangents and Normals
Equations of Tangents and NormalsEquations of Tangents and Normals
Equations of Tangents and Normals
 
Partial Differentiation & Application
Partial Differentiation & Application Partial Differentiation & Application
Partial Differentiation & Application
 
4.1 inverse functions t
4.1 inverse functions t4.1 inverse functions t
4.1 inverse functions t
 
Applications of derivatives
Applications of derivativesApplications of derivatives
Applications of derivatives
 
ฟังก์ชัน(function)
ฟังก์ชัน(function)ฟังก์ชัน(function)
ฟังก์ชัน(function)
 
119 Powerpoint 2.6
119 Powerpoint 2.6119 Powerpoint 2.6
119 Powerpoint 2.6
 
FUNCIONES.pptx
FUNCIONES.pptxFUNCIONES.pptx
FUNCIONES.pptx
 
Module 2 polynomial functions
Module 2   polynomial functionsModule 2   polynomial functions
Module 2 polynomial functions
 
Modul 1 functions
Modul 1 functionsModul 1 functions
Modul 1 functions
 
Parabola
ParabolaParabola
Parabola
 
Numerical differentiation integration
Numerical differentiation integrationNumerical differentiation integration
Numerical differentiation integration
 
Vertex
VertexVertex
Vertex
 
Operation on functions
Operation on functionsOperation on functions
Operation on functions
 
Form 4 Add Maths Note
Form 4 Add Maths NoteForm 4 Add Maths Note
Form 4 Add Maths Note
 
Form 4-add-maths-note
Form 4-add-maths-noteForm 4-add-maths-note
Form 4-add-maths-note
 
functions limits and continuity
functions limits and continuityfunctions limits and continuity
functions limits and continuity
 
MS2 POwer Rules
MS2 POwer RulesMS2 POwer Rules
MS2 POwer Rules
 
PM5006 Week 6
PM5006 Week 6PM5006 Week 6
PM5006 Week 6
 
125 5.4
125 5.4125 5.4
125 5.4
 
Functions limits and continuity
Functions limits and continuityFunctions limits and continuity
Functions limits and continuity
 

Mehr von festivalelmo

Mehr von 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
 

Kürzlich hochgeladen

Kürzlich hochgeladen (20)

On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptx
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptx
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)
 
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptxOn_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 

0201 ch 2 day 1

  • 1. Chapter 2 Functions Zephaniah 3:17 The LORD your God is in your midst, a mighty one who will save; he will rejoice over you with gladness; he will quiet you by his love; he will exult over you with loud singing.
  • 2. 2.1 What is a function
  • 3. 2.1 What is a function A function is a relation where for any given input there is exactly one output
  • 4. 2.1 What is a function A function is a relation where for any given input there is exactly one output A relation is a set of ordered pairs
  • 5. 2.1 What is a function A function is a relation where for any given input there is exactly one output A relation is a set of ordered pairs Book Definition: A function f is a rule that assigns to each element x in a set A exactly one element, called f(x), to a set B
  • 6. Input: x domain Output: y range
  • 7. Input: x domain Output: y range Domain: the set of all “legal” inputs Range: the set of all possible outputs
  • 8. Input: x domain Output: y range Domain: the set of all “legal” inputs Range: the set of all possible outputs Notation y = f(x)
  • 9. Input: x domain Output: y range Domain: the set of all “legal” inputs Range: the set of all possible outputs Notation y = f(x) y depends on x
  • 10. Input: x domain Output: y range Domain: the set of all “legal” inputs Range: the set of all possible outputs Notation y = f(x) y depends on x x: independent variable
  • 11. Input: x domain Output: y range Domain: the set of all “legal” inputs Range: the set of all possible outputs Notation y = f(x) y depends on x x: independent variable y: dependent variable
  • 12. 3 Consider: y=x
  • 13. 3 Consider: y=x Find f(2)
  • 14. 3 Consider: y=x Find f(2) 3 f (2) = 2 =8
  • 15. 3 Consider: y=x Find f(2) 3 f (2) = 2 =8 Find f(-3)
  • 16. 3 Consider: y=x Find f(2) 3 f (2) = 2 =8 Find f(-3) 3 f (−3) = (−3) = (−3)(−3)(−3) = −27
  • 17. 3 Consider: y=x Find f ( 2 )
  • 18. 3 Consider: y=x Find f ( 2 ) 3 f ( 2) = 2 1 3 ⎛ ⎞ = ⎜ 2 ⎟2 ⎝ ⎠ 3 =2 2
  • 19. 3 Consider: y=x Find f ( 2 ) 3 f ( 2) = 2 1 3 ⎛ ⎞ = ⎜ 2 ⎟2 -or- ⎝ ⎠ 3 =2 2
  • 20. 3 Consider: y=x Find f ( 2 ) 3 3 f ( 2) = 2 f ( 2) = 2 1 3 ⎛ ⎞ = ⎜ 2 ⎟2 -or- = 2 2 2 ⎝ ⎠ 3 =2 2 =2 2
  • 21. If f (x) = 2x − 3x + 4 2 find f (−2)
  • 22. If f (x) = 2x − 3x + 4 2 find f (−2) 2 f (−2) = 2 ( −2 ) − 3( −2 ) + 4 = 2(4) + 6 + 4 = 18
  • 23. If f (x) = 2x − 3x + 4 2 find f (a + h)
  • 24. If f (x) = 2x − 3x + 4 2 find f (a + h) 2 f (a + h) = 2 ( a + h ) − 3( a + h ) + 4
  • 25. If f (x) = 2x − 3x + 4 2 find f (a + h) 2 f (a + h) = 2 ( a + h ) − 3( a + h ) + 4 = 2 ( a + 2ah + h ) − 3a − 3h + 4 2 2
  • 26. If f (x) = 2x − 3x + 4 2 find f (a + h) 2 f (a + h) = 2 ( a + h ) − 3( a + h ) + 4 = 2 ( a + 2ah + h ) − 3a − 3h + 4 2 2 2 2 = 2a + 4ah + 2h − 3a − 3h + 4
  • 27. If f (x) = 2x − 3x + 4 2 find f (a + h) 2 f (a + h) = 2 ( a + h ) − 3( a + h ) + 4 = 2 ( a + 2ah + h ) − 3a − 3h + 4 2 2 2 2 = 2a + 4ah + 2h − 3a − 3h + 4 2 2 = 2a + 2h + 4ah − 3a − 3h + 4
  • 28. A Piecewise Function is defined by different rules on different parts of its domain.
  • 29. A Piecewise Function is defined by different rules on different parts of its domain. ⎧ 3 − x, x ≤ 3 f (x) = ⎨ 2 ⎩ x , x > 3
  • 30. A Piecewise Function is defined by different rules on different parts of its domain. ⎧ 3 − x, x ≤ 3 f (x) = ⎨ 2 (review how to graph ... do on board) ⎩ x , x > 3
  • 31. A Piecewise Function is defined by different rules on different parts of its domain. ⎧ 3 − x, x ≤ 3 f (x) = ⎨ 2 (review how to graph ... do on board) ⎩ x , x > 3 Find f(2)
  • 32. A Piecewise Function is defined by different rules on different parts of its domain. ⎧ 3 − x, x ≤ 3 f (x) = ⎨ 2 (review how to graph ... do on board) ⎩ x , x > 3 Find f(2) f (2) = 3 − 2 =1
  • 33. A Piecewise Function is defined by different rules on different parts of its domain. ⎧ 3 − x, x ≤ 3 f (x) = ⎨ 2 (review how to graph ... do on board) ⎩ x , x > 3 Find f(2) f (2) = 3 − 2 =1 Find f(4)
  • 34. A Piecewise Function is defined by different rules on different parts of its domain. ⎧ 3 − x, x ≤ 3 f (x) = ⎨ 2 (review how to graph ... do on board) ⎩ x , x > 3 Find f(2) f (2) = 3 − 2 =1 Find f(4) f (4) = 4 2 = 16
  • 35. Finding Domains ... State the Domain for each function:
  • 36. Finding Domains ... State the Domain for each function: 7 f (x) = x+5
  • 37. Finding Domains ... State the Domain for each function: 7 f (x) = x+5 {x : x ≠ −5}
  • 38. Finding Domains ... State the Domain for each function: 7 f (x) = f (x) = x x+5 {x : x ≠ −5}
  • 39. Finding Domains ... State the Domain for each function: 7 f (x) = f (x) = x x+5 {x : x ≠ −5} {x : x ≥ 0}
  • 40. Finding Domains ... State the Domain for each function: 7 f (x) = f (x) = x x+5 {x : x ≠ −5} {x : x ≥ 0} 1 f (x) = x−3
  • 41. Finding Domains ... State the Domain for each function: 7 f (x) = f (x) = x x+5 {x : x ≠ −5} {x : x ≥ 0} 1 f (x) = x−3 {x : x > 3}
  • 42. Finding Domains ... State the Domain for each function:
  • 43. Finding Domains ... State the Domain for each function: 4 f (x) = 2 x +x
  • 44. Finding Domains ... State the Domain for each function: 4 f (x) = 2 x +x 2 x +x≠0
  • 45. Finding Domains ... State the Domain for each function: 4 f (x) = 2 x +x 2 x +x≠0 x ( x + 1) ≠ 0
  • 46. Finding Domains ... State the Domain for each function: 4 f (x) = 2 x +x 2 x +x≠0 x ( x + 1) ≠ 0 x ≠ 0 and x + 1 ≠ 0
  • 47. Finding Domains ... State the Domain for each function: 4 f (x) = 2 x +x 2 x +x≠0 x ( x + 1) ≠ 0 x ≠ 0 and x + 1 ≠ 0 {x : x ≠ −1,0}
  • 48. Finding Domains ... State the Domain for each function: 4 f (x) = 2 f (x) = 16 − x 2 x +x 2 x +x≠0 x ( x + 1) ≠ 0 x ≠ 0 and x + 1 ≠ 0 {x : x ≠ −1,0}
  • 49. Finding Domains ... State the Domain for each function: 4 f (x) = 2 f (x) = 16 − x 2 x +x 2 2 x +x≠0 16 − x ≥ 0 x ( x + 1) ≠ 0 x ≠ 0 and x + 1 ≠ 0 {x : x ≠ −1,0}
  • 50. Finding Domains ... State the Domain for each function: 4 f (x) = 2 f (x) = 16 − x 2 x +x 2 2 x +x≠0 16 − x ≥ 0 x ( x + 1) ≠ 0 2 x ≤ 16 x ≠ 0 and x + 1 ≠ 0 {x : x ≠ −1,0}
  • 51. Finding Domains ... State the Domain for each function: 4 f (x) = 2 f (x) = 16 − x 2 x +x 2 2 x +x≠0 16 − x ≥ 0 x ( x + 1) ≠ 0 2 x ≤ 16 x ≠ 0 and x + 1 ≠ 0 x ≥ −4 and x ≤ 4 {x : x ≠ −1,0}
  • 52. Finding Domains ... State the Domain for each function: 4 f (x) = 2 f (x) = 16 − x 2 x +x 2 2 x +x≠0 16 − x ≥ 0 x ( x + 1) ≠ 0 2 x ≤ 16 x ≠ 0 and x + 1 ≠ 0 x ≥ −4 and x ≤ 4 {x : x ≠ −1,0}
  • 53. Finding Domains ... State the Domain for each function: 4 f (x) = 2 f (x) = 16 − x 2 x +x 2 2 x +x≠0 16 − x ≥ 0 x ( x + 1) ≠ 0 2 x ≤ 16 x ≠ 0 and x + 1 ≠ 0 x ≥ −4 and x ≤ 4 {x : x ≠ −1,0} {x : −4 ≤ x ≤ 4}
  • 54. Finding Domains ... State the Domain for each function: 4 f (x) = 2 f (x) = 16 − x 2 x +x 2 2 x +x≠0 16 − x ≥ 0 x ( x + 1) ≠ 0 2 x ≤ 16 x ≠ 0 and x + 1 ≠ 0 x ≥ −4 and x ≤ 4 {x : x ≠ −1,0} {x : −4 ≤ x ≤ 4} [ −4, 4 ]
  • 55. Finding Domains ... State the Domain for each function:
  • 56. Finding Domains ... State the Domain for each function: 2 x +x−2 f (x) = 2 x + 5x + 6
  • 57. Finding Domains ... State the Domain for each function: 2 x +x−2 f (x) = 2 x + 5x + 6 f (x) = ( x + 2 )( x − 1) ( x + 2 )( x + 3)
  • 58. Finding Domains ... State the Domain for each function: 2 x +x−2 f (x) = 2 x + 5x + 6 f (x) = ( x + 2 )( x − 1) ( x + 2 )( x + 3) {x : x ≠ −3,−2}
  • 59. Bonus Math ... Let’s look at the graph for that function: 2 x +x−2 f (x) = 2 x + 5x + 6
  • 60. Bonus Math ... Let’s look at the graph for that function: 2 x +x−2 f (x) = 2 x + 5x + 6 x −1 Behaves like: f (x) = x+3
  • 61. Bonus Math ... Let’s look at the graph for that function: 2 x +x−2 f (x) = 2 x + 5x + 6 x −1 Behaves like: f (x) = x+3 vertical asymptote at x=-3
  • 62. Bonus Math ... Let’s look at the graph for that function: 2 x +x−2 f (x) = 2 x + 5x + 6 x −1 Behaves like: f (x) = x+3 vertical asymptote at x=-3 hole at x=-2
  • 63. Bonus Math ... Let’s look at the graph for that function: 2 x +x−2 f (x) = 2 x + 5x + 6 x −1 Behaves like: f (x) = x+3 vertical asymptote at x=-3 hole at x=-2 (graph both to verify)
  • 64. Do HW #1 “Always do more than what is required of you.” George S. Patton

Hinweis der Redaktion

  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
  36. \n
  37. \n
  38. \n
  39. \n
  40. \n
  41. \n
  42. \n
  43. \n
  44. \n
  45. \n
  46. \n
  47. \n
  48. \n
  49. \n
  50. \n
  51. \n
  52. \n
  53. \n