93,136 views
6 votes
6 votes
Abraham is writing a recursive function for the geometric sequence:

24, 12, 6, 3,

Khan Academy Problem PLEASE HELP

User Alfie Woodland
by
2.5k points

2 Answers

19 votes
19 votes

Answer: C

Explanation:

Khan

User TBouder
by
3.1k points
20 votes
20 votes

Answer:

a1 = 24

an = an-1 × 1/2, n >1

Explanation:

a geometric sequence is a sequence where we multiply every previous term by a certain factor to create the next term.

so, we multiply 24 by something to get 12.

and then 12 by the same something to get 6.

and then 6 by the and something to get 3.

do you see the pattern ? hmmm ?

right, we always divide by 2 (or multiply by 1/2).

the starting value a1 = 24

so,

an = an-1 × 1/2, n>1

or


an = a1 * {(1 / 2)}^(n - 1)

n>1

User Tarashish
by
2.6k points
Welcome to QAmmunity.org, where you can ask questions and receive answers from other members of our community.