18 Find both a recursive rule and an explicit rule that will
     18. Find both a recursive rule and an explicit rule that will generate the values in the table below, provided that ao 33 Explicit rule: Recursive rule:  
  
  Solution
we can see that
n 1 2 3 4 5 6
an 2 3 5 9 17 33
we can see that the difference between two consecutive (an) is
1 2 4 8 16
we can write 1 = 20 , 2 = 21, 4 = 22 ,8 = 23 and 16 = 24 and so on
and the each an is \"1\" more then this difference
now to form a general formula for an
n=1 a1 = 1 + 20 = 1 + 2(1-1)
n = 2 a2 = 1 + 21 = 1 + 2(2-1)
n=3 a3 = 1 + 22 = 1 + 2(3-1)
and so on
therefore
an = 1 + 2(n-1)

