One Vowel and Four Consonants

For fun with Common Lisp and to help solve a certain puzzle - but just a little bit - I wrote a set of tools to analyse words of just five letters.

My source list is based on Hunspell's en_GB.dic. This dictionary list is available as open source under the MPL. I created my own copy, removed lots of words starting with or containing capitals, Roman numerals, at least 444 duplicates1, and then some other words.

From this sub-set, I see that there are some 667 English words that consist of one vowel and four consonants. In the REPL my utilities can break this down further, like this:

vowelnumber of words with just this vowelsample word
a192swank
e88spell
i165pitch
o106clown
u104thumb
y12glyph

The list of five-letter words that have 4 vowels? That would be this:

("youse" "yahoo" "queue" "payee" "hooey" "eyrie" "eerie" "bayou"
"aurei" "audio" "aerie" "adieu" "abaya")

To round off this post, there is this plot of five letter words versus their number of vowels. Hdqrs, with only consonants, is an abbreviation. I should remove it from the list.

/images/words-with-vowels.png

The graph is created from this table:

# vowels# words
01
1667
22647
3662
413
50
charHz
R1289
S1108
T1057
L1019
N958
C718
P651
D622
H621
M576
G511
B471
K390
F328
W289
V228
X95
Z89
J67
Q54

Footnotes


1

Sample duplicate words include acquisition, affection, bundle, commercial, orthodox, and queue.