There is a room of dimension $2\times 12$ units. You have to tile it. There are two types of tiles:
- I-Shaped - it is of a dimension $1\times 2$ units,
- L-Shaped - it is in the shape of $L$ which has an area of $3$ sq. units.
In how many ways can you tile it?
I have studied some basics of permutation and combination but I can't use it in the this question.
Note:
- The $I$ shaped tiles are identical from both sides.
- You can rotate the tiles in any direction if it will fit.
- You have an unlimited supply of tiles.


I am not quite sure if you can use basic permutation/combination to solve this problem.
But It can be approached recursively.
Denote the number of ways of tiling a $2\times n$ area by given tiles as $T(n)$, and the number of ways of tiling a $2 \times n$ area plus a leading block on top or bottom as $S(n)$
Then,
$T(n)=T(n-1)+T(n-2)+ 2S(n-2)$
$S(n)=S(n-1)+T(n-1)$
Take the first relation for example. If you lay the first tile as 'I' and vertically, you result in a $2\times (n-1)$ area. If you lay the first tile 'I' horizontally, you will have to cover the area below it with another horizontal 'I' to cover fully, you get a $2\times (n-2)$ area. If you lay a 'L', you can do it in two valid way, and by symmetry, they have same number ways of being tiled, names $S(n-2)$.
By solving the recurrence relation, you can get the answer to $T(12)$, i.e., your question.