LingoBlend

Your Vocabulary Is a Network, Not a List: The Science of the Mental Lexicon

Your brain stores words as a connected network — the mental lexicon — not a flat list. Here is what the research says, and why vocabulary apps should be built the same way.

ScienceNikola Artukov7 min read

Open the vocabulary section of almost any language app and you will see the same thing: a list. Words in one column, translations in another, maybe a strength bar. It is a spreadsheet view of something that, inside your head, looks nothing like a spreadsheet. This article covers what the research actually says about how words are stored, the two practical consequences that matter for learners, and how we have started building LingoBlend around that shape.

What the mental lexicon actually looks like#

The term psycholinguists use for your word store is the mental lexicon, and the classic model of it is a semantic network: words as nodes, relationships as connections, and activation spreading along those connections (Collins & Loftus, 1975). When you hear doctor, the words nurse, hospital, and medicine become measurably faster to recognize for the next fraction of a second — an effect called semantic priming, and one of the most replicated findings in the field.

The connections are not only about meaning. Word-association studies — say a word, record the first word that comes back — show stable, structured links of several kinds:

Connection typeExample (Spanish)What it reflects
Word familycomer → comida, comedorShared root, morphology
Synonym / antonymfeliz → contento, tristeMeaning overlap and contrast
Topic / collocationcomer → cocina, almuerzoWords that live in the same situations
Form similaritypero ↔ perroSound- and spelling-alikes

Second-language research adds the finding that matters most for learners: network density tracks proficiency. Paul Meara's work on L2 lexical networks argued that vocabulary size alone is a weak measure — beginners' word stores behave like loose collections, while advanced learners' behave like native-style webs, with associations shifting from sound-based ("what does it rhyme with?") toward meaning-based as proficiency grows. Two learners can know the same 2,000 words, and the one whose words are connected reads faster, recalls faster, and guesses new words better.

Consequence one: new words need something to attach to#

A new word that connects to things you already know has somewhere to live. This is the vocabulary version of the comprehensible input principle — learning happens at the edge of what you know, not in a vacuum. If you already know comer (to eat), then comida (food) is barely a new word at all: it inherits the root, the topic, and half its contexts from a node you already own. Learning it costs a fraction of what an unrelated word costs.

That edge — the set of words one connection away from your known vocabulary — is your personal frontier, and it is where the cheapest learning lives. Frequency lists ignore it entirely: they hand every learner the same next word, regardless of what that learner already knows. A network model can rank the frontier for you specifically. (This is not a new idea in learning software generally — math platforms have used prerequisite graphs to pick "what's next" for years — but it is rare in language apps.)

Consequence two: similar words fight each other#

The second prediction is less intuitive and better supported: studying similar words together makes them harder to learn. A line of research going back decades (Tinkham, 1993; Waring, 1997) found that learning semantically clustered sets — all the colors at once, all the fruit at once — is measurably slower than learning the same words in mixed sets, because the similar items interfere with each other. Every learner who has permanently cross-wired Tuesday/Thursday or Spanish pero/perro knows the feeling. Paul Nation's vocabulary-teaching guidelines say it plainly: present related and confusable items at different times.

The practical upshot: an app should know which of your words are confusable — and use that knowledge to keep them apart when they are new, and to contrast them deliberately once you keep mixing them up. You can only do either if the confusion pairs are mapped.

What this means for how an app should model you#

Put the two consequences together and the requirements fall out naturally:

Flat-list modelNetwork model
Knows which words you savedKnows which words you saved and how they relate
Next word = next row in a frequency listNext word = your frontier, ranked
Blind to confusablesCan separate pero/perro in time, then contrast them
despierta and despertar are two unrelated rowsBoth are the same word family, and knowing one credits the other
Vocabulary size as the only metricSize and connectedness

That last row deserves a note, because it is where list-model apps quietly leak your progress. Learners meet words in inflected forms — despierta, not the dictionary form despertar — and a list model stores whatever form you saved as its own isolated row. A network model resolves forms to their family, so the knowledge accumulates in one place.

How LingoBlend builds this#

We have now built a vocabulary graph for every one of our 17 languages: roughly 3,000 of the most useful words per language — selected from real usage frequency, not textbook order — connected by word families, synonyms, antonyms, confusables, topics, and semantic similarity, plus an inflection index that maps tens of thousands of surface forms to their dictionary forms (despierta → despertar, and irregulars a spell-pattern rule could never catch, like Italian va → andare).

Your side of the graph comes from what LingoBlend already tracks: every word you save, and how your reviews go in the spaced-repetition games. That review history classifies each of your words — new, learning, young, mastered, struggling — and lays your knowledge over the language's map. The computation happens on your device, costs nothing, and works offline.

Today this runs under the hood. It is the foundation for the personalization we are rolling out next: blends that stop spending translation slots on words you have already mastered, recommendations drawn from your personal frontier instead of a generic list, and review sessions that respect the interference research above. If you want the deeper technical tour of what is in the graph, we wrote one: inside LingoBlend's vocabulary graph.

Related reading: how to build vocabulary by reading for the coverage and repeated-encounter research, the science of bilingual reading for why mixed-language text holds attention, and measure your vocabulary size for what size does and does not tell you. Or see the full research grounding on our science page.

Frequently asked questions

What is the mental lexicon?

The mental lexicon is the psycholinguistic term for how words are stored and retrieved in the mind. The dominant models describe it as a network: each word is a node connected to other words by meaning, sound, spelling, morphology, and usage context, and recognizing or producing a word involves activation spreading through those connections. It is emphatically not an alphabetical list — retrieval speed depends on connection strength, not dictionary order.

What is a vocabulary graph in a language learning app?

A vocabulary graph is the app-side version of the mental lexicon: a data structure where words are nodes and relationships — word family, synonym, antonym, confusable, topic, similarity — are edges. Combined with per-word mastery data from spaced repetition, it lets the app know not just which words you know, but what is adjacent to your knowledge (your frontier) and which of your words are likely to interfere with each other.

Why is learning similar words together harder?

Because similar items interfere with each other in memory. Research on semantic clustering (Tinkham, 1993; Waring, 1997) found that word sets sharing a tight meaning category — colors, days of the week, fruit — take longer to learn together than mixed sets, and produce lasting confusions. The standard recommendation from vocabulary researchers is to introduce related or confusable words at different times, and only contrast them side by side after one of them is solid.

Does knowing more words automatically mean a better vocabulary?

Size matters, but connectedness matters too. Second-language lexical research (notably Paul Meara's network studies) shows that advanced learners differ from beginners not just in how many words they know but in how richly those words are linked — their associations look increasingly like native speakers'. Two learners with the same word count can perform very differently in reading speed and recall depending on network density.

Do I see the vocabulary graph in the LingoBlend app?

Not as a visual feature — the graph currently works behind the scenes. LingoBlend already tracks per-word mastery through your saved words and game reviews; the graph adds the connection layer between words for all 17 languages. It powers upcoming personalization: smarter blend word selection, frontier-based word recommendations, and interference-aware review sessions.

Share this articleXLinkedInRedditEmail

Nikola Artukov

Builder of LingoBlend. Writes about reading as a way into a language — the methods, the research behind them, and the practical workflows that make them fit into an ordinary week.

More about the author

Related reading

Start learning a new language today

Join LingoBlend and turn any text into a personalized language lesson. Free to start, no credit card required.