- Sampling with Replacement
- A random sampling method where each selected item is returned to the pool before the next draw, allowing the same value to appear multiple times. The letter generator uses this method, so any letter can repeat.
- Uniform Distribution
- A probability distribution where every outcome in the active set has equal likelihood. The letter generator applies a uniform distribution across all enabled letters on each position.
- Vowel
- The letters A, E, I, O, and U in the English alphabet, representing open vocal tract sounds. The generator's vowel filter excludes these 5 letters, leaving a pool of 21 consonants when activated.
- Consonant
- Any letter other than a vowel — the 21 non-vowel letters of the English alphabet. Excluding consonants leaves only the 5 vowels as candidates for generation.
- Mixed Case
- A character casing mode where each letter is independently assigned uppercase or lowercase with equal probability, producing a sequence that blends both forms without a predetermined pattern.
- Acrostic
- A poem or text where the first letter of each line, word, or other unit spells out a word, message, or in this context, a random letter sequence used as a creative writing constraint.