
Al G.
asked 10/11/22calculus recurence
You have access to 1×1 tiles which come in 2 different colors and 1×2 tiles which come in 3 different colors. We want to figure out how many different 1×n path designs we can make out of these tiles.
Find a recursive definition of the number of paths of length n
Solve the recurrence relation using the characteristic root technique.
1 Expert Answer
Assumption 1) all the colors involved are different and the 1x2 tiles have only a single color on each one.
Assumption 2) there are n "boxes" for tiles which can contain either a 1x1 tile or a 1x2 tile.
Assumption 3) the number of each kind of tile available is unlimited.
First from the n available boxes pick j of them to contain 1x1 tiles; these tiles can be arranged in 2j ways;
there are nCj*2j ways to do this.
In the remaining (n-j) boxes place the larger tiles; there are (n-j)*3n-j ways to do this.
Now take the product of the ways to arrange the smaller tiles times the number of ways to arrange the larger tiles and sum these products from j=0 to n.
Still looking for help? Get the right answer, fast.
Get a free answer to a quick problem.
Most questions answered within 4 hours.
OR
Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.
Paul M.
10/11/22