Publicidad

Errores de Sustitución

Un carácter está reemplazado por un carácter diferente.

Aprender

Un carácter está reemplazado por un carácter diferente.

Substitution errors occur when one character is incorrectly replaced with another. This often happens with visually similar characters (0 vs O, 1 vs l, 5 vs S) or adjacent keyboard keys. The string length stays the same, but one character is wrong. These errors are common in manual data entry.

Original: ABCD → Error: ABXD (C replaced with X)

  • 12345 → 12845 (3 replaced with 8)
  • JOHNSON → JOHNS0N (O replaced with zero)
  • AB-1234 → AB-1284 (3 replaced with 8)

Cómo reconocerlo

  • One character is different, all others match
  • Length remains the same
  • Often involves similar-looking characters

Errores comunes

  • Confusing substitution with transposition
  • Missing errors with visually similar characters (0/O, 1/l/I)
  • Not comparing character by character

Resolución paso a paso

Encuentre el error: Original 'JOHNSON' vs Dado 'JOHNS0N'

  1. Comparar posición 1: 'J' = 'J'
  2. Comparar posición 2: 'O' = 'O'
  3. Comparar posición 3: 'H' = 'H'
  4. Comparar posición 4: 'N' = 'N'
  5. Comparar posición 5: 'S' = 'S'
  6. Comparar posición 6: 'O' vs '0' - diferencia encontrada
  7. Comparar posición 7: 'N' = 'N'
  8. La letra 'O' fue reemplazada por el dígito '0' (cero)

Respuesta: Error de sustitución: letra 'O' reemplazada por dígito '0' en posición 6

Orientación para practicar

Detección de Errores

Publicidad