Questions: Setting Up Recurrence Relations

3 questions to test your understanding

Score: 0 / 3
Question 1 Multiple Choice

A 2×n board can be tiled with 1×2 dominoes. Let T(n) be the number of tilings. Which recurrence and initial conditions are correct?

AT(n) = T(n-1) + T(n-2), with T(0) = 0 and T(1) = 1
BT(n) = T(n-1) + T(n-2), with T(0) = 1 and T(1) = 1
CT(n) = 2·T(n-1), with T(1) = 1
DT(n) = T(n-1) + T(n-2), with T(1) = 2 and T(2) = 3
Question 2 True / False

A recurrence relation alone, without any initial conditions, uniquely determines a sequence.

TTrue
FFalse
Question 3 Short Answer

What does it mean to 'verify a recurrence against small cases,' and why is this step important?

Think about your answer, then reveal below.