Recursive Sequence Growth

CAT 2023 Slot 1 · QA · Medium · Algebra

A lab experiment measures the number of organisms at 8 am every day. Starting with 2 organisms on the first day, the number of organisms on any day is equal to 3 more than twice the number on the previous day. If the number of organisms on the nthn^{\text{th}} day exceeds one million, then the lowest possible value of nn is

Answer

19

Explanation

Let xnx_n be the number of organisms on the nthn^{\text{th}} day. Given x1=2x_1 = 2 and xn=2xn1+3x_n = 2 x_{n-1} + 3.

Add 3 to both sides: xn+3=2xn1+6=2(xn1+3)x_n + 3 = 2 x_{n-1} + 6 = 2(x_{n-1} + 3) Let yn=xn+3y_n = x_n + 3. Then yn=2yn1y_n = 2 y_{n-1} with y1=x1+3=5y_1 = x_1 + 3 = 5. So yn=5×2n1y_n = 5 \times 2^{n-1}, which means xn=5×2n13x_n = 5 \times 2^{n-1} - 3.

We want xn>106x_n > 10^6: 5×2n13>106    5×2n1>1000003    2n1>200000.65 \times 2^{n-1} - 3 > 10^6 \implies 5 \times 2^{n-1} > 1000003 \implies 2^{n-1} > 200000.6

Powers of 2:

  • 217=1310722^{17} = 131072
  • 218=262144>200000.62^{18} = 262144 > 200000.6

Thus, n1=18    n=19n - 1 = 18 \implies n = 19.

Practise this under exam conditions

Sign in to solve it with a live timer, the on-screen CAT calculator, and streak and accuracy tracking across every question you attempt.

Solve in the workspace