Advertentie
← Terug naar Ruimtelijk Inzicht · Handleidingen
Transformatiereeksen
De volgende vorm identificeren in een reeks progressieve transformaties.
Leren
De volgende vorm identificeren in een reeks progressieve transformaties.
Transformation sequences involve shapes that undergo progressive changes following a consistent pattern. Each step applies the same transformation (rotation, scaling, or mirroring) to produce the next shape. The challenge is to identify the transformation rule and predict what comes next.
shape[n+1] = transform(shape[n], rule)
- Each shape rotates 45° clockwise from the previous
- Shape alternates between mirrored and unmirrored states
- Combined rotation and color change at each step
Zo herkent u het
- Compare adjacent shapes to find the transformation
- Verify the same transformation applies at each step
- Apply the transformation to the last shape to predict next
- Check for compound transformations (rotation + other change)
Veelgemaakte fouten
- Assuming simple rotation when compound transformation applies
- Missing alternating patterns in the sequence
- Not verifying the rule works for all consecutive pairs
Stapsgewijze uitwerking
Een reeks toont een driehoek omhoog, dan naar rechts, dan omlaag. Wat is de volgende vorm?
- De eerste twee vormen vergelijken: de driehoek roteert van omhoog naar rechts.
- De rotatie berekenen: omhoog naar rechts = 90 graden met de klok mee.
- Controleren met het volgende paar: rechts naar omlaag = ook 90 graden met de klok mee.
- Dezelfde transformatie toepassen: omlaag 90 graden met de klok mee gedraaid.
- Omlaag 90 graden met de klok mee gedraaid wijst naar links.
Antwoord: Een driehoek die naar links wijst
Oefenadvies
Advertentie