2- Composition of Functions Flashcards

1
Q

What is the notation of composite functions?

A

(f o g)(x) aka (f(g(x))

g o f)(x) aka (g(f(x)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is an iteration?

A
Function that feeds back into itself
     Example: Find the first 3 iterates of            f(x) = 3x + 2 if x⭕️= 4 >>>o is original
        f(4) = 14 = x1
        f(14) = 44 = x2
        f(44) = 134 = x3
         .....and so on
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How would you solve the following?

    - (f+g)(x)
    - (f-g)(x)
    - (f • g)(x)
    - (f / g)(x)
A
  • f(x) + g(x)
    - f(x) - g(x)
    - f(x) • g(x)
    - f(x) / g(x)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly