
Every founder I talk to is fighting the wrong war.
They're arguing about which model wins. GPT versus Gemini versus Claude versus whatever drops next month. Meanwhile a team at Tufts University proved something bigger: the real fight isn't which model you pick. It's how the system gets built in the first place.
The Study Nobody's Talking About
In April, researchers led by Matthias Scheutz at Tufts published a neuro-symbolic AI system built to cut energy use by up to 100 times compared to standard approaches, according to ScienceDaily's coverage of the study. Training required only 1% of the energy. Running the system used 5%.
Here's the part worth stopping on: it wasn't a tradeoff. The efficient system was also better.
On a Tower of Hanoi puzzle test, the neuro-symbolic system hit 95% accuracy. The standard model managed 34%. On harder, unfamiliar versions of the puzzle, the hybrid system still succeeded 78% of the time. The conventional model failed completely. Training time dropped from more than 36 hours to 34 minutes.
Read those numbers twice. Less energy. Less time. Better results. This combination almost never happens in engineering. Usually one comes at the expense of another. This time nothing got traded away.
What "Neuro-Symbolic" Means
Neuro-symbolic AI blends two approaches most teams treat as separate camps. Neural networks handle pattern recognition, the piece modern AI is famous for. Symbolic reasoning handles structured, rule-based logic, the piece older AI systems used before neural networks took over.
Scheutz's team combined both. The neural half learns from data the way you'd expect. The symbolic half applies rules cutting down on trial and error. Instead of a model brute-forcing its way to an answer by processing enormous amounts of data, the system reasons through a problem the way a person does: break it into steps, apply logic, skip the parts already known not to work.
This is the whole trick. Stop paying the model to rediscover logic it should have been told upfront.
Why This Beats the Model Wars
AI systems consumed more than 10% of U.S. electricity in 2024, and demand is projected to double by 2030, according to the same ScienceDaily report. This isn't a rounding error. This is an infrastructure problem, and it's why every hyperscaler is suddenly in the energy business, cutting power deals and building its own generation capacity.
Now zoom out from the power grid to your business. Every AI feature you ship carries a cost curve behind it, and right now most of the industry is trying to fix this cost curve by throwing more compute at the problem. Bigger models. More GPUs. More data centers. It's the same instinct as fixing a slow website by buying a bigger server instead of asking why the code runs slow.
The Tufts result offers a different answer. It says the cost problem isn't a hardware problem. It's an architecture problem. Build the system smarter and the energy bill takes care of itself.

The Builder's Version of This Lesson
I think about this every time I make a technical decision on BAT, the feedback tool I built at Step Up To BAT. It would be easy to bolt AI onto every feature because AI gets the attention right now. It's also the most expensive way to solve most problems.
The teams who win the next few years of this AI cycle won't be the ones with access to the biggest model. Model access is becoming a commodity. Every serious AI company offers roughly the same capability at roughly the same price point, and the gap between them keeps shrinking. What won't shrink is the gap between a team who understands the problem well enough to design a lean system and a team who wraps a general-purpose model around everything and hopes for the best.
This is an old lesson wearing a new coat. Good engineers have always known the fastest code isn't the code running on the biggest machine. It's the code doing the least unnecessary work. AI didn't change this principle. It raised the stakes, because now unnecessary work comes with a literal power bill attached.
The Pattern Behind Every AI Cost Story This Year
Look at the last twelve months of AI headlines and a pattern emerges. DeepSeek trained a competitive model for a fraction of what OpenAI and Anthropic spent. Google's TurboQuant cut inference costs by roughly 6x. Now Tufts cuts energy use by up to 100x on a whole class of robotics and planning tasks. None of these breakthroughs came from a bigger data center. They came from someone asking whether the expensive approach was even necessary in the first place.
Compare this to how most companies are building right now. Walk into any enterprise AI meeting and the conversation is almost always about which vendor, which model, which context window. Rarely does anyone ask whether the task needs a language model at all. A support ticket following the same three-step resolution path every time doesn't need an LLM guessing its way through the conversation. It needs a decision tree with an LLM handling the one step requiring real language understanding.
I've watched this play out inside HR tech specifically, the world I know best. Vendors are racing to bolt AI onto every feature: AI-written performance reviews, AI-summarized feedback, AI-predicted flight risk. Some of it is genuinely useful. A lot of it is a language model doing a job a spreadsheet formula would have handled, dressed up to justify a subscription price increase. The Tufts researchers didn't get better results by adding more AI. They got better results by adding less of it, and being precise about where the remaining piece went.
What I'd Tell a Small Team Right Now
If you're an indie builder or a small team without a hyperscaler's budget, this study is good news, not a footnote. You were never going to out-compute OpenAI or Google. You don't need to. The Tufts result proves architecture beats brute force, and architecture is a place where a sharp small team competes fine.
Before reaching for a bigger model, ask what part of the problem is already structured and rule-based. Dates, math, business logic, anything with a clear right answer, doesn't need a neural network guessing at it. Save the model for the part of the problem requiring real judgment or pattern recognition. Everything else is a rule worth writing down instead of prompting for.
Nothing here breaks new ground. It's the same discipline good software architecture has always demanded. The industry forgot it for a minute because letting the model handle everything felt easier.
The Real Question
The industry keeps asking which model will win. Wrong question. The teams who matter in five years won't be the ones who picked the right model. They'll be the ones who figured out how little model they truly needed.
What's the last AI feature you shipped which would have worked better as a rule instead of a prompt?