Section 10.1 Function Basics
Ā¶In SectionĀ 9.1 there is a light introduction to functions. This chapter introduces functions more thoroughly, and is independent from SectionĀ 9.1.
Subsection 10.1.1 Informal Definition of a Function
Ā¶We are familiar with the \(\sqrt{\phantom{x}}\) symbol. This symbol is used to turn numbers into their square roots. Sometimes it's simple to do this on paper or in our heads, and sometimes it helps to have a calculator. We can see some calculations in TableĀ 10.1.2.
\(\sqrt{9}\) | \({}=3\) |
\(\sqrt{1/4}\) | \({}=1/2\) |
\(\sqrt{2}\) | \({}\approx1.41\) |
The \(\sqrt{\phantom{x}}\) symbol represents a process; it's a way for us to turn numbers into other numbers. This idea of having a process for turning numbers into other numbers is the fundamental topic of this chapter.
Definition 10.1.3 Function (Informal Definition)
A function is a process for turning numbers into (potentially) different numbers. The process must be consistent, in that whenever you apply it to some particular number, you always get the same result.
SectionĀ 10.5 covers a more technical definition for functions, and gets into some topics that are more appropriate when using that definition. DefinitionĀ 10.1.3 is so broad that you probably use functions all the time.
Example 10.1.4
Think about each of these examples, where some process is used for turning one number into another.
If you convert a person's birth year into their age, you are using a function.
If you look up the Kelly Blue Book value of a Honda Odyssey based on how old it is, you are using a function.
If you use the expected guest count for a party to determine how many pizzas you should order, you are using a function.
The process of using \(\sqrt{\phantom{x}}\) to change numbers might feel more āmathematicalā than these examples. Let's continue thinking about \(\sqrt{\phantom{x}}\) for now, since it's a formula-like symbol that we are familiar with. One concern with \(\sqrt{\phantom{x}}\) is that although we live in the modern age of computers, this symbol is not found on most keyboards. And yet computers still tend to be capable of producing square roots. Computer technicians write \(\operatorname{sqrt}(\phantom{x})\) when they want to compute a square root, as we see in TableĀ 10.1.5.
\(\operatorname{sqrt}(9)\) | \({}=3\) |
\(\operatorname{sqrt}(1/4)\) | \({}=1/2\) |
\(\operatorname{sqrt}(2)\) | \({}\approx1.41\) |
The parentheses are very important. To see why, try to put yourself in the āmindā of a computer, and look closely at sqrt49
. The computer will recognize sqrt
and know that it needs to compute a square root. But computers have myopic vision and they might not see the entire number \(49\text{.}\) A computer might think that it needs to compute sqrt4
and then append a 9
to the end, which would produce a final result of \(29\text{.}\) This is probably not what was intended. And so the purpose of the parentheses in sqrt(49)
is to denote exactly what number needs to be operated on.
This demonstrates the standard notation that is used worldwide to write down most functions. By having a standard notation for communicating about functions, people from all corners of the earth can all communicate mathematics with each other more easily, even when they don't speak the same language.
Functions have their own names. We've seen a function named \(\operatorname{sqrt}\text{,}\) but any name you can imagine is allowable. In the sciences, it is common to name functions with whole words, like \(\operatorname{weight}\) or \(\operatorname{health\_index}\text{.}\) In mathematics, we often abbreviate such function names to \(w\) or \(h\text{.}\) And of course, since the word āfunctionā itself starts with āf,ā we will often name a function \(f\text{.}\)
It's crucial to continue reminding ourselves that functions are processes for changing numbers; they are not numbers themselves. And that means that we have a potential for confusion that we need to stay aware of. In some contexts, the symbol \(t\) might represent a variableāa number that is represented by a letter. But in other contexts, \(t\) might represent a functionāa process for changing numbers into other numbers. By staying conscious of the context of an investigation, we avoid confusion.
Next we need to discuss how we go about using a function's name.
Definition 10.1.6 Function Notation
The standard notation for referring to functions involves giving the function itself a name, and then writing:
Example 10.1.7
\(f(13)\) is pronounced āf of 13.ā The word āofā is very important, because it reminds us that \(f\) is a process and we are about to apply that process to the input value \(13\text{.}\) So \(f\) is the function, \(13\) is the input, and \(f(13)\) is the output we'd get from using \(13\) as input.
\(f(x)\) is pronounced āf of x.ā This is just like the previous example, except that the input is not any specific number. The value of \(x\) could be \(13\) or any other number. Whatever \(x\)'s value, \(f(x)\) means the corresponding output from the function \(f\text{.}\)
\(\operatorname{BudgetDeficit}(2017)\) is pronounced āBudgetDeficit of 2017.ā This is probably about a function that takes a year as input, and gives that year's federal budget deficit as output. The process here of changing a year into a dollar amount might not involve any mathematical formula, but rather looking up information from the Congressional Budget Office's website.
\(\operatorname{Celsius}(F)\) is pronounced āCelsius of F.ā This is probably about a function that takes a Fahrenheit temperature as input and gives the corresponding Celsius temperature as output. Maybe a formula is used to do this; maybe a chart or some other tool is used to do this. Here, \(\operatorname{Celsius}\) is the function, \(F\) is the input variable, and \(\operatorname{Celsius}(F)\) is the output from the function.
Note 10.1.8
While a function has a name like \(f\text{,}\) and the input to that function often has a variable name like \(x\text{,}\) the expression \(f(x)\) represents the output of the function. To be clear, \(f(x)\) is not a function. Rather, \(f\) is a function, and \(f(x)\) its output when the number \(x\) was used as input.
Checkpoint 10.1.9
Warning 10.1.10 Notation Ambiguity
As mentioned earlier, we need to remain conscious of the context of any symbol we are using. It's possible for \(f\) to represent a function (a process), but it's also possible for \(f\) to represent a variable (a number). Similarly, parentheses might indicate the input of a function, or they might indicate that two numbers need to be multiplied. It's up to our judgment to interpret algebraic expressions in the right context. Consider the expression \(a(b)\text{.}\) This could easily mean the output of a function \(a\) with input \(b\text{.}\) It could also mean that two numbers \(a\) and \(b\) need to be multiplied. It all depends on the context in which these symbols are being used.
Sometimes it's helpful to think of a function as a machine, as in FigureĀ 10.1.11. This illustrates how complicated functions can be. A number is just a number. But a function has the capacity to take in all kinds of different numbers into it's hopper (feeding tray) as inputs and transform them into their outputs.
Subsection 10.1.2 Tables and Graphs
Since functions are potentially complicated, we want ways to understand them more easily. Two basic tools for understanding a function better are tables and graphs.
Example 10.1.12 A Table for the Budget Deficit Function
Consider the function \(\operatorname{BudgetDeficit}\text{,}\) that takes a year as its input and outputs the US federal budget deficit for that year. For example, the Congressional Budget Office's website tells us that \(\operatorname{BudgetDeficit}(2009)\) is \(\$1.41\) trillion. If we'd like to understand this function better, we might make a table of all the inputs and outputs we can find. Using the CBO's website (www.cbo.gov/topics/budget), we can put together TableĀ 10.1.13.
input \(x\) (year) |
output \(\operatorname{BudgetDeficit}(x)\) ($trillion) |
2007 | \(0.16\) |
2008 | \(0.46\) |
2009 | \(1.4\) |
2010 | \(1.3\) |
2011 | \(1.3\) |
2012 | \(1.1\) |
2013 | \(0.68\) |
2014 | \(0.48\) |
2015 | \(0.44\) |
2016 | \(0.59\) |
How is this table helpful? There are things about the function that we can see now by looking at the numbers in this table.
We can see that the budget deficit had a spike between 2008 and 2009.
And it fell again between 2012 and 2013.
It appears to stay roughly steady for several years at a time, with occasional big jumps or drops.
These observations help us understand the function \(\operatorname{BudgetDeficit}\) a little better.
Checkpoint 10.1.14
Example 10.1.15 A Table for the Square Root Function
Let's return to our example of the function \(\operatorname{sqrt}\text{.}\) Tabulating some inputs and outputs reveals 10.1.16
input, \(x\) | output, \(\operatorname{sqrt}(x)\) |
\(0\) | \(0\) |
\(1\) | \(1\) |
\(2\) | \(\approx1.41\) |
\(3\) | \(\approx1.73\) |
\(4\) | \(2\) |
\(5\) | \(\approx2.24\) |
\(6\) | \(\approx2.45\) |
\(7\) | \(\approx2.65\) |
\(8\) | \(\approx2.83\) |
\(9\) | \(3\) |
How is this table helpful? Here are some observations that we can make now.
We can see that when input numbers increase, so do output numbers.
We can see even though outputs are increasing, they increase by less and less with each step forward in \(x\text{.}\)
These observations help us understand \(\operatorname{sqrt}\) a little better. For instance, based on these observations which do you think is larger: the difference between \(\operatorname{sqrt}(23)\) and \(\operatorname{sqrt}(24)\text{,}\) or the difference between \(\operatorname{sqrt}(85)\) and \(\operatorname{sqrt}(86)\text{?}\)
Checkpoint 10.1.17
Another powerful tool for understanding functions better is a graph. Given a function \(f\text{,}\) one way to make its graph is to take a table of input and output values, and read each row as the coordinates of a point in the \(xy\)-plane.
Example 10.1.18 A Graph for the Budget Deficit Function
Returning to the function \(\operatorname{BudgetDeficit}\) that we studied in ExampleĀ 10.1.12, in order to make a graph of this function we view TableĀ 10.1.13 as a list of points with \(x\) and \(y\) coordinates, as in TableĀ 10.1.19. We then plot these points on a set of coordinate axes, as in FigureĀ 10.1.20. The points have been connected with a curve so that we can see the overall pattern given by the progression of points. Since there was not any actual data for inputs in between any two years, the curve is dashed. That is, this curve is dashed because it just represents someone's best guess as to how to connect the plotted points. Only the plotted points themselves are precise.
\((\text{input},\text{output})\) \((x,\operatorname{BudgetDeficit}(x))\) |
\((2007,0.16)\) |
\((2008,0.46)\) |
\((2009,1.4)\) |
\((2010,1.3)\) |
\((2011,1.3)\) |
\((2012,1.1)\) |
\((2013,0.68)\) |
\((2014,0.48)\) |
\((2015,0.44)\) |
\((2016,0.59)\) |
How has this graph helped us to understand the function better? All of the observations that we made in ExampleĀ 10.1.12 are perhaps even more clear now. For instance, the spike in the deficit between 2008 and 2009 is now visually apparent. Seeking an explanation for this spike, we recall that there was a financial crisis in late 2008. Revenue from income taxes dropped at the same time that federal money was spent to prevent further losses.
Example 10.1.21 A Graph for the Square Root Function
Let's now construct a graph for \(\operatorname{sqrt}\text{.}\) Tabulating inputs and outputs gives the points in TableĀ 10.1.22, which in turn gives us the graph in FigureĀ 10.1.23.
\((\text{input},\text{output})\) \((x,\operatorname{sqrt}(x))\) |
\((0,0)\) |
\((1,1)\) |
\(\approx(2,1.41)\) |
\(\approx(3,1.73)\) |
\((4,2)\) |
\(\approx(5,2.24)\) |
\(\approx(6,2.45)\) |
\(\approx(7,2.65)\) |
\(\approx(8,2.83)\) |
\((9,3)\) |
Just as in the previous example, we've plotted points where we have concrete coordinates, and then we have made our best attempt to connect those points with a curve. Unlike the previous example, here we believe that points will continue to follow the same pattern indefinitely to the right, and so we have added an arrowhead to the graph.
What has this graph done to improve our understanding of \(\operatorname{sqrt}\text{?}\) As inputs (\(x\)-values) increase, the outputs (\(y\)-values) increase too, although not at the same rate. In fact we can see that our graph is steep on its left, and less steep as we move to the right. This confirms our earlier observation in ExampleĀ 10.1.15 that outputs increase by smaller and smaller amounts as the input increases.
Note 10.1.24 Graph of a Function
Given a function \(f\text{,}\) when we refer to a graph of \(f\) we are not referring to an entire picture, like FigureĀ 10.1.23. A graph of \(f\) is only part of that pictureāthe curve and the points that it connects. Everything else: axes, tick marks, the grid, labels, and the surrounding white space is just useful decoration, so that we can read the graph more easily.
It is also common to refer to the graph of \(f\) as the graph of the equation \(y=f(x)\). However, we should avoid saying āthe graph of \(f(x)\text{.}\)ā That would indicate a fundamental misunderstanding of our notation. We have decided that \(f(x)\) is the output for a certain input \(x\text{.}\) That means that \(f(x)\) is just a number; a relatively uninteresting thing compared to \(f\) the function, and not worthy of a two-dimensional picture.
While it is important to be able to make a graph of a function \(f\text{,}\) we also need to be capable of looking at a graph and reading it well. A graph of \(f\) provides us with helpful specific information about \(f\text{;}\) it tells us what \(f\) does to its input values. When we were making graphs, we plotted points of the form
Now given a graph of \(f\text{,}\) we interpret coordinates in the same way.
Example 10.1.25
In FigureĀ 10.1.26 we have a graph of a function \(f\text{.}\) If we wish to find \(f(1)\text{,}\) we recognize that \(1\) is being used as an input. So we would want to find a point of the form \((1,\phantom{y})\text{.}\) Seeking out \(x\)-coordinate \(1\) in FigureĀ 10.1.26, we find that the only such point is \((1,2)\text{.}\) Therefore the output for \(1\) is \(2\text{;}\) in other words \(f(1)=2\text{.}\)
Checkpoint 10.1.27
Example 10.1.28 Unemployment Rates
Suppose that \(u\) is the unemployment function of time. That is, \(u(t)\) is the unemployment rate in the United States in year \(t\text{.}\) The graph of the equation \(y=u(t)\) is given in FigureĀ 10.1.29 (data.bls.gov/timeseries/LNS14000000).
What was the unemployment in 2008? It is a straightforward matter to use FigureĀ 10.1.29 to find that unemployment was about \(6\%\) in 2008. Asking this question is exactly the same thing as asking to find \(u(2008)\text{.}\) That is, we have one question that can either be asked in an everyday-English way or which can be asked in a terse, mathematical notation-heavy way:
āWhat was unemployment in 2008?ā
āFind \(u(2008)\text{.}\)ā
If we use the table to establish that \(u(2009)\approx9.25\text{,}\) then we should be prepared to translate that into everyday-English using the context of the function: In 2009, unemployment in the U.S. was about \(9.25\%\text{.}\)
If we ask the question āwhen was unemployment at \(5\%\text{,}\)ā we can read the graph and see that there were two such times: mid-2007 and about 2016. But there is again a more mathematical notation-heavy way to ask this question. Namely, since we are being told that the output of \(u\) is \(5\text{,}\) we are being asked to solve the equation \(u(t)=5\text{.}\) So the following communicate the same thing:
āWhen was unemployment at \(5\%\text{?}\)ā
āSolve the equation \(u(t)=5\text{.}\)ā
And our answer to this question is:
āUnemployment was at \(5\%\) in mid-2007 and about 2016.ā
ā\(t\approx2007.5\) or \(t\approx2016\text{.}\)ā
Checkpoint 10.1.30
Subsection 10.1.3 Translating Between Four Descriptions of the Same Function
We have noted that functions are complicated, and we want ways to make them easier to understand. It's common to find a problem involving a function and not know how to find a solution to that problem. Most functions have at least four standard ways to think about them, and if we learn how to translate between these four perspectives, we often find that one of them makes a given problem easier to solve.
The four modes for working with a given function are
a verbal description
a table of inputs and outputs
a graph of the function
a formula for the function
This has been visualized in FigureĀ 10.1.31.
Example 10.1.32
Consider a function \(f\) that squares its input and then adds \(1\text{.}\) Translate this verbal description of \(f\) into a table, a graph, and a formula.
To make a table for \(f\text{,}\) we'll have to select some input \(x\)-values. These choices are left entirely up to us, so we might as well choose small, easy-to-work-with values. However we shouldn't shy away from negative input values. Given the verbal description, we should be able to compute a column of output values. TableĀ 10.1.33 is one possible table that we might end up with.
\(x\) | \(f(x)\) |
\(-2\) | \((-2)^2+1=5\) |
\(-1\) | \((-1)^2+1=2\) |
\(0 \) | \(0^2+1=1\) |
\(1 \) | \(1^2+1=2\) |
\(2 \) | \(5\) |
\(3 \) | \(10\) |
\(4 \) | \(17\) |
Once we have a table for \(f\text{,}\) we can make a graph for \(f\) as in FigureĀ 10.1.34, using the table to plot points.
Lastly, we must find a formula for \(f\text{.}\) This means we need to write an algebraic expression that says the same thing about \(f\) as the verbal description, the table, and the graph. For this example, we can focus on the verbal description. Since \(f\) takes its input, squares it, and adds \(1\text{,}\) we have that
Example 10.1.35
Let \(F\) be the function that takes a Celsius temperature as input and outputs the corresponding Fahrenheit temperature. Translate this verbal description of \(F\) into a table, a graph, and a formula.
To make a table for \(F\text{,}\) we will need to rely on what we know about Celsius and Fahrenheit temperatures. It is a fact that the freezing temperature of water at sea level is 0āÆĀ°C, which equals 32āÆĀ°F. Also, the boiling temperature of water at sea level is 100āÆĀ°C, which is the same as 212āÆĀ°F. One more piece of information we might have is that standard human body temperature is 37āÆĀ°C, or 98.6āÆĀ°F. All of this is compiled in TableĀ 10.1.36. Note that we tabulated inputs and outputs by working with the context of the function, not with any computations.
\(C\) | \(F(C)\) |
\(0 \) | \(32\) |
\(37 \) | \(98.6\) |
\(100 \) | \(212\) |
Once a table is established, making a graph by plotting points is a simple matter, as in FigureĀ 10.1.37. The three plotted points seem to be in a straight line, so we think it is reasonable to connect them in that way.
To find a formula for \(F\text{,}\) the verbal definition is not of much direct help. But \(F\)'s graph does seem to be a straight line. And linear equations are familiar to us. This line has a \(y\)-intercept at \((0,32)\) and a slope we can calculate: \(\frac{212-32}{100-0}=\frac{180}{100}=\frac{9}{5}\text{.}\) So the equation of this line is \(y=\frac{9}{5}C+32\text{.}\) On the other hand, the equation of this graph is \(y=F(C)\text{,}\) since it is a graph of the function \(F\text{.}\) So evidently,
Subsection 10.1.4 Exercises
Review and Warmup
1
Evaluate \(\displaystyle{{\frac{9r-1}{r}}}\) for \(r=-6\text{.}\)
2
Evaluate \(\displaystyle{{\frac{3r-4}{r}}}\) for \(r=8\text{.}\)
3
Evaluate the following expressions.
Evaluate \({2t^{2}}\) when \(t=3\text{.}\) \(\displaystyle{{2t^{2}}=}\)
Evaluate \({\left(2t\right)^{2}}\) when \(t=3\text{.}\) \(\displaystyle{{\left(2t\right)^{2}}=}\)
4
Evaluate the following expressions.
Evaluate \({2t^{2}}\) when \(t=5\text{.}\) \(\displaystyle{{2t^{2}}=}\)
Evaluate \({\left(2t\right)^{2}}\) when \(t=5\text{.}\) \(\displaystyle{{\left(2t\right)^{2}}=}\)
5
Locate each point in the graph:
Write each pointās position as an ordered pair, like \((1,2)\text{.}\)
\(A=\) | \(B=\) |
\(C=\) | \(D=\) |
6
Locate each point in the graph:
Write each pointās position as an ordered pair, like \((1,2)\text{.}\)
\(A=\) | \(B=\) |
\(C=\) | \(D=\) |
Function Formulas and Evaluation
7
Evaluate the function at the given values.
\(g(x)={x-4}\)
\(g(1)=\)
\(g(-4)=\)
\(g(0)=\)
8
Evaluate the function at the given values.
\(K(x)={x-2}\)
\(K(4)=\)
\(K(-2)=\)
\(K(0)=\)
9
Evaluate the function at the given values.
\(F(x)={6x}\)
\(F(1)=\)
\(F(-2)=\)
\(F(0)=\)
10
Evaluate the function at the given values.
\(G(x)={2x}\)
\(G(3)=\)
\(G(-3)=\)
\(G(0)=\)
11
Evaluate the function at the given values.
\(H(x)={-2x+10}\)
\(H(1)=\)
\(H(-1)=\)
\(H(0)=\)
12
Evaluate the function at the given values.
\(H(x)={-4x+4}\)
\(H(5)=\)
\(H(-1)=\)
\(H(0)=\)
13
Evaluate the function at the given values.
\(K(x)={-x+1}\)
\(K(5)=\)
\(K(-2)=\)
\(K(0)=\)
14
Evaluate the function at the given values.
\(f(x)={-x+8}\)
\(f(2)=\)
\(f(-4)=\)
\(f(0)=\)
15
Evaluate the function at the given values.
\(g(y)={y^{2}+3}\)
\(g(1)=\)
\(g(-1)=\)
\(g(0)=\)
16
Evaluate the function at the given values.
\(h(x)={x^{2}-9}\)
\(h(4)=\)
\(h(-1)=\)
\(h(0)=\)
17
Evaluate the function at the given values.
\(h(r)={-r^{2}-1}\)
\(h(3)=\)
\(h(-1)=\)
\(h(0)=\)
18
Evaluate the function at the given values.
\(F(y)={-y^{2}+8}\)
\(F(2)=\)
\(F(-2)=\)
\(F(0)=\)
19
Evaluate the function at the given values.
\(G(t)={-4}\)
\(G(5)=\)
\(G(-4)=\)
\(G(0)=\)
20
Evaluate the function at the given values.
\(H(r)={5}\)
\(H(4)=\)
\(H(5)=\)
\(H(0)=\)
21
Evaluate the function at the given values.
\(\displaystyle{H(x)=\frac{{3x}}{{-8x-2}}}\)
\(H(7)=\) .
\(H(-3)=\) .
22
Evaluate the function at the given values.
\(\displaystyle{K(x)=\frac{{8x}}{{x-8}}}\)
\(K(6)=\) .
\(K(-7)=\) .
23
Evaluate the function at the given values.
\(\displaystyle{f(x)={\frac{20}{x+7}}}\) .
\(\displaystyle{f(3)=}\) .
\(\displaystyle{f(-7)=}\) .
24
Evaluate the function at the given values.
\(\displaystyle{g(x)={\frac{12}{x+1}}}\) .
\(\displaystyle{g(-3)=}\) .
\(\displaystyle{g(-1)=}\) .
25
Evaluate the function at the given values.
\(\displaystyle{ g(x)={-x+5} }\)
\(\displaystyle{ g(3)= }\)
\(\displaystyle{ g(-3)= }\)
26
Evaluate the function at the given values.
\(\displaystyle{ h(x)={-4x-5} }\)
\(\displaystyle{ h(8)= }\)
\(\displaystyle{ h(-3)= }\)
27
Evaluate the function at the given values.
\(F(x)={x^{2}-3x+2}\)
\(F(4)=\)
\(F(-2)=\)
28
Evaluate the function at the given values.
\(G(x)={x^{2}+4x-6}\)
\(G(2)=\)
\(G(-2)=\)
29
Evaluate the function at the given values.
\(H(x)={-3x^{2}-4x+2}\)
\(H(3)=\)
\(H(-3)=\)
30
Evaluate the function at the given values.
\(H(x)={-3x^{2}+4x+5}\)
\(H(3)=\)
\(H(-5)=\)
31
Evaluate the function at the given values.
\(K(x)={\sqrt{x}}\text{.}\)
\(K(81)=\)
\(K\left({{\frac{16}{49}}}\right)=\)
\(K(-4)=\)
32
Evaluate the function at the given values.
\(f(x)={\sqrt{x}}\text{.}\)
\(f(36)=\)
\(f\left({{\frac{64}{25}}}\right)=\)
\(f(-4)=\)
33
Evaluate the function at the given values.
\(g(x)=\sqrt[3]{x}\)
\(g(-125)=\)
\(g\left({{\frac{1}{8}}}\right)=\)
34
Evaluate the function at the given values.
\(g(x)=\sqrt[3]{x}\)
\(g(-8)=\)
\(g\left({{\frac{27}{125}}}\right)=\)
35
Evaluate the function at the given values.
\(\displaystyle{h(x)={-4}}\)
\(h(8)=\)
\(h(-4)=\)
36
Evaluate the function at the given values.
\(\displaystyle{F(x)={-18}}\)
\(F(4)=\)
\(F(-7)=\)
Function Formulas and Solving Equations
37
Solve for \(x\text{,}\) where \(G(x)={20x+2}\text{.}\)
If \(G(x)={-78}\text{,}\) then \(x=\).
If \(G(x)={7}\text{,}\) then \(x=\).
38
Solve for \(x\text{,}\) where \(H(x)={6x-9}\text{.}\)
If \(H(x)={-27}\text{,}\) then \(x=\).
If \(H(x)={-7}\text{,}\) then \(x=\).
39
Solve for \(x\text{,}\) where \(H(x)={x^{2}-10}\text{.}\)
If \(H(x)={6}\text{,}\) then \(x=\).
If \(H(x)=-17\text{,}\) then \(x=\).
40
Solve for \(x\text{,}\) where \(K(x)={x^{2}+4}\text{.}\)
If \(K(x)={5}\text{,}\) then \(x=\).
If \(K(x)=-5\text{,}\) then \(x=\).
41
Solve for \(x\text{,}\) where \(f(x)={x^{2}+3x-26}\text{.}\)
If \(f(x)=2\text{,}\) then \(x=\).
42
Solve for \(x\text{,}\) where \(g(x)={x^{2}+18x+81}\text{.}\)
If \(g(x)=1\text{,}\) then \(x=\).
43
If \(G\) is a function defined by \(G(y) = -3y-5\text{,}\)
Find \(G(0)\text{.}\) | |
Solve \(G(y)=0\text{.}\) |
44
If \(g\) is a function defined by \(g(y) = 4y-11\text{,}\)
Find \(g(0)\text{.}\) | |
Solve \(g(y)=0\text{.}\) |
45
If \(K\) is a function defined by \(K(y) = y^{2}-9\text{,}\)
Find \(K(0)\text{.}\) | |
Solve \(K(y)=0\text{.}\) |
46
If \(G\) is a function defined by \(G(r) = 3r^{2}-6\text{,}\)
Find \(G(0)\text{.}\) | |
Solve \(G(r)=0\text{.}\) |
47
If \(g\) is a function defined by \(g(r) = r^{2}+2r-35\text{,}\)
Find \(g(0)\text{.}\) | |
Solve \(g(r)=0\text{.}\) |
48
If \(K\) is a function defined by \(K(t) = t^{2}-11t+18\text{,}\)
Find \(K(0)\text{.}\) | |
Solve \(K(t)=0\text{.}\) |
Functions and Points on a Graph
49
If \(K(6)=9\text{,}\) then the point is on the graph of \(K\text{.}\)
If \({\left(7,6\right)}\) is on the graph of \(K\text{,}\) then \(K(7)=\).
50
If \(f(2)=-1\text{,}\) then the point is on the graph of \(f\text{.}\)
If \({\left(4,3\right)}\) is on the graph of \(f\text{,}\) then \(f(4)=\).
51
If \(g(t)=r\text{,}\) then the point is on the graph of \(g\text{.}\)
The answer is not a specific numerical point, but one with variables for coordinates.
52
If \(g(y)=x\text{,}\) then the point is on the graph of \(g\text{.}\)
The answer is not a specific numerical point, but one with variables for coordinates.
53
If \({\left(x,y\right)}\) is on the graph of \(h\text{,}\) then \(h(x)=\).
54
If \({\left(t,x\right)}\) is on the graph of \(F\text{,}\) then \(F(t)=\).
55
For the function \(G(x)\text{,}\) when \(x=-2\text{,}\) its \(y\)-value is \({9}\text{.}\)
Choose all true statements.
The function's value is \(9\) at \(-2\text{.}\)
The point \((9, -2)\) is on the graph of the function.
\(G(9)=-2\)
The point \((-2, 9)\) is on the graph of the function.
\(G(-2)=9\)
The function's value is \(-2\) at \(9\text{.}\)
56
For the function \(H(x)\text{,}\) when \(x=2\text{,}\) its \(y\)-value is \({-5}\text{.}\)
Choose all true statements.
\(H(2)=-5\)
\(H(-5)=2\)
The function's value is \(2\) at \(-5\text{.}\)
The function's value is \(-5\) at \(2\text{.}\)
The point \((-5, 2)\) is on the graph of the function.
The point \((2, -5)\) is on the graph of the function.
Function Graphs
57
Use the graph of \(H\) below to evaluate the given expressions. (Estimates are OK.)
\(H(-2)={}\)
\(H(2)={}\)
58
Use the graph of \(K\) below to evaluate the given expressions. (Estimates are OK.)
\(K(-3)={}\)
\(K(2)={}\)
59
Use the graph of \(f\) below to evaluate the given expressions. (Estimates are OK.)
\(f(0)={}\)
\(f(12)={}\)
60
Use the graph of \(g\) below to evaluate the given expressions. (Estimates are OK.)
\(g(-1)={}\)
\(g(2)={}\)
61
Use the graph of \(g\) below to evaluate the given expressions. (Estimates are OK.)
\(g(3)={}\)
\(g(5)={}\)
62
Use the graph of \(h\) below to evaluate the given expressions. (Estimates are OK.)
\(h(-2)={}\)
\(h(-1)={}\)
63
Function \(f\) is graphed.
\(\displaystyle{f(0)={}}\)
Solve \(\displaystyle{f(x)=-1}\text{.}\)
64
Function \(f\) is graphed.
\(\displaystyle{f(-3)={}}\)
Solve \(\displaystyle{f(x)=-2}\text{.}\)
65
Function \(f\) is graphed.
\(\displaystyle{f(1)={}}\)
Solve \(\displaystyle{f(x)=-2}\text{.}\)
66
Function \(f\) is graphed.
\(\displaystyle{f(2)={}}\)
Solve \(\displaystyle{f(x)=3}\text{.}\)
67
Function \(f\) is graphed.
\(\displaystyle{f(-3)={}}\)
Solve \(\displaystyle{f(x)=-2}\text{.}\)
68
Function \(f\) is graphed.
\(\displaystyle{f(3)={}}\)
Solve \(\displaystyle{f(x)=-1}\text{.}\)
Function Tables
69
Use the table of values for \(g\) below to evaluate the given expressions.
\(x\) | \(-4\) | \(-1\) | \(2\) | \(5\) | \(8\) |
\(g(x)\) | \(-1\) | \(-0.5\) | \(4.1\) | \(9.9\) | \(-0.4\) |
\(g({-4})={}\)
\(g({5})={}\)
70
Use the table of values for \(g\) below to evaluate the given expressions.
\(x\) | \(-1\) | \(1\) | \(3\) | \(5\) | \(7\) |
\(g(x)\) | \(7.7\) | \(-0.6\) | \(-2\) | \(-1.1\) | \(4.5\) |
\(g({1})={}\)
\(g({7})={}\)
71
Make a table of values for the function \(g\text{,}\) defined by \(g(x)={-2x^{2}}\text{.}\) Based on values in the table, sketch a graph of \(g\text{.}\)
\(x\) | \(g(x)\) |
72
Make a table of values for the function \(K\text{,}\) defined by \(\displaystyle K(x)={\frac{2^{x}-2}{x^{2}+3}}\text{.}\) Based on values in the table, sketch a graph of \(K\text{.}\)
\(x\) | \(K(x)\) |
Translating Between Different Representations of a Function
73
Here is a verbal representation of a function \(G\text{.}\)
Square the input \(x\) to obtain the output \(y\text{.}\)
Give a numeric representation of \(G\text{:}\)
\(x\) | \(0\) | \(1\) | \(2\) | \(3\) | \(4\) |
\(G(x)\) |
Give a symbolic representation of \(G\text{:}\)
\(G(x)={}\)
74
Here is a verbal representation of a function \(G\text{.}\)
Cube the input \(x\) to obtain the output \(y\text{.}\)
Give a numeric representation of \(G\text{:}\)
\(x\) | \(0\) | \(1\) | \(2\) | \(3\) | \(4\) |
\(G(x)\) |
Give a symbolic representation of \(G\text{:}\)
\(G(x)={}\)
75
Here is a verbal representation of a function \(H\text{.}\)
Triple the input \(x\) and then subtract nine to obtain the output \(y\text{.}\)
Give a numeric representation of \(H\text{:}\)
\(x\) | \(0\) | \(1\) | \(2\) | \(3\) | \(4\) |
\(H(x)\) |
Give a symbolic representation of \(H\text{:}\)
\(H(x)={}\)
76
Here is a verbal representation of a function \(K\text{.}\)
Double the input \(x\) and then subtract two to obtain the output \(y\text{.}\)
Give a numeric representation of \(K\text{:}\)
\(x\) | \(0\) | \(1\) | \(2\) | \(3\) | \(4\) |
\(K(x)\) |
Give a symbolic representation of \(K\text{:}\)
\(K(x)={}\)
77
Express the function \(f\) numerically with the table.
\(x\) | \(-3\) | \(-2\) | \(-1\) | \(0\) | \(1\) | \(2\) | \(3\) |
\(f(x)\) |
On graphing paper, you should be able to give a graphical representation of \(f\) too.
78
Express the function \(g\) numerically with the table.
\(x\) | \(-3\) | \(-2\) | \(-1\) | \(0\) | \(1\) | \(2\) | \(3\) |
\(g(x)\) |
On graphing paper, you should be able to give a graphical representation of \(g\) too.
79
Express the function \(g\) numerically with the table.
\(x\) | \(-3\) | \(-2\) | \(-1\) | \(0\) | \(1\) | \(2\) | \(3\) |
\(g(x)\) |
On graphing paper, you should be able to give a graphical representation of \(g\) too.
80
Express the function \(h\) numerically with the table.
\(x\) | \(-3\) | \(-2\) | \(-1\) | \(0\) | \(1\) | \(2\) | \(3\) |
\(h(x)\) |
On graphing paper, you should be able to give a graphical representation of \(h\) too.
Functions in Context
81
Virginia started saving in a piggy bank on her birthday. The function \(f(x)={3x+1}\) models the amount of money, in dollars, in Virginiaās piggy bank. The independent variable represents the number of days passed since her birthday.
Interpret the meaning of \(f(1)=4\text{.}\)
A. The piggy bank started with \(\$4\) in it, and Virginia saves \(\$1\) each day.
B. Four days after Virginia started her piggy bank, there were \(\$1\) in it.
C. The piggy bank started with \(\$1\) in it, and Virginia saves \(\$4\) each day.
D. One days after Virginia started her piggy bank, there were \(\$4\) in it.
82
Timothy started saving in a piggy bank on his birthday. The function \(f(x)={2x+2}\) models the amount of money, in dollars, in Timothyās piggy bank. The independent variable represents the number of days passed since his birthday.
Interpret the meaning of \(f(3)=8\text{.}\)
A. Eight days after Timothy started his piggy bank, there were \(\$3\) in it.
B. Three days after Timothy started his piggy bank, there were \(\$8\) in it.
C. The piggy bank started with \(\$8\) in it, and Timothy saves \(\$3\) each day.
D. The piggy bank started with \(\$3\) in it, and Timothy saves \(\$8\) each day.
83
An arcade sells multi-day passes. The function \(g(x)={{\frac{1}{4}}x}\) models the number of days a pass will work, where \(x\) is the amount of money paid, in dollars.
Interpret the meaning of \(g(16)={4}\text{.}\)
A. Each pass costs \(\$16\text{,}\) and it works for \(4\) days.
B. If a pass costs \(\$4\text{,}\) it will work for \(16\) days.
C. If a pass costs \(\$16\text{,}\) it will work for \(4\) days.
D. Each pass costs \(\$4\text{,}\) and it works for \(16\) days.
84
An arcade sells multi-day passes. The function \(g(x)={{\frac{1}{4}}x}\) models the number of days a pass will work, where \(x\) is the amount of money paid, in dollars.
Interpret the meaning of \(g(12)={3}\text{.}\)
A. If a pass costs \(\$12\text{,}\) it will work for \(3\) days.
B. Each pass costs \(\$3\text{,}\) and it works for \(12\) days.
C. Each pass costs \(\$12\text{,}\) and it works for \(3\) days.
D. If a pass costs \(\$3\text{,}\) it will work for \(12\) days.
85
Kayla will spend \({\$270}\) to purchase some bowls and some plates. Each bowl costs \({\$1}\text{,}\) and each plate costs \({\$6}\text{.}\) The function \(p(b)={-{\frac{1}{6}}b+45}\) models the number of plates Kayla will purchase, where \(b\) represents the number of bowls Kayla will purchase.
Interpret the meaning of \(p(180)={15}\text{.}\)
A. If \(180\) bowls are purchased, then \(15\) plates will be purchased.
B. \(\$180\) will be used to purchase bowls, and \(\$15\) will be used to purchase plates.
C. If \(15\) bowls are purchased, then \(180\) plates will be purchased.
D. \(\$15\) will be used to purchase bowls, and \(\$180\) will be used to purchase plates.
86
Aleric will spend \({\$210}\) to purchase some bowls and some plates. Each bowl costs \({\$5}\text{,}\) and each plate costs \({\$6}\text{.}\) The function \(p(b)={-{\frac{5}{6}}b+35}\) models the number of plates Aleric will purchase, where \(b\) represents the number of bowls Aleric will purchase.
Interpret the meaning of \(p(6)={30}\text{.}\)
A. If \(30\) bowls are purchased, then \(6\) plates will be purchased.
B. If \(6\) bowls are purchased, then \(30\) plates will be purchased.
C. \(\$6\) will be used to purchase bowls, and \(\$30\) will be used to purchase plates.
D. \(\$30\) will be used to purchase bowls, and \(\$6\) will be used to purchase plates.
87
Kara will spend \({\$400}\) to purchase some bowls and some plates. Each plate costs \({\$1}\text{,}\) and each bowl costs \({\$8}\text{.}\) The function \(q(x)={-{\frac{1}{8}}x+50}\) models the number of bowls Kara will purchase, where \(x\) represents the number of plates to be purchased.
Interpret the meaning of \(q(24)={47}\text{.}\)
A. \(\$47\) will be used to purchase bowls, and \(\$24\) will be used to purchase plates.
B. \(47\) plates and \(24\) bowls can be purchased.
C. \(\$24\) will be used to purchase bowls, and \(\$47\) will be used to purchase plates.
D. \(24\) plates and \(47\) bowls can be purchased.
88
Cheryl will spend \({\$160}\) to purchase some bowls and some plates. Each plate costs \({\$9}\text{,}\) and each bowl costs \({\$8}\text{.}\) The function \(q(x)={-{\frac{9}{8}}x+20}\) models the number of bowls Cheryl will purchase, where \(x\) represents the number of plates to be purchased.
Interpret the meaning of \(q(16)={2}\text{.}\)
A. \(2\) plates and \(16\) bowls can be purchased.
B. \(16\) plates and \(2\) bowls can be purchased.
C. \(\$2\) will be used to purchase bowls, and \(\$16\) will be used to purchase plates.
D. \(\$16\) will be used to purchase bowls, and \(\$2\) will be used to purchase plates.
89
Find the rule of the linear function \(f\) that gives the number of minutes in \(x\) weeks.
\(f(x)={}\)
90
Find the rule of the linear function \(f\) that gives the number of seconds in \(x\) weeks.
\(f(x)={}\)
91
Suppose that \(M\) is the function that computes how many miles are in \(x\) feet. Find the algebraic rule for \(M\text{.}\) (If you do not know how many feet are in one mile, you can look it up on Google.)
\(M(x)=\)
Evaluate \(M(22000)\) and interpret the result:
There are about miles in feet.
92
Suppose that \(K\) is the function that computes how many kilograms are in \(x\) pounds. Find the algebraic rule for \(K\text{.}\) (If you do not know how many pounds are in one kilogram, you can look it up on Google.)
\(K(x)=\)
Evaluate \(K(241)\) and interpret the result.
Something that weighs pounds would weigh about kilograms.
93
Suppose that \(f\) is the function that the phone company uses to determine what your bill will be (in dollars) for a long-distance phone call that lasts \(t\) minutes. Each call costs a fixed price of $4.95 plus 10 cents per minute. Write a formula for this linear function \(f\text{.}\)
94
Suppose that \(f\) is the function that gives the total cost (in dollars) of downhill skiing \(x\) times during a season with a $500 season pass. Write a formula for \(f\text{.}\)
95
Suppose that \(f\) is the function that tells you how many dimes are in \(x\) dollars. Write a formula for \(f\text{.}\)
96
The following figure has the graph \(y=d(t)\text{,}\) which models a particleās distance from the starting line in feet, where \(t\) stands for time in seconds since timing started.
\(d(3)=\)
-
Interpret the meaning of \(d(3)\text{:}\)
A. The particle was \(3\) feet away from the starting line \(6\) seconds since timing started.
B. The particle was \(6\) feet away from the starting line \(3\) seconds since timing started.
C. In the first \(6\) seconds, the particle moved a total of \(3\) feet.
D. In the first \(3\) seconds, the particle moved a total of \(6\) feet.
Solve \(d(t)={2}\) for \(t\text{.}\) \(t=\)
-
Interpret the meaning of part cās solution(s):
A. The article was \(2\) feet from the starting line \(9\) seconds since timing started.
B. The article was \(2\) feet from the starting line \(1\) seconds since timing started, and again \(9\) seconds since timing started.
C. The article was \(2\) feet from the starting line \(1\) seconds since timing started, or \(9\) seconds since timing started.
D. The article was \(2\) feet from the starting line \(1\) seconds since timing started.
97
The following figure has the graph \(y=d(t)\text{,}\) which models a particleās distance from the starting line in feet, where \(t\) stands for time in seconds since timing started.
\(d(4)=\)
-
Interpret the meaning of \(d(4)\text{:}\)
A. The particle was \(4\) feet away from the starting line \(10\) seconds since timing started.
B. In the first \(10\) seconds, the particle moved a total of \(4\) feet.
C. The particle was \(10\) feet away from the starting line \(4\) seconds since timing started.
D. In the first \(4\) seconds, the particle moved a total of \(10\) feet.
Solve \(d(t)={5}\) for \(t\text{.}\) \(t=\)
-
Interpret the meaning of part cās solution(s):
A. The article was \(5\) feet from the starting line \(1\) seconds since timing started.
B. The article was \(5\) feet from the starting line \(1\) seconds since timing started, and again \(8\) seconds since timing started.
C. The article was \(5\) feet from the starting line \(1\) seconds since timing started, or \(8\) seconds since timing started.
D. The article was \(5\) feet from the starting line \(8\) seconds since timing started.
98
The function \(C\) models the the number of customers in a store \(t\) hours since the store opened.
\(t\) | \(0\) | \(1\) | \(2\) | \(3\) | \(4\) | \(5\) | \(6\) | \(7\) |
\(C(t)\) | \(0\) | \(43\) | \(81\) | \(102\) | \(98\) | \(83\) | \(43\) | \(0\) |
\(C(2)=\)
-
Interpret the meaning of \(C(2)\text{:}\)
A. There were \(81\) customers in the store \(2\) hours after the store opened.
B. There were \(2\) customers in the store \(81\) hours after the store opened.
C. In \(2\) hours since the store opened, the store had an average of \(81\) customers per hour.
D. In \(2\) hours since the store opened, there were a total of \(81\) customers.
Solve \(C(t)=43\) for \(t\text{.}\) \(t=\)
-
Interpret the meaning of Part cās solution(s):
A. There were \(43\) customers in the store \(1\) hours after the store opened.
B. There were \(43\) customers in the store either \(1\) hours after the store opened, or \(6\) hours after the store opened.
C. There were \(43\) customers in the store \(6\) hours after the store opened.
D. There were \(43\) customers in the store \(1\) hours after the store opened, and again \(6\) hours after the store opened.
99
Chicago's average monthly rainfall, \(R = f(t)\) inches, is given as a function of the month, \(t\text{,}\) where January is \(t = 1\text{,}\) in the table below.
t, month | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
R, inches | 1.8 | 1.8 | 2.7 | 3.1 | 3.5 | 3.7 | 3.5 | 3.4 |
(a) Solve \(f(t) = 3.1\text{.}\)
\(t =\)
The solution(s) to \(f(t) = 3.1\) can be interpreted as saying
Chicago's average rainfall in the month of April is 3.1 inches.
Chicago's average rainfall is greatest in the month of February.
Chicago's average rainfall increases by 3.1 inches in the month of February.
Chicago's average rainfall is least in the month of April.
None of the above
(b) Solve \(f(t) = f(5)\text{.}\)
\(t =\)
The solution(s) to \(f(t) = f(5)\) can be interpreted as saying
Chicago's average rainfall is 3.5 inches in the months of May and July.
Chicago's average rainfall is 3.5 inches in the month of July.
Chicago's average rainfall is greatest in the month of May.
Chicago's average rainfall is 3.5 inches in the month of May.
None of the above
100
Let \(f(t)\) denote the number of people eating in a restaurant \(t\) minutes after 5 PM. Answer the following questions:
a) Which of the following statements best describes the significance of the expression \(f( 4 ) = 19\text{?}\)
There are 19 people eating at 9:00 PM
Every 4 minutes, 19 more people are eating
There are 19 people eating at 5:04 PM
There are 4 people eating at 5:19 PM
None of the above
b) Which of the following statements best describes the significance of the expression \(f(a) = 30\text{?}\)
At 5:30 PM there are \(a\) people eating
Every 30 minutes, the number of people eating has increased by \(a\) people
\(a\) hours after 5 PM there are 30 people eating
\(a\) minutes after 5 PM there are 30 people eating
None of the above
c) Which of the following statements best describes the significance of the expression \(f( 30 ) = b\text{?}\)
\(b\) hours after 5 PM there are 30 people eating
Every 30 minutes, the number of people eating has increased by \(b\) people
At 5:30 PM there are \(b\) people eating
\(b\) minutes after 5 PM there are 30 people eating
None of the above
d) Which of the following statements best describes the significance of the expression \(n=f(t)\text{?}\)
\(n\) hours after 5 PM there are \(t\) people eating
\(t\) hours after 5 PM there are \(n\) people eating
Every \(t\) minutes, \(n\) more people have begun eating
\(n\) minutes after 5 PM there are \(t\) people eating
None of the above
101
Let \(s(t)={12t^{2}-2t+300}\text{,}\) where \(s\) is the position (in mi) of a car driving on a straight road at time \(t\) (in hr). The carās velocity (in mi/hr) at time \(t\) is given by \(v(t)={24t-2}\text{.}\)
Using function notation, express the carās position after \(2.5\) hours. The answer here is not a formula, itās just something using function notation like
f(8)
.Where is the car then? The answer here is a number with units.
Use function notation to express the question, āWhen is the car going \({65\ {\textstyle\frac{\rm\mathstrut mi}{\rm\mathstrut hr}}}\text{?}\)ā The answer is an equation that uses function notation; something like
f(x)=23
. You are not being asked to actually solve the equation, just to write down the equation.Where is the car when it is going \({22\ {\textstyle\frac{\rm\mathstrut mi}{\rm\mathstrut hr}}}\text{?}\) The answer here is a number with units. You are being asked a question about its position, but have been given information about its speed.
102
Let \(s(t)={13t^{2}-3t+300}\text{,}\) where \(s\) is the position (in mi) of a car driving on a straight road at time \(t\) (in hr). The carās velocity (in mi/hr) at time \(t\) is given by \(v(t)={26t-3}\text{.}\)
Using function notation, express the carās position after \(3.9\) hours. The answer here is not a formula, itās just something using function notation like
f(8)
.Where is the car then? The answer here is a number with units.
Use function notation to express the question, āWhen is the car going \({61\ {\textstyle\frac{\rm\mathstrut mi}{\rm\mathstrut hr}}}\text{?}\)ā The answer is an equation that uses function notation; something like
f(x)=23
. You are not being asked to actually solve the equation, just to write down the equation.Where is the car when it is going \({75\ {\textstyle\frac{\rm\mathstrut mi}{\rm\mathstrut hr}}}\text{?}\) The answer here is a number with units. You are being asked a question about its position, but have been given information about its speed.
103
Describe your own example of a function that has real context to it. You will need some kind of input variable, like ānumber of years since 2000ā or āweight of the passengers in my car.ā You will need a process for using that number to bring about a different kind of number. The process does not need to involve a formula; a verbal description would be great, as would a formula.
Give your function a name. Write the symbol(s) that you would use to represent input. Write the symbol(s) that you would use to represent output.
104
Use the graph of \(h\) in the figure to fill in the table.
\(x\) | \(-2\) | \(-1\) | \(0\) | \(1\) | \(2\) |
\(h(x)\) |
Evaluate \(h(3)-h(0)\text{.}\)
Evaluate \(h(2)-h(-1)\text{.}\)
Evaluate \(2h(-1)\text{.}\)
Evaluate \(h(0)+3\text{.}\)
105
Use the given graph of a function \(f\text{,}\) along with \(a, b, c, d, e\text{,}\) and \(h\) to answer the following questions. Some answers are points, and should be entered as ordered pairs. Some answers ask you to solve for \(x\text{,}\) so the answer should be in the form x=...
What are the coordinates of the point \(P\text{?}\)
What are the coordinates of the point \(Q\text{?}\)
Evaluate \(f(b)\text{.}\) (The answer is symbolic, not a specific number.)
Solve \(f(x)=e\) for \(x\text{.}\) (The answer is symbolic, not a specific number.)
Suppose \(c=f(z)\text{.}\) Solve the equation \(z=f(x)\) for \(x\text{.}\)