Why the Best AI Systems Will Think in Public and Prove in Private
Hatched by Kunal Grover
Jul 23, 2026
9 min read
1 views
86%
The strange new benchmark is not intelligence, it is choreography
What if the real test of an AI system is not whether it can answer a question, but whether it can change its mind well?
That sounds almost backwards. We usually imagine intelligence as the ability to store facts, draw conclusions, and produce polished answers. But in hard real world tasks, and especially in mathematics, the decisive advantage may come from something subtler: the ability to alternate between thinking and doing, between internal reasoning and external action, between private conjecture and public verification.
This is a different picture of intelligence. Instead of a model as a static oracle, imagine it as an agent that moves through uncertainty in cycles. It thinks a little, acts on the world, observes what happened, revises its plan, and thinks again. In one domain this looks like shopping, navigating, or solving a text based game. In another, it looks like inventing a proof, testing a lemma, or discovering that a seemingly plausible path is blocked by a hidden obstruction.
The deeper idea is simple but powerful: reasoning without action is blind, and action without reasoning is reckless. The most capable systems will not maximize either one alone. They will build a tight loop between the two.
Why “thinking harder” is not enough
There is a familiar fantasy in AI: if we just scale up the model enough, it will eventually become a universal problem solver. More parameters, more data, more compute, more latent knowledge. Yet many real tasks refuse to yield to sheer internal completion. They contain uncertainty, missing information, adversarial constraints, or just too many branches for a single pass through memory.
That is why interleaving reasoning and action matters. When a system can emit a thought, take an action, observe the result, and update its state, it stops pretending that intelligence happens only inside a sealed box. It begins to operate more like a scientist or engineer. A scientist does not just reason from first principles in the abstract. She runs experiments, checks results, notices anomalies, and adjusts the hypothesis. An engineer does not just imagine a machine. He prototypes, measures, repairs, and iterates.
This matters even more when the environment is partially hidden. If the model is disconnected from the external world, its internal representations can drift from reality. It may confidently follow a line of thought that should have been corrected by a single lookup, a single test, or a single counterexample. The problem is not lack of eloquence. It is lack of contact.
A strong mind that cannot consult reality is still brittle.
That brittleness shows up everywhere. In shopping, a model may infer that a product matches a user need, only to discover a hidden constraint in the actual listing. In game like environments, it may plan several steps ahead and then discover that the move sequence is impossible. In research, it may produce a seductive proof sketch that collapses under one missing lemma.
The important shift is that action is not just execution. Action is a way of thinking with the world.
The deepest form of reasoning is revision
We often praise reasoning as if its highest form were elegance. But in hard tasks, the highest form of reasoning is often revision under constraint. The point is not to generate one grand conclusion. The point is to preserve progress while remaining corrigible.
This is where interleaving becomes more than an engineering trick. It reveals a mental model of intelligence as a closed loop rather than a straight line. In a closed loop, each thought is provisional. Each action is a probe. Each observation is a source of information that can confirm, refine, or destroy the current plan.
Mathematics makes this especially vivid. A proof is not merely a string of deductions. It is a search through a landscape of possibilities, many of which are attractive but false. A human mathematician rarely proceeds by pure deduction from axioms alone. Instead, they try examples, test edge cases, look for invariants, isolate subproblems, and ask whether a candidate theorem survives contact with counterexample.
Now imagine an AI assistant helping with a hard open problem. Its value does not come from producing one final answer in a single burst. Its value comes from being able to:
- propose a candidate approach,
- derive consequences,
- query external knowledge or a theorem database,
- notice inconsistencies,
- backtrack gracefully,
- and assemble a more robust line of attack.
This is why some research benchmarks are so interesting. When the target is not a standard question but a long standing mathematical challenge, the evaluation is not simply whether the system can imitate proofs. It is whether it can participate in the messy process by which proofs are actually found.
The benchmark idea points toward a broader truth: AI progress on research problems will not be measured by fluent final answers alone. It will be measured by the quality of its search process.
A new mental model: the proof engine and the field operator
The most useful way to think about this synthesis is to split intelligence into two cooperating roles.
1. The proof engine
This is the internal side. It generates hypotheses, chains implications, keeps track of local consistency, and compresses complex patterns into candidate structures. It is the part that can reason over abstractions without acting.
2. The field operator
This is the external side. It queries databases, runs tools, inspects environments, checks examples, and collects evidence. It is the part that refuses to trust itself too much.
Human experts constantly switch between these modes, often so quickly that the switch becomes invisible. A topologist imagines a structure, checks an invariant, tweaks the representation, and returns to abstraction. A shopper compares products, notices a missing feature, and updates the search strategy. A programmer hypothesizes a bug, inspects logs, runs tests, and refactors.
The breakthrough is to treat that switching as a first class capability rather than a workaround. Once you do that, a new design principle emerges:
The best systems will not maximize reasoning depth or action breadth separately. They will optimize the latency between them.
That phrase, latency between thought and correction, may be one of the most important metrics for the next generation of AI. When latency is high, errors compound. When latency is low, the system can self correct before it drifts too far. In practical terms, this means a system that notices a mismatch quickly can outperform a system that reasons more beautifully but corrects itself too late.
This is true in math, software, search, science, and any domain where reality pushes back.
Why pure scale hits a wall, and what comes next
The temptation is to believe that bigger models will simply absorb more of the world and therefore need less interaction. But some tasks are not limited by stored knowledge alone. They are limited by the need to discover which knowledge matters right now.
Consider a legal analogy. A brilliant lawyer who speaks in uninterrupted monologues is not always the best lawyer. Often the best lawyer is the one who asks the right follow up questions, requests the right documents, notices the mismatch in dates, and revises the case theory when the evidence changes. The excellence lies in the ability to move between argument and investigation.
Or consider debugging. A developer may have a strong intuition about a bug, but the bug will not reveal itself to intuition alone. They read the stack trace, inspect the state, run a failing test, and isolate the cause. The act of checking is not secondary to the act of reasoning. It is part of reasoning.
Mathematical research is the same in spirit, though higher in abstraction. A conjecture can be alluring because it organizes a lot of patterns. Yet a single counterexample can invalidate it. A theorem can appear tractable until one realizes an invariant is not preserved. A proof can seem complete until a hidden condition breaks an entire sub argument. The research process is therefore not a ladder but a conversation with constraints.
That is why a benchmark built around difficult research problems is more than a leaderboard. It is a demand that AI systems become better at the epistemology of uncertainty. They must learn not just what to believe, but when to ask, when to test, when to backtrack, and when to persist.
The actionable insight: design for loops, not leaps
If there is one practical lesson here, it is this: whenever a task is uncertain, do not ask only how to generate a better answer. Ask how to build a better feedback loop.
This applies to AI systems, but also to human work.
For builders of AI systems
Design agents that can:
- alternate between internal deliberation and tool use,
- keep a visible working memory of hypotheses and failures,
- record why a plan changed, not just what the final answer was,
- and prefer rapid small checks over delayed grand conclusions.
A system that can say, “I was wrong because this assumption failed after querying the environment,” is often more valuable than one that only says, “Here is the answer.” The first system is learning. The second may just be performing.
For researchers and knowledge workers
Adopt a similar loop yourself:
- formulate a tentative model,
- test it against one concrete example,
- seek one external source of correction,
- then revise the model before expanding it.
This habit prevents the most common intellectual failure mode, which is spending too long elaborating a theory before checking whether reality supports it. A tiny probe can save hours of elaborate error.
For organizations
Measure how fast teams can detect and repair mistaken assumptions. Many organizations reward confident planning and polished presentation. Fewer reward quick correction. Yet in ambiguous environments, the latter is often the true source of resilience.
A team that can cheaply update its beliefs will beat a team that can produce more sophisticated but less responsive plans.
Key Takeaways
- Intelligence is increasingly a loop, not a monologue. The best systems will cycle between reasoning and action instead of treating them as separate phases.
- Action is a form of evidence. Querying a database, running a test, or exploring an environment is not just execution, it is a way of improving thought.
- Revision is a core cognitive skill. In hard tasks, the ability to update quickly often matters more than the ability to speak elegantly or reason in one pass.
- Research benchmarks should test process, not just answers. For math and other open ended domains, progress depends on search quality, correction speed, and robustness under uncertainty.
- Build for low latency between belief and correction. Whether you are designing AI, doing research, or managing a team, shorten the time between an assumption and the evidence that challenges it.
The future belongs to systems that can be wrong productively
The oldest image of intelligence is the oracle: silent, self contained, and confident. But the more interesting future belongs to something else entirely, a system that can be interrupted by reality and improved by it.
That is why the deepest connection between reasoning and acting is not efficiency. It is humility. A system that can think in public, act in the world, and revise itself in light of evidence is not merely more capable. It is more trustworthy.
And perhaps that is the real threshold. The next great leap in AI will not come from systems that never make mistakes. It will come from systems that know how to notice mistakes early, recover gracefully, and keep moving. In mathematics, in decision making, and in life, progress is rarely the absence of error. It is the art of turning error into a better loop.
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 🐣