rectangle. In how many ways can a rectangle be covered by 15 dominoes?
A domino is a
Bonus
In how many ways can a
rectangle be covered with
dominoes.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
For the 2 × n case there are F n + 1 ways to cover the rectangle where F n denotes the n t h Fibonacci number. So for the given case the number of tilings is F 1 6 = 9 8 7
We will prove the general case by setting up a recurrence relation and showing that it is the same as the recurrence relation for the Fibonacci numbers. Then we just need a little care thinking about the initial values and we will have a proof.
Let T n be the number of ways to tile the 2 × n rectangle. Imagine the 2 × n tiling set out in a long horizontal rectangle, and being built up from left to right. There are only two ways it can finish - with a vertical domino or with two horizontal dominos stacked above each other. This observation and a little thought gives us
T n = T n − 1 + T n − 2
which is the recurrence relation for the Fibonacci numbers!
It is easy to see that T 1 = 1 and T 2 = 2
and so our tiling sequence begins 1,2,3,5,8....
The Fibonacci sequence begins 1,1,2,3,5,8...
So we can see that T n = F n + 1