The number of ways a rectangle can be tiled with rectangular tiles of size is?
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.
Let k ( n ) difine the number of ways a 2 × n rectangle can be tiled with rectangular tiles of size 2 × 1 is.
From the figure above it is easy to see that k ( x ) + k ( x + 1 ) = k ( x + 2 ) . Since k ( 1 ) = 1 , k ( 2 ) = 2 , by calculating we get k ( 8 ) = 3 4 .
Note: k ( m ) is the m + 1 . item of the Fibonacci sequence .