Invitational round | 10 points | 17.39% | Problem statement | Official solution | Tags: Writing system
This script actually has Unicode: I'm not sure why the problem uses images for them. Here's the word inventory, typed up nicely1:
First thing is to figure out the writing direction. In the English translations, we have 4 words beginning with "a" and 3 beginning with "p". In the Meroitic column, it suffices to say that the left ends of the words vary a lot, while we have 4 words with 𐦠 on the right hand, and 3 with 𐦧. (Even if you treated 𐦠 as two distinct glyphs, the conclusion still holds.) Therefore this language is RTL. We can group the words and translations by the first letter.
| 𐦠 - a | 𐦧 - p | others | |||
|---|---|---|---|---|---|
| Meroitic | English | Meroitic | English | Meroitic | English |
| 1. 𐦠𐦧𐦡𐦷𐦡𐦨𐦲 2. 𐦠𐦧𐦣𐦵 7. 𐦠𐦩𐦴 10. 𐦠𐦴 | A. anata C. apote F. ata G. apedemaka | 8. 𐦧𐦡𐦬𐦨𐦣𐦯 9. 𐦧𐦬𐦯𐦩 12. 𐦧𐦳𐦫 | D. pelamosa I. palasana J. paqara | 3. 𐦵𐦥𐦢𐦱𐦴𐦢 4. 𐦲𐦪𐦢𐦵 5. 𐦱𐦨 6. 𐦳𐦣𐦫𐦡 11. 𐦯𐦵 | B. sema E. qore H. sate K. tewiseti L. kadite |
(Again, okay if you treat 𐦠 as two distinct glyphs here.)
Next we want to figure out if the script is alphabetic or syllabic. Notice how 𐦠 never appears again elsewhere, despite "a" being everywhere. (If you treat 𐦠 as two glyphs, then the right half never appears again. However, at this point you should realize that the right half never exists without the left half, so they should be one glyph.) That's a strong hint that it's not purely alphabetic—either syllabic, abjad, or a mix.
Recap all the syllable values we have:
| Glyph | Syllable | Glyph | Syllable |
|---|---|---|---|
| 𐦠 | a | 𐦳 | qa |
| 𐦷𐦡 | de | 𐦳𐦣 | qo |
| 𐦪𐦢 | di | 𐦫 | ra |
| 𐦲 | ka | 𐦫𐦡 | re |
| 𐦬 | la | 𐦯 | sa |
| 𐦨 | ma | 𐦱 | se |
| 𐦨𐦣 | mo | 𐦴 | ta |
| 𐦩 | na | 𐦵 | te |
| 𐦧 | pa | 𐦴𐦢 | ti |
| 𐦧𐦡 | pe | 𐦥𐦢 | wi |
| 𐦧𐦣 | po |
It's obvious that for most syllables, "a" is the default vowel, and "e", "i", "o" are formed by adding 𐦡, 𐦢, and 𐦣, respectively. The exceptions are "se" and "te" for which we have specialized glyphs 𐦱 and 𐦵 instead of the standard combinations.
Therefore:
a. 𐦧𐦡𐦫𐦢𐦵 = 𐦧𐦡 + 𐦫𐦢 + 𐦵 = pe + ri + te
b. 𐦧𐦢𐦬𐦡𐦳𐦡 = 𐦧𐦢 + 𐦬𐦡 + 𐦳𐦡 = pi + le + qe
c. 𐦠𐦴𐦫𐦢 = 𐦠 + 𐦴 + 𐦫𐦢 = a + ta + ri
d. 𐦨𐦡𐦷𐦡𐦥𐦢 = 𐦨𐦡 + 𐦷𐦡 + 𐦥𐦢 = me + de + wi
This script being RTL made it a huge pain to type. ↩