Μάθηση
Τα φωνήεντα και τα σύμφωνα ακολουθούν διαφορετικούς κανόνες μετατόπισης.
This cipher applies different transformation rules to vowels (A, E, I, O, U) versus consonants. Typically, vowels shift by one amount while consonants shift by another. This creates two parallel encoding systems within the same cipher.
Vowels (A,E,I,O,U) shift by X positions. Consonants shift by Y positions.
- With vowels +1, consonants +2: CAT -> E(C+2) B(A+1) V(T+2) = EBV
- WATER -> Y(W+2) B(A+1) V(T+2) F(E+1) T(R+2) = YBVFT
Πώς να το αναγνωρίζετε
- Two different shift patterns
- Identify vowels vs consonants first
- Vowels: A, E, I, O, U; all others are consonants
Συνηθισμένα λάθη
- Applying wrong shift to vowels/consonants
- Forgetting Y is a consonant (not a vowel)
- Not identifying which shift applies to which group
Λύση βήμα προς βήμα
Κωδικοποιήστε 'CAT' με φωνήεντα +1, σύμφωνα +2
- C είναι σύμφωνο. Μετατόπιση +2: C (3ο) + 2 = E
- A είναι φωνήεν. Μετατόπιση +1: A (1ο) + 1 = B
- T είναι σύμφωνο. Μετατόπιση +2: T (20ό) + 2 = V
Απάντηση: EBV