Definitions and Defaults
Speak in simple classes so you can count with confidence.
-
C means consonant
Use this 21 letter set:b c d f g h j k l m n p q r s t v w x y z -
V means vowel
Use this 5 letter set:a e i o u -
Treat
yas a consonant by default
Switch it to a vowel if you want a softer sound -
All counts use the 26 letter English alphabet without case
The Six Core Two Vowel Patterns
These six layouts use exactly two vowels. With 21 consonants and 5 vowels, each layout has the same count.
1. CVCV
- Structure: consonant vowel consonant vowel
- Examples:
nivo,tigo,melo - Count: 21 × 5 × 21 × 5 = 11,025
- Why it works: two clean beats that stay clear across languages
2. VCVC
- Structure: vowel consonant vowel consonant
- Examples:
afer,eban,otic - Count: 11,025
- Why it works: open start with steady rhythm
3. CVVC
- Structure: consonant vowel vowel consonant
- Examples:
peel,noon,lair - Count: 11,025
- Why it works: soft middle that sounds smooth
4. VCCV
- Structure: vowel consonant consonant vowel
- Examples:
anta,isco,esse - Count: 11,025
- Why it works: compact center with character
5. VVCC
- Structure: vowel vowel consonant consonant
- Examples:
east,oops,aard - Count: 11,025
- Notes: strong vowel start, watch stress in some languages
6. CCVV
- Structure: consonant consonant vowel vowel
- Examples:
stae,bloo,prie - Count: 11,025
- Notes: reads modern and technical
Phonetic Math You Can Reuse
Total two vowel four letter strings
6 layouts × 11,025 = 66,150
General formula for exactly k vowels in n letters
count(n, k) = C(n, k) × 5^k × 21^(n - k)
Four letter vowel distribution over 26^4 = 456,976
| Vowels | Count | Percentage |
|---|---|---|
| 0 | 194,481 | 42.6% |
| 1 | 185,220 | 40.5% |
| 2 | 66,150 | 14.5% |
| 3 | 10,500 | 2.3% |
| 4 | 625 | 0.14% |
Two vowels give you a good balance of clarity and scarcity.
The Y Factor
You can flip y to tune sound. Recalculate with the class sizes you choose.
-
yas consonant
CVCV = 21 × 5 × 21 × 5 = 11,025 -
yas vowel
CVCV = 20 × 6 × 20 × 6 = 14,400
Pick the role that matches your target voice. The math follows.
Why Phonetic Patterns Drive Value
-
Pronunciation clarity – CVCV and VCVC give instant syllable breaks
People repeat what they can say -
Memorability – Even vowel spacing builds rhythm
Rhythm sticks -
International reach – Balanced C and V layouts reduce misreads across markets
-
Brand voice control
| Pattern group | Voice cue |
|---|---|
| CVCV, VCVC | friendly and open |
| VCCV, CVVC | distinctive and strong |
| VVCC, CCVV | modern and technical |
Letter Quality Tiers
Pick letters that read clean in logos and text.
| Tier | Letters | Use |
|---|---|---|
| A | a e i o u l m n r s t |
smooth flow |
| B | b c d f g h k p v w y |
add strength |
| C | j q x z |
use with care next to open vowels |
Tip: Start with Tier A, then mix in Tier B. Place Tier C next to open vowels when you want a sharper edge without hurting speech.
Language Notes
-
In English,
qalmost always pairs withu
qubehaves like one sound. Avoid a nakedqif you want an easy read -
At the start of a word,
xcan sound likezors
Expect variation -
Common clusters
ch sh th phread as single sounds in English
They still count as two letters in math -
Stress by layout
- CVCV gives two clean beats
- VCCV and CVVC can shift stress
- Say the name out loud and listen
Chinese Premium and Phonetics
Use this 20 letter set that excludes a e i o u v
b c d f g h j k l m n p q r s t w x y z
Facts you can apply
-
All consonant four letter strings in this set
20^4 = 160,000 -
You can get pronounceable strings by using
yandwas semi vowels -
If you treat
yandwas the only vowels in this 20 letter set, set V = {y, w} and C = the other 18 letters
Example CVCV count = 18 × 2 × 18 × 2 = 1,296
Use this set when you target investor demand in markets that prefer no classic vowels. Check sound before you buy.
Selection Strategy
For global brands
- Start with CVCV or VCVC
- Favor Tier A and Tier B letters
- Avoid dense clusters that slow speech
- Test with listeners in different regions and record misreads
For niche or technical brands
- Use VCCV or CVVC for character and control
- Place Tier C letters next to open vowels
- Keep at least one clear vowel anchor so names stay accessible
Common Mistakes
- Three or four vowels – Names drift and lose shape
- Heavy consonant blocks with no clear break – Hard to read across languages
- Ignoring letter quality – Poor placement of
j q x zincreases friction - Forgetting rhythm – Uneven stress hurts recall
Value Indicators
Use this quick screen:
- Clear two syllable flow
- Even vowel spacing
- Premium letter mix
- Natural breaks that match speech
Combine Phonetic and Symbol Patterns
You get extra lift when sound and visual pattern align
- ABAB with CVCV:
kiki,lolo,bobo - ABBA with CVVC or VCCV:
otto,abba - Palindromes with CVVC:
noon,peep,deed
Note on palindromes at four letters: They cannot be CVCV. If the outer and inner letters are different types you get CVVC or VCCV. If both outer and inner letters are vowels you get VVVV. If both are consonants you get CCCC. If all four letters match you get AAAA.
Quick Validation with Regex
Normalize to lowercase before testing
- C class:
[bcdfghjklmnpqrstvwxyz] - V class:
[aeiou]
| Pattern | Regex |
|---|---|
| CVCV | ^[bcdfghjklmnpqrstvwxyz][aeiou][bcdfghjklmnpqrstvwxyz][aeiou]$ |
| VCVC | ^[aeiou][bcdfghjklmnpqrstvwxyz][aeiou][bcdfghjklmnpqrstvwxyz]$ |
| CVVC | ^[bcdfghjklmnpqrstvwxyz][aeiou]{2}[bcdfghjklmnpqrstvwxyz]$ |
| VCCV | ^[aeiou][bcdfghjklmnpqrstvwxyz]{2}[aeiou]$ |
| VVCC | ^[aeiou]{2}[bcdfghjklmnpqrstvwxyz]{2}$ |
| CCVV | ^[bcdfghjklmnpqrstvwxyz]{2}[aeiou]{2}$ |
If you treat
yas a vowel, use[aeiouy]for V and removeyfrom C
Checklist
- Pick a two vowel layout that fits your voice
- Choose letters from Tier A and Tier B first
- Say the name five times and listen for stalls
- Note the exact count for the pattern you used
- Run basic trademark checks before you publish