A $2×N$ rectangle is to be tiled with $1×1$, $1×2$ and $2×1$ tiles. Prove that there is an $x$ such that the number of possible tilings tends to $kx^N$ as $N$ gets large. Find $x$, to $2$ decimal places.
I tried to solve the problem initially by sketching all the possible tilings for $n=1,2,3,..$ but I realised this isn't a practical way to solve the problem.
I would like to do some drawings here, but it will be a good exercise to do it on your own ^^
I follow what Philcar said: you can model the problem with a linear recursion. If you only can tile with $1\times 2$ and $2\times 1$, you get the classical tiling problem which leads to Fibonacci numbers and is equivalent to $k\phi^N$ with $\phi$ the golden ratio (1.618...). More generally, if you reach a linear recursion for the number of possible tilings, you will end with a $kx^N$ as awaited. Let us do the job for your case now.
Denote by $R_N$ the $2\times N$ rectangle you want to tile, $T_N$ the number of possible tilings with $1\times 1$, $1\times 2$ or $2\times 1$ tiles, and $L_N$ the possible tilings for a $2\times N$ rectangle with a $1\times 1$ tile at the bottom right (it appears naturally in the computations, see below). What can be said about the tilings of $R_N$ for a given $N$? Suppose you have such a tiling, and just look at the bottom right corner (the $1\times 1$ corner placed at $(2, N)$ with matrix notations:
At last you end up with a twisted linear recursion for $(T_N,L_N)$:
$$ \forall N \in \mathbf{N}, N \geqslant 2, \left\{ \begin{array}{l} T_N = T_{N-1} + T_{N-2} + L_N + L_{N-1} \\ L_N = T_{N-1} + L_{N-1} \end{array} \right. $$
From those two relations, we get $T_{N-1} + L_{N-1} = L_N = T_N - T_{N-2} -L_N$ so that:
$$L_N = \frac{T_N - T_{N-2}}{2}$$
which gives you the sought recursion:
$$T_N = 3T_{N-1} + T_{N-2} -T_{N-3}$$
So the characteristic equation has three distinct solutions (the paradisiac case), which can be explicited and the greater one is about $\mathbf{x=3.21}$ (see here).
Now if you want to determine the constant $k$, you have to write down the general solution as $T_N = k_1x_1^N + k_2x_2^N + kx^N$ ($x_1$ and $x_2$ being the two other solutions, and use the first values of $T_N$ computed by hand ($N=0, 1, 2$ are easy and sufficient) to determine the constants, in particular the relevant $k$ (but here, you have to use the exact solutions).