question: the table below shows input and output values for the function F(n). what is the value for F(5)?
Input:
0
1
4
5
10
Output:
1
3
9
?
21
Also: F(n). What is the value for F(3)
Input:
0
1
2
3
4
Output:
5
12
19
?
33
Input:
0
1
4
5
10
Output:
1
3
9
?
21
Also: F(n). What is the value for F(3)
Input:
0
1
2
3
4
Output:
5
12
19
?
33
-
F(5) = 11 (double the input and add 1)
F(3) = 26 (multiply the input by 7 and add 5)
F(3) = 26 (multiply the input by 7 and add 5)
-
For the first series, 1=2*0+1, 3 = 2*1+1, 9 = 2*4+1 and 21=2*10+1. So F(5) = 2*5+1=11
For the second series. outputs increase by 7 in each step. So F(3)=19+7=26
For the second series. outputs increase by 7 in each step. So F(3)=19+7=26
-
it is a wrong question.