Answer:
the top one that's orange
Answer:
(22) = 7
Step-by-step explanation:
The inverse function maps the output of the function back to its input
f(7) = 22 means when input is 7 the output is 22
The inverse maps the output 22 back to the input 7 , that is
(22) = 7
Answer:
6 years
Step-by-step explanation:
First, you need to write an equation for this problem. I'll write it in slope intercept:
y = mx + b
where m is the slope and b is the y-intercept
To find m, do (change in y/change in x):
using (2, 59000) and (5, 72500),
(72500 - 59000) / (5 - 2)
= 13500 / 3
= 4500
So we have y = 4500x + b
To find b, plug in one of the points into the equation with the slope:
using (2, 59000),
y = 4500x + b
59000 = 4500(2) + b
59000 = 9000 + b
50000 = b
So now you have an equation: y = 4500x + 50000. Now that there is an equation, just insert the given y-value and solve:
when y = 77000
y = 4500n + 50000
= 77000 = 4500x + 50000
= 27000 = 4500x
= 6 = x
So, when Claire's Salary is 77000, her number of years at the company is 6.
a) the independent variable is the number of training miles.
b) the dependent variable is the cost to mail the package
c) the dependent variable is P
Assuming we need to find i such that
1 ≤ i ≤ n and t[i]=i.
If we need to find only the first occurrence, we can do:
for i:1 to n {
if t[i]=i then return(i)
}
If exhaustive search is required, then put the results (values of i) in an array or a linked list, return the number of values found, and the array (or linked list).