5. Using Recursive Rules with Sequences
Sign In
f(0)=4, f(1)=8, f(2)=16, f(3)=32, f(4)=64, f(5)=128
f(0)&=4 f(n)&=2f(n-1) To do so, we will use a table.
n | f(n)=2f(n-1) | 2f(n-1) | f(n) |
---|---|---|---|
0 | f( 0)=4 | - | 4 |
1 | f( 1)=2f( 1-1) | 2 f(0)=2( 4) | 8 |
2 | f( 2)=2f( 2-1) | 2 f(1)=2( 8) | 16 |
3 | f( 3)=2f( 3-1) | 2 f(2)=2( 16) | 32 |
4 | f( 4)=2f( 4-1) | 2 f(3)=2( 32) | 64 |
5 | f( 5)=2f( 5-1) | 2 f(4)=2( 64) | 128 |
Therefore, the first 6 terms of the sequence are 4, 8, 16, 32, 64 and 128.