Why the Smartest AI May Need a Walk, a Wearable, and a Search Tree
Hatched by Mark Erdmann
May 10, 2026
10 min read
5 views
84%
The strange pairing that reveals the real bottleneck
What do a glowing AI wearable and a benchmark about program search have in common? At first glance, almost nothing. One is about ambient intelligence, the feeling that your devices can follow you through the day and remember what happened. The other is about whether a model can solve problems by exploring thousands of symbolic possibilities and checking them one by one.
But together they point to a deeper question that is becoming central to AI: what kind of intelligence actually matters in the real world? Not the abstract kind that wins demos. Not the theatrical kind that talks like a genius. The real question is whether intelligence is best understood as a single act of reasoning, or as a coordinated system of intuition, memory, search, and verification.
That distinction matters because it changes what we should expect from AI, what we should build, and even what we should trust. The most interesting systems may not “think” the way people imagine. They may instead do something more practical and more powerful: generate plausible candidates quickly, then test them ruthlessly. In that sense, the future of AI may look less like a mind and more like a well designed cognitive workflow.
The old fantasy: one model, one magical leap
A lot of AI hype still depends on a simple story. The model sees the problem, reasons through it, and produces the answer. That story is appealing because it makes intelligence feel unified and clean. It also maps nicely onto how humans like to talk about genius: one brilliant insight, one elegant solution, one flash of understanding.
But many hard problems do not work that way. They resist clean leaps. They punish overconfidence. They require many partial guesses, course corrections, and checks. A programmer debugging a system does not reason perfectly from first principles. A mathematician often does not either. A chess player does not search every possibility in a vacuum. They rely on intuition to narrow the space, then use verification to avoid self deception.
That is why the recent discussion around program solving is so revealing. A model can be surprisingly useful not because it is performing flawless deduction, but because it has enough shape sensing ability to propose promising candidates. It behaves a little like a perceptual system: it recognizes patterns, suggests next moves, and filters chaos. Then a symbolic checker, or an execution engine, or some other exact mechanism tells you what actually works.
This is an important shift. The central problem is not whether the model can replace reasoning wholesale. The central problem is whether it can help us search better.
The future may belong less to models that “know the answer” and more to systems that know where to look.
Intuition is not reasoning, and that is the point
It is tempting to treat intuition as a lesser form of reasoning. That is a mistake. Intuition is not a defective version of logic. It is a different mode of cognition entirely: fast, approximate, and compressed. It handles complexity by collapsing enormous spaces into a few promising directions.
Think about driving through an unfamiliar city. You do not solve traffic like a theorem. You notice patterns: the road seems clogged, that turn looks bad, the route with the green light is more plausible. You are not reasoning step by step through all possible states of the map. You are using intuition to stay afloat in a space too large for explicit computation.
The same is true in search problems. If a problem has millions of possible branches, the bottleneck is not checking each branch. The bottleneck is deciding which branches deserve to exist in the first place. That is where a language model can be useful. It can act as a proposal engine. It can generate candidates with enough structure that a checker can do the decisive work.
This is why the distinction between intuition and reasoning is not just philosophical. It is architectural. If you treat the model as a reasoner, you may overtrust its answers and underbuild the verification layer. If you treat it as intuition, you design an ensemble where approximation and exactness collaborate.
That collaboration is probably what many people miss when they ask whether a benchmark has been “solved.” A benchmark can be solved by a system that is not doing what people imagine intelligence to be doing. It may be solving the problem by being a very good guide through a difficult space, not by becoming a miniature philosopher.
The real superpower: compressing search without pretending to eliminate it
There is a seductive myth in AI that progress means eliminating search. If the model is good enough, no brute force should be needed. In practice, that is often backwards. The best systems do not necessarily eliminate search. They make search affordable.
This is true in chess engines, theorem proving, code generation, and many forms of planning. The model need not know the answer in one shot. It only needs to drastically improve the quality of the first few thousand guesses. That kind of guidance can turn impossible search into tractable search.
Imagine trying to find a key in a warehouse full of boxes. A random search is hopeless. A weak intuition says “try the north wall.” A strong intuition says “the keys are usually near where people enter.” Better still is a system that can combine intuition with exact constraints, like a camera, an inventory map, and a process for checking each candidate quickly. The result is not magic. It is search compression.
This is the deeper meaning of neurosymbolic systems. They are not a compromise between thinking and not thinking. They are a recognition that many hard tasks need two layers:
- A heuristic layer that proposes promising moves.
- A verifier layer that confirms which moves are actually valid.
The first layer is where a model’s statistical intuition shines. The second layer is where symbolic precision wins. The important insight is that these are not competitors. They are complements.
That complementarity also changes how we should judge performance. If a system needs thousands of samples, the relevant question is not “Is that too many?” The relevant question is, “How much did the heuristic reduce the search space compared to blind exploration?” A thousand samples might be a failure if the space is tiny. It might be a breakthrough if the original space was astronomically large.
Why the wearable metaphor matters more than it seems
Now return to the AI wearable. A wearable is not just a gadget. It is a clue about where AI may become most useful: not in occasional dramatic exchanges, but in continuous context.
A wearable can observe your day as it unfolds. It can remember who you talked to, what you discussed on a walk, what you meant to follow up on later, what patterns you repeat, and what decisions keep resurfacing. That is not the same as “being smart” in the abstract. It is a different kind of cognitive advantage: persistent, embodied memory.
This matters because human intelligence is not just about producing correct answers. It is about accumulating context over time. We remember half formed ideas, return to them later, and use them to guide attention. We do not just solve problems. We curate the next problem we will be able to solve.
A wearable AI suggests a future in which the machine is not only a respondent but a companion to cognition. It becomes a passive structure around thought, helping you preserve context, notice patterns, and revisit unfinished threads. In that sense, it does for human life what a search heuristic does for a problem space. It narrows what matters.
The connection to discrete search is subtle but powerful. Both systems reduce the cost of cognitive overload. One does it at the level of programs and benchmarks. The other does it at the level of daily life and memory. In both cases, the aim is not to replace judgment. It is to make judgment possible by reducing entropy.
A useful framework: intuition, verification, and retention
If we want a better mental model for AI, we should stop asking only whether a model reasons. Instead, ask which of three jobs it performs well:
- Intuition: Can it generate promising possibilities quickly?
- Verification: Can an exact mechanism check whether those possibilities are correct?
- Retention: Can it preserve context across time so the search does not restart from zero every day?
This trio is useful because it maps both to machines and to people. Humans use intuition when they are skimming a complex space. They use verification when they work through a proof or test an idea. They use retention when they remember what happened yesterday and carry forward unfinished thoughts.
Many AI debates get stuck because they flatten these layers into one. A model that is good at intuition may be unfairly praised as a reasoner. A model that relies on verification may be dismissed as merely brute force. A wearable system that helps remember conversations may be treated as trivial, even though memory is often the hidden substrate of intelligence.
Once you separate the layers, the design space becomes clearer. You can build systems that excel at one layer and borrow the rest. That is how progress usually happens in practice. Not by a single monolithic leap, but by careful composition.
Intelligence is not one thing. It is a pipeline: suggest, test, remember, refine.
The human lesson: we already think this way
The most interesting part of all this is that humans already operate with this architecture, even if we rarely name it.
When you are writing, you do not begin with perfect logic. You draft a sentence, feel whether it has the right shape, and revise. When you solve a coding problem, you sketch hypotheses, test them, and keep the ones that survive. When you make a decision, you often rely on a felt sense of direction, then seek evidence to validate it. This is not a bug in human cognition. It is the design.
The mistake is to imagine that reasoning means eliminating intuition. In reality, reasoning often depends on intuition to stay tractable. If you had to explicitly reason through every possibility in a complex environment, you would never get anything done. You need a fast approximation layer just to select the tiny fraction of possibilities worth checking.
That suggests a more honest ambition for AI. We do not need every system to imitate a philosopher. We need systems that can participate in the same division of labor that makes human thought effective. A model that is good at intuition can save us time. A checker can save us from error. A wearable can save us from forgetting. Together, they can create a cognitive ecosystem that is stronger than any single component.
Key Takeaways
-
Do not confuse intuition with reasoning. Intuition narrows the search space. Reasoning verifies and refines.
-
The best AI systems may be search compressors, not answer machines. Their value lies in making hard problems tractable.
-
Verification is not a fallback, it is the core of reliability. The more exact the checker, the more useful the heuristic can be.
-
Memory is an underappreciated form of intelligence. Wearable AI points toward systems that preserve context, not just produce responses.
-
Think in pipelines, not personalities. Ask whether a system helps you propose, test, and retain, instead of asking whether it feels smart.
The deeper reframe
The temptation in AI is to ask when machines will start thinking like us. That question sounds profound, but it may be the wrong one. A more revealing question is this: how do intelligent systems, human or machine, divide labor between intuition, verification, and memory?
Once you ask it that way, the distance between a wearable that remembers your day and a model that samples thousands of programs starts to shrink. Both are ways of reducing cognitive overload. Both help navigate spaces too large for pure deliberation. Both reveal that intelligence is not a single magical act, but a choreography of approximations and checks.
That reframing is liberating. It means the goal is not to build machines that always “know.” The goal is to build systems that know how to look, how to check, and how to remember. And once you see intelligence that way, you realize the future may feel less like a talking oracle and more like a well tuned mind extended across tools, time, and attention.
Sources
Hatch New Ideas with Glasp AI 🐣
Glasp AI allows you to hatch new ideas based on your curated content. Let's curate and create with Glasp AI :)
Start Hatching 🐣