0% found this document useful (0 votes)
211 views9 pages

10.2 Algebra of Functions

The document discusses operations that can be performed on functions, including addition, subtraction, multiplication, division, and composition. It provides examples of evaluating each type of operation on functions at both numbers and variables. Key points covered include: - The notation for the basic operations of addition, subtraction, multiplication, and division of functions - How to evaluate the operations by plugging a number into each function and then performing the indicated operation - How operations can also be written without a number by leaving the variable - The notation and process for composition of functions, which involves evaluating the inner function first and substituting its result into the outer function
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
211 views9 pages

10.2 Algebra of Functions

The document discusses operations that can be performed on functions, including addition, subtraction, multiplication, division, and composition. It provides examples of evaluating each type of operation on functions at both numbers and variables. Key points covered include: - The notation for the basic operations of addition, subtraction, multiplication, and division of functions - How to evaluate the operations by plugging a number into each function and then performing the indicated operation - How operations can also be written without a number by leaving the variable - The notation and process for composition of functions, which involves evaluating the inner function first and substituting its result into the outer function
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 9

10.

2
Functions - Algebra of Functions
Several functions can work together in one larger function. There are 5 common
operations that can be performed on functions. The four basic operations on func-
tions are adding, subtracting, multiplying, and dividing. The notation for these
functions is as follows.

Addition (f + g)(x) = f (x) + g(x)


Subtraction (f − g)(x) = f (x) − g(x)
Multiplication (f · 
 g)(x) = f (x)g(x)
f f (x)
Division (x) =
g g(x)

When we do one of these four basic operations we can simply evaluate the two
functions at the value and then do the operation with both solutions

Example 1.

f (x) = x2 − x − 2
g(x) = x + 1 Evaluate f and g at − 3
find (f + g)( − 3)

f ( − 3) = ( − 3)2 − ( − 3) − 3 Evaluate f at − 3
f ( − 3) = 9 + 3 − 3
f ( − 3) = 9

g( − 3) = ( − 3) + 1 Evaluate g at − 3
g( − 3) = − 2

f ( − 3) + g( − 3) Add the two functions together


(9) + ( − 2) Add
7 Our Solution

The process is the same regardless of the operation being performed.

Example 2.

h(x) = 2x − 4
k(x) = − 3x + 1 Evaluate h and k at 5
Find (h · k)(5)

h(5) = 2(5) − 4 Evaluate h at 5


h(5) = 10 − 4

1
h(5) = 6

k(5) = − 3(5) + 1 Evaluate k at 5


k(5) = − 15 + 1
k(5) = − 14

h(5)k(5) Multiply the two results together


(6)( − 14) Multiply
− 84 Our Solution

Often as we add, subtract, multiply, or divide functions, we do so in a way that


keeps the variable. If there is no number to plug into the equations we will simply
use each equation, in parenthesis, and simplify the expression.

Example 3.

f (x) = 2x − 4
g(x) = x2 − x + 5 Write subtraction problem of functions
Find (f − g)(x)

f (x) − g(x) Replace f (x) with (2x − 3) and g(x) with (x2 − x + 5)
(2x − 3) − (x2 − x + 5) Distribute the negative
2x − 3 − x2 + x − 5 Combine like terms
− x2 + 3x − 8 Our Solution

The parenthesis aer very important when we are replacing f (x) and g(x) with a
variable. In the previous example we needed the parenthesis to know to distribute
the negative.

Example 4.

f (x) = x2 − 4x − 5
g(x) =x −5 Write division problem of functions
f
Find (x)
g

f (x)
Replace f (x) with (x2 − 4x − 5) and g(x) with (x − 5)
g(x)

(x2 − 4x − 5)
To simplify the fraction we must first factor
(x − 5)

(x − 5)(x + 1)
Divide out common factor of x − 5
(x − 5)

2
x+1 Our Solution

Just as we could substitute an expression into evaluating functions, we can substi-


tute an expression into the operations on functions.

Example 5.

f (x) = 2x − 1
g(x) = x + 4 Write as a sum of functions
Find (f + g)(x2)

f (x2) + g(x2) Replace x in f (x) and g(x) with x2


[2(x2) − 1] + [(x2) + 4] Distribute the + does not change the problem
2x2 − 1 + x2 + 4 Combine like terms
3x2 + 3 Our Solution

Example 6.

f (x) = 2x − 1
g(x) = x + 4 Write as a product of functions
Find (f · g)(3x)

f (3x)g(3x) Replace x in f (x) and g(x) with 3x


[2(3x) − 1][(3x) + 4] Multiply our 2(3x)
(6x − 1)(3x + 4) FOIL
18x2 + 24x − 3x − 4 Combine like terms
18x2 + 21x − 4 Our Solution

The fifth operation of functions is called composition of functions. A composition


of functions is a function inside of a function. The notation used for composition
of functions is:
(f ◦ g)(x) = f (g(x))

To calculate a composition of function we will evaluate the inner function and


substitute the answer into the outer function. This is shown in the following
example.

Example 7.

a(x) = x2 − 2x + 1
b(x) = x − 5 Rewrite as a function in function
Find (a ◦ b)(3)

3
a(b(3)) Evaluate the inner function first, b(3)
b(3) = (3) − 5 = − 2 This solution is put into a, a( − 2)
a( − 2) = ( − 2)2 − 2( − 2) + 1 Evaluate
a( − 2) = 4 + 4 + 1 Add
a( − 2) = 9 Our Solution

We can also evaluate a composition of functions at a variable. In these problems


we will take the inside function and substitute into the outside function.

Example 8.

f (x) = x2 − x
g(x) = x + 3 Rewrite as a function in function
Find (f ◦ g)(x)

f (g(x)) Replace g(x) with x + 3


f (x + 3) Replace the variables in f with (x + 3)
2
(x + 3) − (x + 3) Evaluate exponent
2
(x + 6x + 9) − (x + 3) Distirbute negative
x2 + 6x + 9 − x − 3 Combine like terms
x2 + 5x + 6 Our Solution

It is important to note that very rarely is (f ◦ g)(x) the same as (g ◦ f )(x) as the
following example will show, using the same equations, but compositing them in
the opposite direction.

Example 9.

f (x) = x2 − x
g(x) = x + 3 Rewrite as a function in function
Find (g ◦ f )(x)

g(f (x)) Replace f (x) with x2 − x


g(x2 − x) Replace the variable in g with (x2 − x)
(x2 − x) + 3 Here the parenthesis don ′t change the expression
x2 − x + 3 Our Solution

Beginning and Intermediate Algebra by Tyler Wallace is licensed under a Creative Commons
Attribution 3.0 Unported License. (http://creativecommons.org/licenses/by/3.0/)

4
10.2

Practice - Algebra of Functions

Perform the indicated operations.

1) g(a) = a3 + 5a2 21) g(x) = 4x + 5


f(a) = 2a + 4 h(x) = x2 + 5x
Find g(3) + f (3) Find g(x) · h(x)

3) g(a) = 3a + 3 23) f (x) = x2 − 5x


f (a) = 2a − 2 g(x) = x + 5
Find (g + f )(9) Find (f + g)(x)
5) g(x) = x + 3 25) g(n) = n2 + 5
f(x) = − x + 4 f (n) = 3n + 5
Find (g − f )(3) Find g(n) ÷ f (n)
7) g(x) = x2 + 2 27) g(a) = − 2a + 5
f (x) = 2x + 5 f (a) = 3a + 5
Find (g − f )(0) g
Find ( f )(a)
9) g(t) = t − 3
h(t) = − 3t3 + 6t 29) h(n) = n3 + 4n
Find g(1) + h(1) g(n) = 4n + 5
Find h(n) + g(n)
11) h(t) = t + 5
g(t) = 3t − 5 31) g(n) = n2 − 4n
Find (h · g)(5) h(n) = n − 5
Find g(n2) · h(n2)
13) h(n) = 2n − 1
g(n) = 3n − 5 33) f (x) = 2x
Find h(0) ÷ g(0) g(x) = − 3x − 1
Find (f + g)( − 4 − x)
15) f (a) = − 2a − 4
g(a) = a2 + 3 35) f (t) = t2 + 4t
f
Find ( g )(7) g(t) = 4t + 2
Find f (t2) + g(t2)
17) g(x) = − x3 − 2
h(x) = 4x 37) g(a) = a3 + 2a
Find (g − h)(x) h(a) = 3a + 4
g
Find ( h )( − x)
19) f (x) = − 3x + 2
g(x) = x2 + 5x 39) f (n) = − 3n2 + 1
Find (f − g)(x) g(n) = 2n + 1

5
n
Find (f − g)( 3 ) 6) g(x) = − 4x + 1
h(x) = − 2x − 1
41) f (x) = − 4x + 1 Find g(5) + h(5)
g(x) = 4x + 3
Find (f ◦ g)(9) 8) g(x) = 3x + 1
f (x) = x3 + 3x2
43) h(a) = 3a + 3 Find g(2) · f (2)
g(a) = a + 1
Find (h ◦ g)(5) 10) f (n) = n − 5
g(n) = 4n + 2
45) g(x) = x + 4 Find (f + g)( − 8)
h(x) = x2 − 1
Find (g ◦ h)(10) 12) g(a) = 3a − 2
h(a) = 4a − 2
47) f (n) = − 4n + 2 Find (g + h) ( − 10)
g(n) = n + 4
Find (f ◦ g)(9) 14) g(x) = x2 − 2
h(x) = 2x + 5
49) g(x) = 2x − 4 Find g( − 6) + h( − 6)
h(x) = 2x3 + 4x2
16) g(n) = n2 − 3
Find (g ◦ h)(3)
h(n) = 2n − 3
51) g(x) = x2 − 5x Find (g − h)(n)
h(x) = 4x + 4
18) g(x) = 2x − 3
Find (g ◦ h)(x)
h(x) = x3 − 2x2 + 2x
53) f (a) = − 2a + 2 Find (g − h)(x)
g(a) = 4a 20) g(t) = t − 4
Find (f ◦ g)(a) h(t) = 2t
55) g(x) = 4x + 4 Find (g · h)(t)
f (x) = x3 − 1 22) g(t) = − 2t2 − 5t
Find (g ◦ f )(x) h(t) = t + 5
Find g(t) · h(t)
57) g(x) = − x + 5
f (x) = 2x − 3 24) f (x) = 4x − 4
Find (g ◦ f )(x) g(x) = 3x2 − 5
Find (f + g)(x)
59) f (t) = 4t + 3
g(t) = − 4t − 2 26) f (x) = 2x + 4
Find (f ◦ g)(t) g(x) = 4x − 5
Find f (x) − g(x)
2) f (x) = − 3x2 + 3x
g(x) = 2x + 5 28) g(t) = t3 + 3t2
Find f ( − 4) ÷ g( − 4) h(t) = 3t − 5
Find g(t) − h(t)
4) g(x) = 4x + 3
h(x) = x3 − 2x2 30) f (x) = 4x + 2
Find (g − h)( − 1) g(x) = x2 + 2x

6
Find f (x) ÷ g(x) 46) f (a) = 2a − 4
g(a) = a2 + 2a
32) g(n) = n + 5 Find (f ◦ g)( − 4)
h(n) = 2n − 5
Find (g · h)( − 3n) 48) g(x) = 3x + 4
h(x) = x3 + 3x
34) g(a) = − 2a Find (g ◦ h)(3)
h(a) = 3a
Find g(4n) ÷ h(4n) 50) g(a) = a2 + 3
Find (g ◦ g)( − 3)
36) h(n) = 3n − 2
g(n) = − 3n2 − 4n 52) g(a) = 2a + 4
n n
Find h( 3 ) ÷ g( 3 ) h(a) = − 4a + 5
Find (g ◦ h)(a)
38) g(x) = − 4x + 2
54) g(t) = − t − 4
h(x) = x2 − 5
Find (g ◦ g)(t)
Find g(x2) + h(x2)
56) f (n) = − 2n2 − 4n
40) f (n) = 3n + 4 g(n) = n + 2
g(n) = n3 − 5n Find (f ◦ g)(n)
n n
Find f ( 2 ) − g( 2 )
58) g(t) = t3 − t
42) g(x) = x − 1 f (t) = 3t − 4
Find (g ◦ g)(7) Find (g ◦ f )(t)

44) g(t) = t + 3 60) f (x) = 3x − 4


h(t) = 2t − 5 g(x) = x3 + 2x2
Find (g ◦ h)(3) Find (f ◦ g)(x)

Beginning and Intermediate Algebra by Tyler Wallace is licensed under a Creative Commons
Attribution 3.0 Unported License. (http://creativecommons.org/licenses/by/3.0/)

7
10.2

Answers - Algebra of Functions


1) 82 28) t3 + 3t2 − 3t + 5
2) 20 29) n3 + 8n + 5
3) 46 4x + 2
30) x2 + 2x
4) 2 31) n6 − 9n4 + 20n2
5) 5 32) 18n2 − 15n − 25
6) − 30 33) x + 3
7) − 3 34) − 3
2

8) 140
35) t4 + 8t2 + 2
2
9) − 3 3n − 6
36) − n2 − 4n
10) − 43
− x3 − 2x
37) − 3x + 4
11) 100
38) x4 − 4x2 − 3
12) − 74
− n2 − 2n
1 39)
13) 5
3

32 + 32n − n3
14) 27 40) 8
9
15) − 26 41) − 155

16) n2 − 2n 42) 5

17) − x3 − 4x − 2 43) 21

18) − x3 + 2x2 − 3 44) 4

19) − x2 − 8x + 2 45) 103


46) 12
20) 2t2 − 8t
47) 050
21) 4x3 + 25x2 + 25x
48) 112
22) − 2t3 − 15t2 − 25t
49) 176
23) x2 − 4x + 5
50) 147
24) 3x2 + 4x − 9
51) 16x2 + 12x − 4
n2 + 5
25) 3n + 5 52) − 8a + 14
26) − 2x + 9 53) − 8a + 2
− 2a + 5
27) 3a + 5 54) t

8
55) 4x3 58) 27t3 − 108t2 + 141t − 60
56) − 2n2 − 12n − 16 59) − 16t − 5
57) − 2x + 8 60) 3x3 + 6x2 − 4

Beginning and Intermediate Algebra by Tyler Wallace is licensed under a Creative Commons
Attribution 3.0 Unported License. (http://creativecommons.org/licenses/by/3.0/)

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy