sequence problem

2009-03-25 7:09 am
what is the pattern for the following sequence:
6, 12, 24, 48

please explain in details how you get the answer!! thank you

回答 (2)

2009-03-25 7:29 am
✔ 最佳答案
T(1)=6
T(2)=6x2 =2T(1)
T(3)=24=12x2=2T(2)=(2^2)T(1)
T(4)=48=2x24=2T(3)=(2^2)T(2)=(2^3)T(1)

so the pattern is T(n) = 2^(n-1) *6 =2^n x3

2009-03-25 3:47 pm
This is a G. S., that is a, ar, ar^2 , ar^3,...... ar^(n-1).
T(2)/T(1) = ar/a = r = 12/6 = 2.
rT(1) = T(2)
2a = 12
a = 6.
so T(n) = [6(2^(n-1)] = 3(2^n).




收錄日期: 2021-04-25 22:38:36
原文連結 [永久失效]:
https://hk.answers.yahoo.com/question/index?qid=20090324000051KK02094

檢視 Wayback Machine 備份