Forming English plurals is mostly regular but full of small rules and a long tail of irregular forms. This helper applies the standard spelling rules in order and falls back to a curated irregular list, then tells you which rule it used so the result is explainable rather than magic.
How it works
The word is checked against several rules in priority order, stopping at the first match:
1. unchanged set (sheep, fish, series) -> same word
2. irregular map (child->children, mouse->mice) -> looked-up form
3. consonant + y -> drop y, add -ies
4. -f / -fe in the -ves set -> -ves
5. ends in s, x, z, ch, sh (sibilant) -> add -es
6. listed -o nouns (potato, hero) -> add -es
7. everything else -> add -s
Capitalisation of the first letter is preserved, so “Child” becomes “Children”.
The main rules explained
Regular -s is the default and the most common: cat → cats, book → books, problem → problems.
Sibilant -es applies when the word already ends in a sound that cannot have another consonant added directly after it without a break. Words ending in s, x, z, ch, or sh get -es: bus → buses, box → boxes, church → churches, wish → wishes.
Consonant plus -y to -ies is the rule that trips many writers. The key is whether the letter before the final y is a consonant or a vowel. Consonant + y drops the y and adds -ies: city → cities, baby → babies, country → countries. But vowel + y simply takes -s: day → days, boy → boys, monkey → monkeys.
-f and -fe to -ves applies only to a specific set of words — not to all -f words. Knife → knives, leaf → leaves, wolf → wolves, half → halves. But roof → roofs, belief → beliefs, chef → chefs. The tool uses a fixed list because this rule cannot be guessed reliably from spelling alone.
Invariant nouns — sheep, deer, fish, aircraft, series, species — are the same in singular and plural. These are common enough that knowing the list is more reliable than any rule.
Irregular plurals worth knowing
Beyond the rules, English has inherited a set of Germanic and Latin/Greek plurals:
- Germanic vowel change: man → men, woman → women, foot → feet, tooth → teeth, goose → geese, mouse → mice, louse → lice
- Latin -us to -i: cactus → cacti (also cactuses), fungus → fungi, nucleus → nuclei
- Latin -a to -ae: antenna → antennae (technical) or antennas (everyday)
- Latin -um to -a: datum → data, medium → media, criterion → criteria
- Greek -is to -es: analysis → analyses, thesis → theses, crisis → crises
Many of these have competing regularised forms; the tool surfaces the traditional form but notes where two plurals coexist.
When the result might be wrong
English has genuine exceptions the rules cannot all capture: “roof” takes -s not -ves despite ending in -f, and some nouns have two accepted plurals (cactuses or cacti). For domain-specific technical words — especially Latin or Greek borrowings in medicine, biology, and law — confirm the plural against a specialist dictionary.