In: Math
What can you say about the following three sequences?
1 ) sequence = range [0, 100, 7]
{0, 7 ,14 ,21 ,28 ,35 ,42 ,49 ,56 ,63 ,70 ,77 ,84 ,91 ,98]
2 ) sequence = range [7, 100, 7]
{7, 14, 21, 28, 35, 42, 49, 56, 63, 70, 77, 84, 91, 98}
3 ) sequence = table [ x^2, {x, 0, 17} ]
{0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289}
___________________________________________________________
A. All three sequences are arithmetic sequences.
B. Only two of the three sequences are arithmetic sequences.
C. All three sequences are geometric sequences.
D. Only two of the three sequences are geometric sequences.