Impara
Il numero di forme in ogni cella aumenta o diminuisce sistematicamente.
Count patterns involve the quantity of shapes changing across rows or down columns. A cell might contain 1, 2, or 3 identical shapes, with the count following a predictable progression.
Cell count = base_count + (position × count_step)
- 1 circle → 2 circles → 3 circles across a row
- Single shape in row 1, pairs in row 2, triplets in row 3
- Count increases from left to right in each row
Come riconoscerlo
- Count the shapes in each cell
- Look for consistent increases (1→2→3)
- Check if the pattern applies to rows or columns
Errori comuni
- Focusing only on shape type, ignoring quantity
- Assuming all cells have one shape
- Missing the count pattern when shapes overlap
Soluzione passo per passo
In una matrice 3x3, il numero di forme aumenta in ogni riga. La riga 3 mostra: 1 cerchio, 2 cerchi, ?. Quanti cerchi nella cella mancante?
- Contare le forme nella riga 3, cella 1
- Contare le forme nella riga 3, cella 2
- Identificare il pattern di conteggio
- Applicare il pattern per trovare il prossimo numero
Risposta: 3 cerchi