Answer:
C(n) = 122 * 2^n
Step-by-step explanation:
We are given that:
Each day, the number of likes increases two times compared to the previous day. This means that we can write the function as follows:
C(n) = 2*C(n-1)
We are given that:
C(0) = 122 likes (initial value)
Therefore, our function would become:
C(n) = 122 * 2^n
Now, let's test this function:
C(0) = 122 * 2^0= 122
C(1) = 122 * 2^1 = 244 (this is twice c(0))
C(2) = 122 * 2^2 = 488 (this is twice c(1))
.....and so on
Hope this helps :)