Below is the table of values of a function. Write the output when the input is .

input 2 , 3 , 6 , n
output 7 , 8 , 11 , __ blank

If we look at the pattern in the values, we can see that the output is obtained by adding 5 to the input. Thus, when the input is 2, the output is 7; when the input is 3, the output is 8; when the input is 6, the output is 11.

Therefore, when the input is n, the output would be n + 5.

Below is the table of values of a function. Write the output when the input is .

input 2 , 4 , 8 , n
output 4 , 8 , 16 , __ blank

If we look at the pattern in the values, we can see that the output is obtained by multiplying the input by 2. Thus, when the input is 2, the output is 4; when the input is 4, the output is 8; when the input is 8, the output is 16.

Therefore, when the input is n, the output would be 2n.

Below is the table of values of a function. Write the output when the input is .

Input 5 , 6 , 8 , n
output 1 , 2 , 4 , __ blank

If we look at the pattern in the values, we can see that the output is obtained by subtracting 4 from the input and then dividing by 2.

Thus, when the input is 5, the output is (5-4)/2 = 1; when the input is 6, the output is (6-4)/2 = 2; when the input is 8, the output is (8-4)/2 = 4.

Therefore, when the input is n, the output would be (n-4)/2.

Below is the table of values of a function. Write the output when the input is .

input 4 , 8 , 9 , n
output 7 , 11 , 12 , __ blank

If we look at the pattern in the values, we can see that the output is obtained by adding 3 to the input. Thus, when the input is 4, the output is 7; when the input is 8, the output is 11; when the input is 9, the output is 12.

Therefore, when the input is n, the output would be n + 3.