Predicting What Comes Next: Sequences and Progressions | Exercise 8.1

Question 6

Let T1=1T_1 = 1, T2=2T_2 = 2, T3=4T_3 = 4, and Tn=Tn1+Tn2+Tn3T_n = T_{n-1} + T_{n-2} + T_{n-3} for n4n \ge 4. Find T4T_4, T5T_5, T6T_6, T7T_7, and T8T_8.

Check your answer with HomiSolve it yourself, then let Homi check your steps and spot mistakes.
Solution
Understand the Question
  • We are given the first three terms of a sequence: T1=1T_1 = 1, T2=2T_2 = 2, and T3=4T_3 = 4.
  • For any term from n4n \ge 4, the recurrence relation is Tn=Tn1+Tn2+Tn3T_n = T_{n-1} + T_{n-2} + T_{n-3}, meaning each new term is the sum of the preceding three terms (a Tribonacci-like sequence).
  • We calculate T4,T5,T6,T7,T_4, T_5, T_6, T_7, and T8T_8 step-by-step in sequence, using the newly computed values for subsequent terms.

Step 1 · Find T4T_4

Given T1=1T_1 = 1, T2=2T_2 = 2, T3=4T_3 = 4, and Tn=Tn1+Tn2+Tn3T_n = T_{n-1} + T_{n-2} + T_{n-3}.Diagram 1

For n=4n = 4:

T4=T3+T2+T1=4+2+1=7\begin{aligned} T_4 &= T_3 + T_2 + T_1 \\[0.6em] &= 4 + 2 + 1 \\[0.6em] &= 7 \end{aligned}

Step 2 · Find T5T_5

For n=5n = 5:

T5=T4+T3+T2=7+4+2=13\begin{aligned} T_5 &= T_4 + T_3 + T_2 \\[0.6em] &= 7 + 4 + 2 \\[0.6em] &= 13 \end{aligned}

Step 3 · Find T6T_6

For n=6n = 6:

T6=T5+T4+T3=13+7+4=24\begin{aligned} T_6 &= T_5 + T_4 + T_3 \\[0.6em] &= 13 + 7 + 4 \\[0.6em] &= 24 \end{aligned}

Step 4 · Find T7T_7

For n=7n = 7:

T7=T6+T5+T4=24+13+7=44\begin{aligned} T_7 &= T_6 + T_5 + T_4 \\[0.6em] &= 24 + 13 + 7 \\[0.6em] &= 44 \end{aligned}

Step 5 · Find T8T_8

For n=8n = 8:

T8=T7+T6+T5=44+24+13=81\begin{aligned} T_8 &= T_7 + T_6 + T_5 \\[0.6em] &= 44 + 24 + 13 \\[0.6em] &= 81 \end{aligned}
Answer

T4=7,T5=13,T6=24,T7=44,T8=81T_4 = 7, \quad T_5 = 13, \quad T_6 = 24, \quad T_7 = 44, \quad T_8 = 81

Common Mistakes
  • Adding Only Two Terms: Confusing this 3-term recurrence relation with the standard Fibonacci sequence (Tn=Tn1+Tn2T_n = T_{n-1} + T_{n-2}) and forgetting to add the third preceding term (Tn3T_{n-3}).
  • Cascading Arithmetic Errors: An addition error in an earlier term (such as T4T_4 or T5T_5) will carry forward and cause all subsequent terms to be incorrect.

More questions in Exercise 8.1

Q1

Find the first five terms of the sequence in which the nthn^{\text{th}} term is given by, for n1n \ge 1:

(i) tn=3n4t_n = 3n - 4

(ii) tn=25nt_n = 2 - 5n

(iii) tn=n22n+3t_n = n^2 - 2n + 3

Q2

Find the 10th10^{\text{th}} and 15th15^{\text{th}} terms of the sequence tn=5n3t_n = 5n - 3 for n1n \ge 1.

Q3

Determine whether 97 and 172 are terms of the sequence tn=5n3t_n = 5n - 3 for n1n \ge 1.

Q4

Which term of the sequence tn=5n3t_n = 5n - 3 for n1n \ge 1 is 607?

Q5

A sequence is given by the recursive rule t1=5t_1 = -5, tn+1=tn+3t_{n+1} = t_n + 3 for n1n \ge 1. Find the first five terms of the sequence. Is 5252 a term of this sequence? If so, which term is it?

Q6

Let T1=1T_1 = 1, T2=2T_2 = 2, T3=4T_3 = 4, and Tn=Tn1+Tn2+Tn3T_n = T_{n-1} + T_{n-2} + T_{n-3} for n4n \ge 4. Find T4T_4, T5T_5, T6T_6, T7T_7, and T8T_8.

← Back to Predicting What Comes Next: Sequences and Progressions