1. An architect is designing a walkway using hexagonal tiles. If one hexagon requires 6 border stones, two joined hexagons require 10 border stones, and three joined hexagons require 14 border stones, which expression represents the number of stones needed for n hexagons in a row?
A) 6nB) 6n - 2C) 4n + 2D) 5n + 1
✓ Correct Answer: Option C
Explanation: <b>Solution:</b><br> Let's analyze the pattern:<br> For n=1: Stones = 6<br> For n=2: Stones = 10 = 6 + 4<br> For n=3: Stones = 14 = 10 + 4<br> This is an arithmetic pattern where each step adds 4 stones. <br> The rule is: $4 \times n + 2$. <br> Verification: For n=1, 4(1)+2 = 6. For n=2, 4(2)+2 = 10.