Publicidad
← Volver a Razonamiento Espacial · Guías
Secuencias de Transformación
Identificar la siguiente forma en una serie de transformaciones progresivas.
Aprender
Identificar la siguiente forma en una serie de transformaciones progresivas.
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
Cómo reconocerlo
- 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)
Errores comunes
- Assuming simple rotation when compound transformation applies
- Missing alternating patterns in the sequence
- Not verifying the rule works for all consecutive pairs
Resolución paso a paso
Una secuencia muestra un triángulo apuntando arriba, luego a la derecha, luego abajo. ¿Cuál es la siguiente forma?
- Comparar las dos primeras formas: el triángulo gira de arriba a la derecha.
- Calcular la rotación: de arriba a la derecha son 90 grados en sentido horario.
- Verificar con el siguiente par: de derecha a abajo también son 90 grados en sentido horario.
- Aplicar la misma transformación: abajo rotado 90 grados en sentido horario.
- Abajo rotado 90 grados en sentido horario apunta a la izquierda.
Respuesta: Un triángulo apuntando a la izquierda
Orientación para practicar
Publicidad