I have been living part-time in Madrid for the past three years, and my Spanish is still not as fluent as I want it to be. The thing that trips me up most is irregular verb conjugation.
So I decided to start studying deliberately. My goal was to conjugate every irregular verb confidently in every tense I was likely to use.
At first, the task felt daunting. A Spanish verb table has six pronouns across seven simple-tense columns, which gives you 42 verb forms before you get to imperatives, compound tenses, and less common forms I sometimes hear older people use, like hubiese. Most of those forms are regular. Many irregular forms follow common patterns; others follow rarer ones. A few seem like true one-off exceptions.
I wanted to understand these patterns well enough to find “patterns to the patterns” and minimize what I had to memorize. Put another way, I wanted to compress each irregular conjugation table into the smallest representation I could.
This is an appealing problem for a software engineer. Much of software design is compression: finding a smaller, cleaner representation of apparent complexity. When it works, you not only save space; you understand the problem better.
I sat down with a notebook, a pencil, and the conjugation tables for a few common verbs that kept tripping me up. Then I marked the irregular stems and spelling changes and began categorizing the patterns.
I started with regar. I remembered my stepmother saying “riego las plantas” (“I’m watering the plants”) and wondered why she said riego rather than “rego.” Its conjugation table revealed a simple pattern: the stem reg- changes to rieg- in present and present-subjunctive forms except nosotros and vosotros:
This pattern is extremely common in Spanish. These positions are called the “boot” positions because, when marked on a classroom conjugation table, they form a rough boot shape:

Many other verbs change e to ie in the boot positions: pensar → piensa, entender → entiende, and so on. This and a handful of other Boot stem vowel change patterns account for a large portion of the irregularity in Spanish verbs.
Patterns to the Patterns
Other irregular verbs showed the same basic structure: their stems changed only in specific tenses. For example, conocer uses the stem conozc- for present indicative yo and throughout the present subjunctive:
This Subjunctive stem pattern is extremely common. It appears in forms such as venga, tenga, quepa, and construya.
Key Insight: The Stem Type Determines the Ending
More significantly, Subjunctive stems always take the same endings: -o for present yo and endings beginning with -a- in the present subjunctive, regardless of the verb’s regular type.
This means you don’t need to conjugate the verb regularly and then swap in the subjunctive stem. Instead, you can conjugate the stem: start with veng-, dig-, or another subjunctive stem and add the appropriate ending. Some research suggests that fluent speakers do exactly this.
The same held for every irregular stem pattern I found: an irregular stem’s conjugation is independent of the regular stem type. In the forms where it applies, each stem behaves like a verb of its own type and is conjugated the same way: by adding an ending to the stem.
In this model, what makes a Spanish verb irregular is that it has more than one stem. To conjugate it, you need to know:
- which stem applies to the tense you want to use
- the stem’s type
- which ending that stem type takes for the desired person and tense
With relatively few exceptions, almost all irregularity in Spanish verb conjugation can be explained by seven irregular stem types. Each stem type has a table showing where it applies and which endings it takes. Because each table covers only a subset of forms, I call it a conjugation card. Here they are.
Visualizing the Conjugation Tables
Once I understood these patterns, I found myself lying in bed one day—really—imagining conjugation tables as overlapping cards. I pictured each stem type as a different-colored piece of laminated cardstock bearing a partial conjugation table. Beneath them sat the full table for the regular stem type.
I fired up my favorite AI coding agent and built them. They looked great! Here are some examples:
decir
pedir
tener
You can find a table for virtually any Spanish verb at 7stems.net.
The Algorithm
Together, these seven irregular stem types and a handful of spelling rules gave me an elegant model of most Spanish verb irregularities. In software terms, it builds a conjugation table from layered matrices: start with the regular stem card, layer the irregular cards on top in precedence order, apply spelling rules, and finish with any true exceptions.
I implemented the model as seven-stems-conjugator, a Python library that builds a complete conjugation table for any verb.
In keeping with my goal of compression, each verb requires only a small data structure containing its irregular stems and exceptions. Here are a few examples:
Sample Verb Conjugation Data
| |
Validating the System
Before publishing the system, I needed to know it was correct. So I wrote an automated test that compares my library’s output against 462,348 forms from an independent conjugation library. When discrepancies revealed numerous errors in that library, I used the Real Academia Española as my source of truth.
The Book and Website
Eventually, I decided to self-publish the method and the model-verb conjugation tables as a book. Seven Stems Spanish Verb Conjugation is now available in paperback from Amazon and several online retailers. I’ve also made the book’s core content and searchable conjugation tables available for free on the Seven Stems website.
I never expected to sell a huge number of copies, but it would be gratifying to get the method into the hands of people who would use it. After trying the method, an honest Amazon review would help other learners decide whether it is right for them. I also welcome detailed feedback.