It is 20 because if u divide 78 by 3.75 ( 3 3/4 ) than equals 20.8
Answer:
3
Step-by-step explanation:
g(-1) means what is g(x) when x=-1.
So find -1 under the column labeled x and then scroll directly to the right of that and you should see what g(-1). It is 3
Here are my examples:
g(-8)=6
g(-5)=-2
g(-1)=3
g(0)=-5
Answer:
Step-by-step explanation:
Problem A
t(1) = 2(1) + 5
t(2) = 2*2 + 5 = 9
t(3) = 2*3 + 5 = 11
t(4) = 2*4 + 5 = 13
So this is the explicit result. Now try it recursively.
t_3 = t_2 + 2
t_3 = 9 + 2
t_3 = 11 which is just what it should do.
t_n = t_(n - 1) + 2
Problem B
t(1) = 3 * 1/2
t(1) = 3/2
t(2) = 3*(1/2)^2
t(2) = 3 * 1/4
t(2) = 3/4
t(3) = 3*(1/2)^3
t(3) = 3 * 1/8
t(3) = 3/8
t(4) = 3 (1/2)^4
t(4) = 3 (1/16)
t(4) = 3/16
So in general
t_n = t_n-1 * 1/2
For example t(5)
t_5 = t_4 * 1/2
t_5 = 3 /16 * 1/2 = 3/32