The sequence of dominoes follows a pattern where the number of dots on the top half increases by 1, and the number of dots on the bottom half increases by 2, starting from 1 and 0 respectively.
- First domino: top = 1, bottom = 0
- Second domino: top = 1, bottom = 3
- Third domino: top = 2, bottom = 4
- Fourth domino: top = 3, bottom = 5
Following this pattern:
- The next top number should be 4 (3 + 1)
- The next bottom number should be 6 (5 + 1)
Looking at the options:
- Option A: top = 4, bottom = 6
- Option B: top = 4, bottom = 4
- Option C: top = 4, bottom = 5
The correct answer is A.
Parent Tip: Review the logic above to help your child master the concept of printable logic puzzles brain teasers.