Difficulty: Easy
Correct Answer: 12 x 81
Explanation:
Introduction / Context:
This counts sequences of length 6 over a 4-color alphabet with an adjacency restriction that prohibits identical neighbors.
Given Data / Assumptions:
Concept / Approach:
Use multiplication with a recurrence flavor: first stripe has 4 choices; each subsequent stripe has 3 choices (anything but its immediate neighbor’s color).
Step-by-Step Solution:
Stripe 1: 4 ways.Stripes 2–6: each 3 ways independently of earlier stripes beyond the immediate neighbor.Total = 4 × 3^5 = 4 × 243 = 972 = 12 × 81.
Verification / Alternative check:
A simple recurrence a(n) = 3 a(n−1) with a(1) = 4 yields a(6) = 4 × 3^5.
Why Other Options Are Wrong:
Other products do not equal 972 and do not match the 4·3^5 logic.
Common Pitfalls:
Accidentally allowing 4 choices at each step or forbidding more than just the immediate neighbor’s color.
Final Answer:
12 x 81
Discussion & Comments