133k views
2 votes
100 POINTS! PLEASE HELP ME

100 POINTS! PLEASE HELP ME-example-1
User ColdHands
by
8.1k points

2 Answers

2 votes

Answer:

f(n) = 2 * f(n - 1) + 1

Explanation:

First, notice that the difference between each neighboring term is different, so it is not linear, so we can rule out A and B. Now, it's all about finding a pattern. Eventually, through guess and check, you will get 2 * f(n - 1) + 1.

Perhaps there was a typo in C? Idk!!

User Manish S
by
8.2k points
3 votes

Answer:

f(n) = 2f(n-1)+1

Explanation:

5, 11, 23 , 47, 95, .....

+6 +12 +24 + 48

Notice we are 1 less then what we add the next time

5 = 2*3 -1

11 = 2*2*3 -1

23 = 2*2*2 *3 -1

The formula is

3* 2^(n) -1

Lets check the 4th term

3 ^ 2^4 -1

3*16 -1

48 -1 = 47

So this works

To get from the previous term

We 5*2 +1 =11

11*2 +1 = 22+1 = 23

23*2 +1 = 46+1 = 47

an = 2an+1

f(n) = 2f(n-1)+1


User JQCorreia
by
9.0k points

No related questions found

Welcome to QAmmunity.org, where you can ask questions and receive answers from other members of our community.

9.4m questions

12.2m answers

Categories