AI reasoning capabilities crossed several concrete milestones in May 2026, from an OpenAI model disproving an 80-year-old geometry conjecture to new architectures that cut chain-of-thought inference costs while preserving accuracy. Alongside those research gains, practitioners are documenting where probabilistic reasoning fails in production — and building hybrid systems to compensate.
OpenAI Model Disproves an 80-Year-Old Math Conjecture
An internal OpenAI reasoning model disproved the planar unit distance conjecture in May 2026 — a problem first posed by mathematician Paul Erdős in 1946 that had resisted resolution for nearly eight decades. The result provides an infinite family of point configurations that yield a polynomial improvement over the “square grid” constructions previously believed to be optimal, and the proof has been independently verified by a group of external mathematicians who also published a companion paper.
According to OpenAI’s announcement, the proof came from a general-purpose reasoning model, not a system trained specifically for mathematics or scaffolded to search through proof strategies. The model was evaluated on a collection of Erdős problems as part of a broader effort to test whether advanced models can contribute to frontier research — and in this case, it did.
Noga Alon, a leading combinatorialist at Princeton, described the unit distance problem as “one of Erdős’ favorite problems.” The 2005 reference volume Research Problems in Discrete Geometry by Brass, Moser, and Pach called it “possibly the best known (and simplest to explain) problem in combinatorial geometry.” Erdős had offered a monetary prize for its resolution.
The significance here is methodological as much as mathematical: a model with no domain-specific training produced a novel, verified proof on an open problem in combinatorics — a result that goes beyond benchmark performance into actual scientific contribution.
TTE-Flash Cuts Chain-of-Thought Inference Cost at Constant Compute
Researchers published TTE-Flash in May 2026, a method that replaces explicit chain-of-thought traces in multimodal embedding with latent “think tokens” — achieving reasoning-aware representations at constant inference cost rather than scaling cost with reasoning length.
According to the arXiv paper (arXiv:2605.16638), prior work on Universal Multimodal Embedding showed that chain-of-thought reasoning significantly improves representation quality, but the computational overhead of generating explicit CoT traces is “often prohibitive” in practice. TTE-Flash treats think tokens as latent variables optimized using CoT generation loss, while embedding tokens are trained with contrastive loss — two dependent tasks sharing a single LLM backbone.
The flagship model, TTE-Flash-2B, outperforms its explicit-CoT counterpart on the MMEB-v2 benchmark. Zero-shot evaluation across 15 video datasets revealed a scaling behavior: performance improves as the number of think tokens increases, motivating a pilot study of adaptive think budget allocation based on task complexity.
The architectural contribution matters beyond multimodal search. If latent reasoning tokens can match or exceed explicit CoT at fixed compute, the tradeoff between reasoning depth and inference speed — a persistent constraint in deploying reasoning-heavy models — becomes significantly more manageable.
Recursive Language Models Win Long-Context Benchmarks
Recursive Language Models (RLMs) are winning long-context benchmarks in 2026 by solving a specific failure mode in standard agentic designs: context bloat from copying rather than referencing intermediate results.
Avishek Biswas, writing for Towards Data Science, explains the core insight: RLMs pass context by reference rather than replicating it across recursive calls. Standard agentic harnesses — including ReAct, CodeAct, and vanilla subagent designs — degrade on complex nested tasks because intermediate outputs are serialized and re-injected into the prompt, compounding token usage and introducing noise.
Biswas illustrates the failure with a concrete test: asking a model to generate 50 fruit names, count the letter “R” in each, and return a dictionary. Standard agents handle this adequately. The harder variant — doing the same across three categories (fruits, countries, animals) and returning a nested dictionary — exposes where non-recursive architectures collapse. RLMs handle the nested structure by maintaining references to sub-results rather than flattening them into the context window.
For a video walkthrough of the implementation, Biswas published a 50-minute tutorial covering the architecture in depth. The practical implication is that long-context reasoning tasks — multi-step analysis, hierarchical planning, nested data extraction — benefit from architectural choices at the harness level, not just model scale.
Hybrid Architecture Addresses LLM Failure Modes in Analytics
In production manufacturing analytics, LLMs consistently failed at deterministic data tasks in 2026 — skipping rows, applying wrong filters, and generating plausible-but-fabricated outputs — leading practitioners to adopt hybrid architectures that pair probabilistic reasoning with deterministic execution engines.
Ingo Nowitzky, writing for Towards Data Science, documented the failure pattern across ChatGPT, Gemini Enterprise, DIA Brain, and Microsoft Copilot during development of an agentic advisory system for manufacturing plants. Even with Code Interpreter enabled, all tested systems exhibited similar failure modes: returning identical results for different inputs, silently mixing portions of datasets, and collapsing under complex analytical tasks.
The core architectural fix separates concerns: an Analysis Planner (LLM) interprets user intent and structures the analytical task, while an Analysis Engine (deterministic code) executes the actual computation. The LLM handles natural language interaction, interpretation, and explanation — tasks where probabilistic generation is appropriate. Numerical computation runs in a controlled, auditable execution environment.
Nowitzky’s conclusion is direct: “Probabilistic reasoning is extremely powerful for interpretation and interaction — but foundational data analysis requires deterministic execution.” The pattern is likely to generalize across any domain where fabricated-but-plausible numerical outputs carry real operational risk.
Cohere Releases 218B Command A+ Under Apache 2.0
Cohere released Command A+, a 218-billion-parameter sparse mixture-of-experts model, in May 2026 under an Apache 2.0 open-source license — the company’s first fully open release — with weights available on Hugging Face. The model activates only 25 billion parameters per generation step, reducing compute requirements substantially relative to dense models of comparable total size.
According to VentureBeat’s coverage, Command A+ is engineered for complex reasoning, multimodal document processing, and agentic workflows. Aidan Gomez, Cohere’s CEO and co-author of the “Attention Is All You Need” paper, confirmed the Apache 2.0 release on X, framing it as a bet on “sovereign AI” — the thesis that enterprises and governments should be able to run frontier-grade models entirely within their own secure environments.
The Apache 2.0 license allows any party — from independent developers to large enterprises — to use, modify, distribute, and commercialize the model without licensing fees or non-compete restrictions. For enterprise reasoning workloads, the combination of open weights, sparse activation, and lossless quantization positions Command A+ as a deployable option for organizations that cannot send sensitive data to third-party APIs.
What This Means
The May 2026 reasoning advances point in a consistent direction: the gap between benchmark performance and genuine problem-solving capability is closing, but the path runs through architecture as much as scale. OpenAI’s geometry proof demonstrates that general-purpose reasoning models can now produce novel, verified scientific results — not just high scores on existing tests. TTE-Flash and RLMs show that the efficiency of reasoning is an active engineering problem with tractable solutions. And Nowitzky’s hybrid architecture work is a useful corrective: reasoning capability at the model level does not automatically translate to reliable analytical outputs in production systems.
For practitioners, the practical takeaway from these concurrent developments is that reasoning-capable models require deliberate system design — whether that means latent think tokens to manage inference cost, recursive context management for long-horizon tasks, or deterministic execution layers to catch the failure modes that probabilistic generation reliably introduces.
FAQ
What did OpenAI’s reasoning model prove in mathematics?
An internal OpenAI general-purpose reasoning model disproved the planar unit distance conjecture, a problem first posed by Paul Erdős in 1946. The model produced a proof providing an infinite family of point configurations that improve on previously optimal constructions, and the result was independently verified by external mathematicians.
What is chain-of-thought reasoning and why does inference cost matter?
Chain-of-thought reasoning is a technique where a model generates explicit intermediate reasoning steps before producing a final answer, which improves accuracy on complex tasks. The cost matters because generating those reasoning traces scales with length — TTE-Flash addresses this by using latent “think tokens” that achieve comparable reasoning quality at constant inference cost.
Why do LLMs fail at data analytics tasks even with code execution enabled?
According to Ingo Nowitzky’s production testing across multiple models including ChatGPT and Gemini Enterprise, LLMs with Code Interpreter enabled still skipped rows, applied incorrect filters, and returned fabricated numerical outputs that appeared plausible. The root cause is that probabilistic generation is not suited to deterministic computation — hybrid architectures that delegate numerical execution to a separate engine resolve this failure mode.
Sources
- Hybrid AI: Combining Deterministic Analytics with LLM Reasoning – Towards Data Science
- TTE-Flash: Accelerating Reasoning-based Multimodal Representations via Think-Then-Embed Tokens – arXiv AI
- Recursive Language Models: An All-in-One Deep Dive – Towards Data Science
- An OpenAI model has disproved a central conjecture in discrete geometry – OpenAI Blog
- Cohere cracks lossless quantization and native citations with first full Apache 2.0 licensed open model Command A+ – VentureBeat






