Raymond J. answered 01/26/21
Patient with Ability to Explain in Many Ways
You want to put in some values for x and find results from the functions.
f(x) = √(x+4)
When x = 0, f(0) = √(0 + 4) = √4 = 2
When x = 1, f(1) = √(1 + 4) = √5 (slightly bigger than 2). These results can be hard to plot so make life easier by trying to determine values for x that produce easy to plot numbers.
For instance, values that would produce perfect squares in this case such as 4, 9, 16, 25, etc.
f(5) = √(5 + 4) = √9 = 3
f(12) = √(12 + 4) = √16 = 4
f(21) = √(21 + 4) = √25 = 5
So your table of values for f(x) = √(x + 4) might be
x f(x)
--------
0 2
5 3
12 4
21 5
for g(x) = |x| - x, we can see that any value of x>0 results in 0. g(1) = 0, g(2) = 0, g(50) = 0, etc.
g(0) = |0| - 0 = 0
g(1) = |1| - 1 = 0
g(2) = |2| - 2 = 0
But negative values give positive results.
g(-1) = |-1| - (-1) = 1 + 1 = 2
g(-2) = |-2| - (-2) = 2 + 2 = 4
g(-3) = |-3| - (-3) = 3 + 3 = 6
So a table of values for g(x) = |x| - x might be
x g(x)
---------
0 0
1 0
2 0
3 0
-1 2
-2 4
-3 6
From both of these tables it's easy to plot the values onto a graph.