觉
AI觉醒星球
Awakening is here
Knowledge File / AI技能杠杆
2026-05-25 4 浏览 免费阅读

趋势解读:Google Deepmind's AlphaProof Nexus solves decades-old math problems,聚焦形式化数学

谷歌DeepMind开发了AlphaProof Nexus框架,自主解决了353个开放Erdős问题中的9个及其他复杂猜想,每个问题推理成本仅几百美元。该系统结合LLM生成证明步骤与Lean编译器验证,为数学研究提供有力支持。

SOURCE / AI技能杠杆 MIN / 9 ACCESS / 免费阅读 POST / 2026-05-25 18:41:19

原贴

查看原文
作者:Matthias Bastian 来源站点:the-decoder.com 原贴时间:

原文

Google Deepmind has developed AlphaProof Nexus, a framework that autonomously solved nine of 353 open mathematical Erdős problems along with other complex conjectures, at an inference cost of just a few hundred dollars per problem. The system relies on the Gemini 3.1 Pro language model to generate proof steps in Lean, a formal programming language used for mathematical verification, enabling rigorous and machine-checkable solutions. While the vast majority of Erdős problems remained beyond the AI's reach, Deepmind researchers see the system as a valuable tool for supporting mathematical research. AlphaProof Nexus combines LLM-driven proof generation with machine verification to crack open math research problems that have stumped mathematicians for decades. Google Deepmind's new framework AlphaProof Nexus has autonomously solved nine out of 353 open Erdős problems it attempted, including two questions that had gone unanswered for 56 years. The system also proved 44 out of 492 open conjectures from the Online Encyclopedia of Integer Sequences (OEIS), settled a 15-year-old question about Hilbert functions in algebraic geometry, and improved a known bound in convex optimization. Inference costs ran just a few hundred dollars per problem, according to the research paper . Ad Unlike (potentially) pure natural-language approaches such as OpenAI's recent solution , the underlying language model in AlphaProof Nexus—in this case Gemini 3.1 Pro—doesn't have to carry the entire logical chain on its own. Ad DEC_D_Incontent-1 Instead, it generates proof steps in Lean's formal language, and the compiler checks each one. Error messages feed directly back into the next attempt. That way, the LLM gets grounded by symbolic feedback, a safety net that offsets the well-known weaknesses of language models when it comes to logical reasoning. Humans only step in at the very end to check the results. The system consists of four agent variants with increasing complexity. The simplest, Agent (A), deploys independent sub-agents running on Gemini 3.1 Pro in loops: the language model generates proof steps, the Lean compiler checks them, and error messages feed back into the next try. Ad Agent (B) adds queries to AlphaProof, Google's reinforcement-learning-based system for olympiad math, which can fill in missing proof segments. Agent (C) introduces an evolutionary component. Inspired by AlphaEvolve , sub-agents share a common population of proof sketches. Rating agents built on Gemini 3.0 Flash score these sketches for plausibility and novelty, then rank them using an Elo system. The fully equipped Agent (D) combines all of these capabilities. Agent (D) was used for the Erdős problems. But a post-hoc analysis turned up a surprise: the simplest Agent (A), which only uses an LLM and compiler feedback, could also prove all nine solved Erdős problems, albeit pricier on the hardest ones. Ad DEC_D_Incontent-2 The researchers attribute the simple agent's success to two factors: rapid improvement in the underlying language models and the "power of compiler feedback in grounding LLM reasoning." The fully equipped agent still holds an edge on the toughest tasks for now, but that lead could shrink as LLMs get better. The researchers say this points to a broader trend, describing "an ongoing shift from specialized trained systems toward simple agentic loops as LLMs become more capable." Ad

中文翻译

谷歌DeepMind开发了AlphaProof Nexus,该框架自主解决了353个开放数学Erdős问题中的9个以及其他复杂猜想,每个问题的推理成本仅为几百美元。该系统依赖Gemini 3.1 Pro语言模型在Lean(一种用于数学验证的形式化编程语言)中生成证明步骤,实现严格且可机器检查的解决方案。虽然绝大多数Erdős问题仍超出AI能力范围,但DeepMind研究人员认为该系统是支持数学研究的有价值工具。AlphaProof Nexus将LLM驱动的证明生成与机器验证相结合,攻克了困扰数学家数十年的数学研究问题。

核心信息

谷歌DeepMind开发了AlphaProof Nexus框架,自主解决了353个开放Erdős问题中的9个及其他复杂猜想,每个问题推理成本仅几百美元。该系统结合LLM生成证明步骤与Lean编译器验证,为数学研究提供有力支持。

  • AlphaProof Nexus以几百美元成本解决9个数学难题。
  • 结合LLM与Lean编译器,实现可验证证明。
  • 简单Agent A也能证明相同问题,凸显编译器反馈价值。
  • 形式化验证降低LLM逻辑错误的风险。
  • 研究者指出正向更简单代理循环转变的趋势。

详细解读

这是什么信号?AlphaProof Nexus的成功表明,将大语言模型与形式化验证(如Lean)结合,可以在数学推理领域取得突破。这标志着AI从纯语言模型向“符号反馈增强”方向的转变,也预示着数学研究自动化进入新阶段。

为什么重要?数学难题的解决通常需要极高智力投入和多年积累。AlphaProof Nexus以极低成本(几百美元/问题)解决了部分长期未解问题,包括两个56年悬而未决的问题,以及代数几何中15年未解猜想。这不仅加速了数学发现,也验证了“LLM+形式化验证”范式的有效性,为其他学科(如物理、生物)的自动化推理提供了可复制路径。

对谁有价值?对数学家和研究机构,可作为探索猜想的高效工具;对AI研究者,展示了LLM在逻辑推理中的增强方法;对科技公司,可挖掘类似范式在代码验证、自动化定理证明等领域的商业应用;对教育领域,可利用该技术辅助数学教学和竞赛训练。

可以怎么行动?1. 数学研究团队可尝试将AlphaProof Nexus应用于自身领域的开放问题,提交反馈以优化系统。2. AI开发团队可借鉴其“LLM+编译器反馈”的迭代机制,提升模型在形式化任务上的表现。3. 企业可探索将类似架构用于代码审查、智能合约验证等场景,降低人工审核成本。4. 教育机构可开发基于该技术的交互式数学学习平台,提供实时证明检查。

风险或限制当前系统仅能解决9/353个问题,成功率不足3%,说明能力有限。依赖形式化语言(Lean)的表示能力,非形式化的数学问题可能无法处理。推理成本虽然低,但大规模应用仍需大量计算资源。此外,系统缺乏对证明的创造性理解,可能遗漏简单但优雅的解法。长期依赖AI可能减弱人类数学家的直觉训练。

信息差价值

信息差价值:大多数人对AI数学能力的印象停留在“解题”层面,而AlphaProof Nexus展示了AI解决开放研究问题的能力,且成本极低。这一突破未被广泛报道,形成了认知盲区。掌握这一动态,可在技术选型和投资方向上提前布局,避免低估AI在科研领域的渗透速度。

业务启发:将LLM与领域特定验证器(如代码编译器、数学证明检查器)结合,可显著提升输出可靠性。这一范式可迁移至其他安全关键领域,如医疗诊断(结合病理规则)、法律合同分析(结合法规库)。企业应关注“AI+符号引擎”的复合架构,而非纯端到端模型。

可沉淀动作:1. 团队内部搭建AI验证实验环境,使用Lean或类似工具(如Coq)验证LLM生成的数学或逻辑结果。2. 与高校数学系合作,提供AlphaProof Nexus使用案例,积累领域数据。3. 开发针对特定业务场景的“LLM+规则引擎”原型,如自动化财务报表审核中的逻辑一致性检查。4. 跟踪DeepMind论文中Agent变体设计,探索简化部署方案。

参考来源

AI SUMMARY

这篇文章回答了什么

趋势解读:Google Deepmind's AlphaProof Nexus solves decades-old math problems,聚焦形式化数学主要讲什么?

谷歌DeepMind开发了AlphaProof Nexus框架,自主解决了353个开放Erdős问题中的9个及其他复杂猜想,每个问题推理成本仅几百美元。该系统结合LLM生成证明步骤与Lean编译器验证,为数学研究提供有力支持。

这篇文章最值得关注的要点是什么?

谷歌DeepMind开发了AlphaProof Nexus框架,自主解决了353个开放Erdős问题中的9个及其他复杂猜想,每个问题推理成本仅几百美元。该系统结合LLM生成证明步骤与Lean编译器验证,为数学研究提供有力支持。;AlphaProof Nexus以几百美元成本解决9个数学难题。;结合LLM与Lean编译器,实现可验证证明。;简单Agent A也能证明相同问题,凸显编译器反馈价值。

这篇文章和哪些AI专题相关?

它适合放在Agent工作流、AI工具、AI超级个体专题里阅读。 关联原因:这篇内容命中「Agent、工作流」等主题信号。;这篇内容命中「自动化」等主题信号。;这篇内容命中「技能」等主题信号。

阅读这篇文章建议先理解哪些关键词?

建议先理解AI工具、工具、自动化、模型、Cursor这些关键词,再结合正文判断工具、机会或风险是否值得进入自己的工作流。

上一篇 趋势解读:Grok Build Beta版向SuperGrok用户开放,解读最新 AI 进展 下一篇 趋势解读:George Hotz says coding agents will be "one,提升开发者接入体验