Starting with number 3, repeat 30 times the operation of doubling and…

2026

Starting with number 3, repeat 30 times the operation of doubling and subtracting 1, then what will you get

Answer: A. 2^31+1Define a_0 = 3 and for each n define a_{n+1} = 2*a_n - 1. Base case: For n = 0, a_0 = 3 = 2^1 + 1. Inductive step: Assume a_n = 2^{n+1} + 1. Then a_{n+1} =…

  1. A.

    2^31+1

  2. B.

    3*2^31

  3. C.

    2^31-1

  4. D.

    3*2^30

Attempted by 468 students.

Show answer & explanation

Correct answer: A

Define a_0 = 3 and for each n define a_{n+1} = 2*a_n - 1.

Base case:

  • For n = 0, a_0 = 3 = 2^1 + 1.

Inductive step:

  • Assume a_n = 2^{n+1} + 1. Then

    a_{n+1} = 2*a_n - 1 = 2*(2^{n+1} + 1) - 1 = 2^{n+2} + 1.

By induction, after k operations the value is a_k = 2^{k+1} + 1.

For 30 repetitions (k = 30) the result is 2^31+1.

Explore the full course: Tcs Ignite Smart Hiring Test Series

Loading lesson…