Remembering numbers can be a challenge. Recalling any individual phone number, product number, passcode, or ID might not cause difficulty when the number is of a reasonable length. However, keeping track of many such identifiers in one’s head can be easier said than done. Now imagine how challenging it would be to keep track of hundreds of digits or more without using special memorization techniques. This would be nearly impossible for most people. Fortunately, there are techniques that can make this much easier, even for people who aren’t born with extraordinary memories. The mnemonic major system is one of these methods. In this mini-project, I designed a generator that uses the major system to transform numbers into word phrases. This is not the first generator that has been created for this purpose, and there are web services that can perform this task available online. However, implementing a generator in Wolfram Language makes it easily customizable and compatible with the language’s features.
The vowels of this phonetic form are not used in the major system, but we can see from the translation table above that its consonant sounds (s, m, p, l, a second s, and t) can be translated to 0,3,9,5,0, and 1. So if a person happened to want to memorize the number 039501, they would only need to remember the word “simplicity.” In the previous example, we started with the phrase and converted it to a number, but in practical situations, a person would typically start with the number they need to memorize and use the major system to translate it into words. For example, 12345 could become “tiny mural.” It takes some creativity and vocabulary to come up with a suitable phrase, which makes it harder to translate numbers to phrases than vice versa. This is why a generator that automatically performs the more difficult step of the process can be useful.
Creating A Major System Generator
Coding the Generator
I began by creating lists of all nouns and adjectives in Wolfram Language’s built-in WordList function as well as their phonetic pronunciations.
Here is the output of the generator for the first 314 digits of pi.
Result Evaluation and Concluding Remarks
The generator successfully generates phrases to match the numbers it receives from the user. However, there are a few areas that could use improvement. Since the phrases are randomly generated, they often don’t make a lot of sense. In addition, since all nouns and adjectives from Wolfram’s WordData function are used as options, the user might see obscure vocabulary they are unfamiliar with or words they consider objectionable. Lastly, since I wasn’t able to find an easy way to separate abstract from concrete nouns, many of the phrases may describe abstract concepts that are harder to visualize and thus harder to memorize. Nevertheless, it does achieve its core purpose of translating numbers to phrases using the major system.