Using 1'' x 2'' dominoes, there's one way to tile a 1'' x 2'' area, 2 ways to tile a 2'' x 2'' area, 3 ways to tile a 3'' x 2'' area, and 5 ways to tile a 4'' x 2'' area.
How many ways are there to tile a 5'' x 2'' area?
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.
This is just a recurrence relation for the Fibonacci Sequence. For a n × 2 region, the number of arrangements is just F n . This is because you can either end on two horizontal dominoes( F n − 2 ) or one vertical dominoe ( F n − 1 ), therefore F n = F n − 1 + F n − 2