Skip to main content
Back to insights

September 9, 2026

OpenAI's Navier-Stokes AI Agent Swarm: What It Shows

OpenAI used ~10,000 AI agents to produce a claimed Navier-Stokes proof in 88 hours. Here is what the swarm actually shows, the caveats, and the builder's lesson.

By Tran Tien Van9 min read

Article focus

OpenAI says a swarm of roughly 10,000 AI agents produced a claimed proof related to the Navier-Stokes equations in 88 hours. The result is unverified and partial, but the engineering, and its verification gap, is worth a close look.

OpenAI says it aimed a swarm of about 10,000 AI agents at a 90-year-old maths problem and produced a proof in 88 hours. The headline is dramatic, and also more complicated than it sounds. The result is unverified, partial, and contested, yet the engineering underneath is a genuine milestone. This piece separates what actually happened from the headline, and draws the lesson that matters if you build with agents.

Key Takeaways

  • OpenAI said a swarm of roughly 10,000 AI agents, on an unreleased internal model, produced a claimed Navier-Stokes proof in about 88 hours.
  • The run exchanged nearly 3 million messages and used about 130 billion output tokens, which at OpenAI's own pricing implies a cost near $10 million.
  • The result is unverified: it's unpublished, and the Clay Mathematics Institute still lists Navier-Stokes as unsolved. It resolves two of four required statements and doesn't qualify for the prize.
  • A dispute over timing and credit is unresolved, involving concurrent work by other mathematicians; we report it neutrally and take no side.
  • The builder's lesson: a big agent swarm can now generate a candidate result fast, but verifying it is the real bottleneck, which is where evaluation and reproducibility come in.

What Is an AI Agent Swarm, and What Did OpenAI Do?

An AI agent swarm is a large group of AI agents working the same problem in parallel and coordinating their findings. OpenAI just used one, about 10,000 agents over 88 hours, to produce a claimed proof related to the Navier-Stokes equations. The run exchanged nearly 3 million messages and, by OpenAI's own pricing, cost an estimated $10 million. The result is unverified and resolves only part of the problem, but coordinating a swarm at that scale is the real story.

Here's what OpenAI reported, as covered by the BBC. Late in August it began training a new internal model that proved unusually strong at maths, one it calls significantly more capable than GPT-6 Astra and hasn't released. After hearing rumors on September 1 that progress had been made on Millennium Prize problems, it pointed roughly 10,000 agents at the Navier-Stokes existence and smoothness problem, the question of whether the equations governing fluid motion always stay well-behaved. About 88 hours later, on September 5, it had a candidate proof.

The scale is the part worth pausing on. This wasn't one clever model answering in a flash. It was ten thousand agents exchanging millions of messages, exploring branches, and assembling a result over days, the kind of large-scale coordination we've written about in multi-agent orchestration. Whatever you make of the claim, the swarm mechanics are a real step up in what these systems can attempt.

The Navier-Stokes Run by the Numbers

The figures are the clearest way to grasp both the ambition and the cost. Here they are as OpenAI reported them.

MetricFigure (as reported by OpenAI)
Agents in the swarm~10,000, coordinated in parallel
Wall-clock time~88 hours (to September 5)
Messages exchangedNearly 3 million
Output tokens used~130 billion (on Navier-Stokes alone)
Estimated cost~$10 million (at OpenAI's own pricing)
Prize statements resolved2 of 4 required by the Millennium Prize
Prize claimOpenAI says it will not claim the $1M prize

Read the last two rows against the first five. Enormous resources went in, and what came out is real progress by OpenAI's account, but explicitly not a prize-qualifying solution. That gap between effort and formal status is the whole story in miniature, and it's the part the headline flattens away.

What Can an AI Agent Swarm Actually Do?

Attempt problems that are too big for a single model pass, by trading breadth and compute for time. That's a genuine new capability, and it comes with an equally genuine price tag.

The mechanism is brute-force exploration made coherent. Thousands of agents can pursue different lines at once, share partial results, discard dead ends, and stitch promising fragments together, which is how a swarm can cover ground no single run could. On a search-heavy problem like a proof, that parallel breadth is exactly what helps. It's the difference between one researcher and a coordinated department that never sleeps.

Broken down, a swarm this size leans on a few capabilities that a single model pass doesn't have:

  • Parallel breadth. Ten thousand agents can explore ten thousand directions at once, so rare promising paths get found faster.
  • Shared memory. The nearly 3 million messages are how agents pass partial results around, so one agent's dead end becomes another's shortcut.
  • Persistence. The swarm runs for days without tiring, revisiting and refining in a way a single session rarely sustains.
  • Aggregation. Fragments from many agents get assembled into one candidate result, which is the coordination trick that makes the scale useful rather than just noisy.

That last point is the hard one, and the real engineering. Ten thousand agents producing ten thousand disconnected notes is chaos, not progress. Turning that into a single coherent argument is where the orchestration work lives, and it's the part most teams underestimate when they imagine "just adding more agents."

But the economics are sobering, and worth internalizing before anyone dreams of copying the approach. Nearly 3 million messages and 130 billion output tokens for one problem imply a cost around $10 million, for a result that isn't yet verified. That's a price only a frontier lab pays, and only for a trophy problem. For ordinary work, the lesson isn't "swarm everything," it's that swarm scale buys you attempts at otherwise-impossible tasks at a cost that has to be justified, the kind of trade-off we model in AI agent development cost planning.

Why the Result Isn't "Solved" Yet

Because a claim is not a proof until someone checks it, and no one independent has. This is the most important caveat, and it's easy to lose under a splashy headline.

Three facts keep the result in the "claimed" column for now:

  • It's unverified and unpublished. The proof hasn't been through peer review or independent formal verification, and the Clay Mathematics Institute still lists Navier-Stokes among its unsolved problems.
  • It's partial. OpenAI says it resolved two of the four statements the prize requires, not the whole problem.
  • It targets a version that doesn't qualify. By OpenAI's own account, the result does not meet the prize's conditions, which is why the company says it won't claim the $1 million.

The honest read: none of that makes the work worthless; substantial progress on Navier-Stokes would be remarkable even in part. But in mathematics the gold standard is verification, not announcement. A formally checked proof, like the Lean-verified results other researchers have released in this area, carries a certainty a press release cannot. Until OpenAI's proof is published and checked, the correct posture is interested skepticism.

It's worth being clear about why verification is so much harder than generation here. Generating a proof means producing a plausible argument. Checking one means confirming every step is airtight. A single flawed line can sink the whole thing, no matter how impressive the rest looks. That asymmetry is why maths has peer review and formal checkers in the first place. And it's why a swarm that can generate at superhuman speed doesn't automatically shorten the part that actually settles the question.

The same asymmetry shows up in ordinary software, just with lower stakes. An agent can write a function in seconds. Proving it's correct under all inputs takes tests, types, and review that the writing never needed. Scale the agent up and you scale the writing, not the checking. So the more capable your generators get, the more your verification becomes the bottleneck, not a formality.

A Dispute Over Timing and Credit

There's also an unresolved controversy around the announcement, and it deserves a careful, neutral mention rather than a verdict. We report what each side says and leave the facts to be established.

Mathematician Tristan Buckmaster of New York University, who had been working toward solutions on related problems with a co-author employed by Anthropic, raised public concerns about the timing of OpenAI's work and how information about their progress may have reached OpenAI. OpenAI, for its part, said it did not see their work through any means until it was released publicly, that no user data was accessed, and that the two efforts produced significantly different proofs. Both are contested claims, not established facts.

A note on our own position: the co-author involved works at Anthropic, which also makes the Claude models we sometimes use, so we have a potential conflict of interest here. We've therefore kept this section strictly to what each party has publicly stated, taken no side, and characterized the allegations as unproven, because that's what they are. The dispute is real and worth knowing about; adjudicating it is for the parties and, ultimately, the mathematical record, not for us and not for a blog post written days after the fact.

What an AI Agent Swarm Means for Your Team

That the hard part of agentic AI is moving from generation to verification, and this story is a vivid illustration. A swarm produced a plausible proof in days; establishing whether it's correct is the slower, harder, still-open task.

That reframes where your effort should go:

  • Treat swarm output as a candidate, not an answer. More agents and more compute produce more plausible results, not more verified ones, so build the checking step deliberately, as we argue in AI agent evaluation.
  • Invest in verification you can trust. In maths that's formal proof checkers; in software it's tests, types, and review. The equivalent for your domain is what turns an agent's guess into something you can ship.
  • Make results reproducible. A one-off swarm run nobody can rerun or audit is hard to trust, which is exactly the discipline behind agent reproducibility.
  • Watch the unit economics. A $10 million run for one answer is a reminder that swarm scale is powerful and expensive, so reserve it for problems where nothing cheaper works.

There's a scale caveat worth stating plainly. Almost no team should run a 10,000-agent, $10 million job, and that's fine, because the lesson isn't the size. It's the shape. Even a modest swarm of a dozen agents inherits the same problem: more generation, and a verification step that doesn't scale for free. So the discipline applies whether you run ten agents or ten thousand. Get the checking right at small scale, and scaling up becomes a budget decision rather than a leap of faith.

The honest read: the impressive thing here isn't that AI "solved" a famous problem, because by the strict standard it hasn't yet. The impressive thing is that generating a serious attempt at one is now an engineering exercise you can buy with enough agents and compute. That shifts the scarce resource from generation to verification, and the teams that build strong verification will get the most out of the swarm era.

How Van Data Team Helps Teams Build Verifiable Agents

We help teams design agent systems where the output can actually be trusted, because a result you can't verify isn't a result you can ship. That means pairing generation with evaluation, making runs reproducible, and being honest about cost per verified outcome rather than per attempt.

If a story like this has your team wondering whether to scale up multi-agent runs, that's exactly the question we help answer. We start by finding the verification step for each workload, then build the swarm around it, not the other way round. Our work on AI agent evaluation and multi-agent orchestration turns the excitement of a headline swarm into a sober plan for your own workloads. The goal is simple: use as many agents as the problem needs, and never trust their output further than you can verify it.

Article FAQ

Questions readers usually ask next.

These short answers clarify the practical follow-up questions that often come after the main article.

Need a similar system?

If this article maps to a workflow your team already operates, the next step is usually a scoped review of the system, constraints, and rollout path.

Book your free workflow review here.