Skip to main contentSkip to solution

A lab experiment measures the number of organisms at 88 am every day. Starting with 22 organisms on the first day, the number of organisms on any day is equal to 33 more than twice the number on the previous day. If the number of organisms on nth day exceeds one million, then the lowest possible value of nn is

Entered answer:

Solution

✅ Correct Answer: 19

We start with 22 organisms on day 11. Each day, the number of organisms =2×(previous day’s count)+3= 2 \times (\text{previous day's count}) + 3.

We need to find the smallest day number (n)(n) when organisms exceed 1,000,0001,000,000.


Identify the recurrence relation:

T(n)=2×T(n−1)+3T(n) = 2 \times T(n-1) + 3, with T(1)=2T(1) = 2

This is a first-order linear recurrence relation of the form T(n)=a×T(n−1)+bT(n) = a \times T(n-1) + b.


For any recurrence T(n)=a×T(n−1)+bT(n) = a \times T(n-1) + b, the general solution is:

T(n)=an×C+particular solutionT(n) = a^n \times C + \text{particular solution}

To find the particular solution, set T(n)=AT(n) = A (constant):

A=2A+3A = 2A + 3

A−2A=3A - 2A = 3

A=−3A = -3

So: T(n)=2n×C−3T(n) = 2^n \times C - 3


Using initial condition T(1)=2T(1) = 2:

2=21×C−32 = 2^1 \times C - 3

2=2C−32 = 2C - 3

5=2C5 = 2C

C=52C = \dfrac{5}{2}

Therefore: T(n)=52×2n−3=5×2n−1−3T(n) = \dfrac{5}{2} \times 2^n - 3 = 5 \times 2^{n-1} - 3


We need: 5×2n−1−3>1,000,0005 \times 2^{n-1} - 3 > 1,000,000

5×2n−1>1,000,0035 \times 2^{n-1} > 1,000,003

2n−1>1,000,00352^{n-1} > \dfrac{1,000,003}{5}

2n−1>200,000.62^{n-1} > 200,000.6

n−1>log⁡2(200,000.6)≈17.61n - 1 > \log_2(200,000.6) \approx 17.61 (Use calculator)

n>18.61n > 18.61

Since nn must be an integer, n≥19n \geq 19.


Verification:

T(18)=5×217−3=5×131,072−3=655,357<1,000,000T(18) = 5 \times 2^{17} - 3 = 5 \times 131,072 - 3 = 655,357 < 1,000,000

T(19)=5×218−3=5×262,144−3=1,310,717>1,000,000T(19) = 5 \times 2^{18} - 3 = 5 \times 262,144 - 3 = 1,310,717 > 1,000,000

Answer: n=19n = 19

Keyboard Shortcuts

  • Left arrow: Previous question
  • Right arrow: Next question
  • S key: Jump to solution
  • Q key: Jump to question