Aprender
Se aplican múltiples reglas de codificación en secuencia.
Combined codes apply multiple transformations in sequence. For example, first reverse the alphabet, then shift by 2. Or first convert to numbers, then apply an operation. These are more complex because you must apply each rule in the correct order. The key will usually show the final result.
Apply Rule 1 to get intermediate result, then apply Rule 2 to get final result
- Reverse then shift 1: A→Z→A (reverse gives Z, shift gives A)
- Shift 2 then reverse: A→C→X (shift gives C, reverse gives X)
- Number + 5: A=1+5=6, B=2+5=7, etc.
Cómo reconocerlo
- Key doesn't match any single simple pattern
- May need to work backwards to identify rules
- Look for two-step transformations in examples
Errores comunes
- Applying rules in the wrong order
- Trying to find a single rule when two are needed
- Not checking your work by encoding back
Resolución paso a paso
Codifica 'AB' con: primero desplazamiento +2, luego invertir alfabeto
- Paso 1: Aplica desplazamiento +2 a A → C
- Paso 2: Invierte alfabeto en C → X (C es 3.ª, X es 3.ª desde el final)
- Paso 1: Aplica desplazamiento +2 a B → D
- Paso 2: Invierte alfabeto en D → W (D es 4.ª, W es 4.ª desde el final)
Respuesta: XW