The Agentic Post
Breaking
Gemini’s Multimodal Features, Explained  ·  ChatGPT Custom GPTs, Explained  ·  What Is Constitutional AI? Explained  ·  AI Capex Explained for Investors  ·  AI Startup Valuations: How They Are Set  ·  How to Reskill for an AI Job Market  ·  
Home/AI Models/ChatGPT
OpenAI’s Astra Solved Ten Math Problems

OpenAI’s Astra Solved Ten Math Problems

ChatGPT

OpenAI introduced its next major model, Astra, by publishing ten new, independently verifiable results to decades-old open problems in mathematics and theoretical computer science.

OpenAI introduced its next major model on August 1, 2026, and it did so by publishing ten new solutions to open mathematics and theoretical computer science problems, several of which had gone unsolved for decades. The model, called Astra, is unreleased, but the results are already independently verifiable, because OpenAI published them as formal, machine-checked proofs rather than prose claims.

Quick facts

  • An internal, unreleased version of Astra, OpenAI’s next major model, produced new results on ten long-open problems spanning geometry, coding theory, group theory, complexity theory, and cryptography.
  • OpenAI says the compute needed to find the solutions would cost roughly $2,000 at its Sol API rates.
  • Each result was formalized into a Lean certificate, a machine-checkable proof format, and published on GitHub for anyone to verify independently.
  • Two of the results directly resolve named open problems: Erdős problem 183 (multicolor Ramsey numbers) and Erdős problems 146 and 180 (extremal graph theory).
  • OpenAI explicitly states it takes responsibility for the manuscripts’ correctness while the mathematical arguments themselves were generated by the system, not a human mathematician.

What was actually solved

Per OpenAI’s own publication, the ten results include new upper bounds on sphere-packing density, exponentially improved bounds on binary and spherical error-correcting codes, a construction establishing the existence of non-sofic groups (a central open question in group theory), a disproof of Connes’s rigidity conjecture, new lower bounds on arithmetic circuit complexity for computing the permanent, an exponential parallel repetition theorem for quantum games, polynomial-factor hardness results for the closest vector problem (a foundational post-quantum cryptography question), a resolution of Ehrhart’s volume conjecture, and the two Erdős problems noted above. OpenAI describes all ten as problems that had seen no progress on their main result for at least a decade, and in most cases much longer.

Worth being precise about: this is a separate batch of results from the Erdős unit-distance conjecture disproof OpenAI announced in May 2026, which several secondary outlets have conflated with this release. That earlier result is cited in this announcement as prior work that helped inspire further mathematics, not one of today’s ten.

Why the Lean proofs are the whole point

AI models are well known to produce confident, plausible-sounding claims that turn out to be wrong, which is exactly why the format of this announcement matters as much as its content. A Lean proof is written in a formal language a computer can check mechanically, step by step, with no room for hand-waving. OpenAI published the Lean certificates for all ten results on GitHub, meaning any mathematician, not just OpenAI, can run the verifier and confirm the logic holds. That’s a meaningfully different claim than a benchmark score, which can be gamed, memorized, or cherry-picked. A formally verified proof either checks out or it doesn’t.

How OpenAI is handling attribution

OpenAI’s own writeup addresses a question the mathematical community has been actively debating: who gets credit when an AI system generates a proof. The company points to the Leiden declaration on AI and Mathematics and states plainly that claiming human authorship for a proof generated entirely by an AI system would misrepresent both the system’s contribution and human intellectual work. OpenAI says it helped prepare the manuscripts and formalize the Lean proofs, and takes responsibility for their correctness, while the underlying mathematical arguments came from Astra itself.

Why $2,000 is the detail worth remembering

The cost figure reframes what this milestone actually means. Ten problems that resisted expert mathematicians for a decade or more were solved for roughly the cost of a mid-range laptop in compute. That doesn’t replace mathematicians, choosing which problems matter and interpreting what a result means still requires human judgment, but it does suggest that for a certain class of well-posed, verifiable problems, progress increasingly scales with available compute rather than being bottlenecked purely by the supply of specialists working on them.

Common questions

Is Astra publicly available? No. The math results came from an internal, unreleased version. OpenAI hasn’t given a public release date or a public spec sheet for Astra.

Did AI disprove the Erdős unit-distance conjecture today? No, that result was announced separately in May 2026. Today’s announcement is ten different, new results.

How do I check these proofs myself? OpenAI published the Lean certificates on GitHub; running them through the Lean proof verifier confirms whether each argument holds, independent of OpenAI’s own claims.

Does this mean AI can do all mathematics now? No. These ten problems were selected in areas well suited to systematic search and construction, which is where current AI systems are strongest. Broader mathematical creativity and problem selection still rest with human mathematicians.

Key takeaway

This isn’t evidence of general intelligence, math has clear rules and mechanically checkable answers, which is exactly the kind of problem AI systems are well suited to. But it is a genuine, independently verifiable research contribution, not a benchmark stunt, and it’s a preview of how OpenAI plans to introduce Astra when the model itself eventually ships.

Up Next
How to Connect an AI Agent Using MCP

How to Connect an AI Agent Using MCP

How-To

A step-by-step guide to setting up your first Model Context Protocol connection safely, from finding the right server to testing it before trusting it with real data.

If you’ve read about MCP (see the official specification for the technical details) but haven’t actually connected a tool to an AI assistant yet, this is the practical version: what you need, what the steps actually look like, and where people get stuck.

What you need before you start

  • An AI assistant or client that supports MCP connections (most major desktop AI apps and IDE-integrated coding assistants support this now).
  • An MCP server for whatever you want to connect, a calendar, a project tracker, a database, a file system. Many popular tools already publish an official MCP server.
  • Any credentials that tool requires, an API key, an OAuth login, or a connection string, exactly as you’d need for any other integration.

Step 1: Find the right MCP server

Start with the tool’s own documentation rather than a third-party directory, official servers are maintained by the people who understand the tool’s API best and are more likely to stay current with any breaking changes. Search “[tool name] MCP server” and check for a first-party listing before installing anything from an unfamiliar source.

Step 2: Add the connection in your client

Most clients handle this through a settings or connectors panel rather than requiring you to edit configuration files by hand. You’ll typically provide the server’s address (a URL for a hosted server, or a local command for one running on your own machine) and grant whatever permissions the server requests. Read the requested permissions before approving, an MCP server for your email should be requesting email access, not access to unrelated systems.

Step 3: Authenticate

This step looks like logging into any other third-party app: either an OAuth flow through your browser, or pasting in an API key the tool’s own settings page generated for you. Never paste a password directly into a chat conversation with an AI assistant, even one you trust, legitimate MCP connections authenticate through the tool’s own login flow, not by you typing credentials into the chat itself.

Step 4: Test with something low-stakes first

Before asking your newly connected agent to do anything that sends, deletes, or modifies real data, ask it to do something read-only first: “list my next five calendar events” rather than “reschedule my meetings.” This confirms the connection actually works and lets you see exactly what data the agent can see before you trust it with anything that changes real information.

Step 5: Set expectations about confirmation

Well-designed agent integrations ask for confirmation before anything irreversible: sending an email, deleting a file, making a purchase. If a tool is taking those kinds of actions without ever asking first, that’s worth double-checking in the settings rather than assuming it’s intentional.

Common problems and quick fixes

  • The connection shows as active but the agent says it can’t see anything: check that the permissions granted during authentication actually cover what you’re asking for, most failures here are scope issues, not connection issues.
  • It worked yesterday and stopped today: API keys and OAuth tokens expire; re-authenticating usually resolves this in under a minute.
  • The agent seems to be guessing instead of using the tool: some clients only enable a connected tool per-conversation; check that it’s actually toggled on for your current chat, not just connected account-wide.

Key takeaway

Setting up an MCP connection is genuinely no harder than connecting any other app to your calendar or email, the unfamiliar part is trusting an AI agent with the access once it’s connected. Start read-only, confirm the agent asks before taking irreversible actions, and expand from there.