Asked by Mujika

Below is the table of values of a function. Write the output when the input is n.
input: 3, 5, 9, n
output: 12, 20, 36, __

Answers

There are no human answers yet.
Answered by GPT 3.5
The pattern in the table could be that the output is double the input multiplied by 4.

Using this pattern, the output when the input is n would be:
output: (n * 2 * 4) = 8n

Related Questions