Accumulo
Gli elementi vengono progressivamente aggiunti senza rimuovere i precedenti. Il conteggio aumenta monotonicamente.
Comprensione di questo pattern
Nei pattern di accumulo, ogni fotogramma aggiunge uno o più nuovi elementi mantenendo tutti gli elementi esistenti. Una griglia potrebbe riempire una cella per passaggio, o le fette di torta si espandono di un angolo fisso ad ogni fotogramma. La previsione richiede di sapere dove appare il prossimo elemento — che spesso segue una regola di percorso secondaria o di conteggio.
Domanda di esempio
Regola del pattern
In each successive frame, exactly one additional cell becomes shaded, and the shading accumulates by following a fixed path through the grid (e.g., left-to-right, row by row, or in a snake/spiral order). The total number of filled cells increases by one per frame, tracing that path sequentially.
Spiegazione
Option D is correct because it continues the strict +1 cell accumulation along the established traversal path: each frame fills the next cell in sequence, so the number of shaded cells equals the frame index and the positions form a contiguous trail. Option A is tempting because it has the right count but places the newest cell in the wrong grid position, breaking the path. Option B introduces a gap in the shading, implying a cell was skipped, which violates the sequential rule. Option C overshoots by adding two cells instead of one. Option E mirrors or reflects the pattern rather than extending it, a common distractor in path-accumulation questions where candidates mistake a spatial transformation for a sequential fill.
Come individuarlo
- Il numero di elementi cresce da fotogramma a fotogramma
- Niente scompare tra i fotogrammi — solo aggiunte
- Una regione si riempie progressivamente (celle della griglia, fette di torta, punti)
Trappole comuni
- Assumere una crescita lineare quando il pattern aggiunge 1, poi 2, poi 3
- Perdere la regola del percorso che determina DOVE appaiono i nuovi elementi
- Confondere l'accumulo con la sostituzione (gli elementi cambiano, non si aggiungono)
Tag correlati