Remix.run Logo
stabbles 5 hours ago

It's kinda funny to realize that Lean is apparently so slow that for Fermat's Last Theorem proof verification runs only 1 order of magnitude faster than agents could generate the Lean code (15h verification with 230GB of RAM vs 11 days to generate it).

To what extent can you optimize Lean? It has to be simple enough to be auditable, does that mean you cannot use opaque optimizations to make it run faster?

kingstnap 3 hours ago | parent | next [-]

Performance problems in theorem provers is an old topic. I remember watching this and it was fun.

https://youtu.be/m-iGCCuHBvY

[Talk] 10 years of superlinear slowness in Coq (2022)

QwenGlazer9000 5 hours ago | parent | prev | next [-]

It's because anthropic vibemathed it. I forgot the name but some other guy is working on a handwritten version of it and I bet it'll be more than just 1 magnitude faster.

mkl 4 hours ago | parent | next [-]

Kevin Buzzard. https://xenaproject.wordpress.com/2026/09/04/flt-anthropic-h..., discussed recently here: https://news.ycombinator.com/item?id=49568667

andrewchambers 5 hours ago | parent | prev [-]

They could probably vibe-optimize it if they cared.

What would happen if they give an equivalent agent swarm the proof and a target to reduce runtime .

devin 3 hours ago | parent | next [-]

Let’s start with “what would happen” and run the experiment instead of starting with “they could probably”.

maths_math 4 hours ago | parent | prev [-]

What would be the point of that though? I think the reason Kevin wants to optimize it is for the understanding that will result from the process, not because anyone cares about having a Lean proof that compiles quickly...

andrewchambers 4 hours ago | parent | next [-]

I was replying to the comment about it being slow to run. I wasn't commenting on understanding it.

jchanimal 4 hours ago | parent | prev [-]

Then run the annealer and learn from the result.

dooglius 4 hours ago | parent | prev | next [-]

Weren't the agents massively parallel, whereas the lean verifier presumably is not? Also, I presume said agents were themselves running the verifier on their own parts many times.

jcalx 3 hours ago | parent | prev | next [-]

> 230 GB of RAM

"I have discovered a truly marvelous proof of this, which my memory is too small to contain..."

symfoniq an hour ago | parent | next [-]

They’re using Electron to write proofs now?

throwup238 3 hours ago | parent | prev [-]

“Big data”!

redox99 5 hours ago | parent | prev | next [-]

Can you use Lean to... prove "Lean-fast" is equivalent to Lean?

calebkaiser 5 hours ago | parent | next [-]

Yeah, in essence. This is actually a pretty cool part of working in Lean. It's a somewhat normal convention to write something in a human readable way and then write a second optimized implementation with some kindness of correctness theorem connecting them. There was a whole open "competition" for writing a faster Lean kernel/proof checker that didn't sacrifice on soundness called Lean Kernel Arena. Fun reference point: https://kim-em.github.io/blog/2026-7-24-why-lean-is-faster-t...

stabbles 4 hours ago | parent [-]

Great read, thanks for sharing

mattr03 3 hours ago | parent | prev | next [-]

There's a project called lean4lean that implements lean in lean. I guess ideally, if you had a kernel optimisation idea you could do a copy of the Lean model lean4lean has created, add the optimisation, then prove your new lean is equivalent in terms of what it can prove to the old lean

gcgbarbosa 5 hours ago | parent | prev [-]

Maybe, but how many centuries would it take to prove it?

advisedwang 4 hours ago | parent | prev | next [-]

But what hardware was the verification vs agents on? Because you are likely comparing verification on a single beefy machine (say XX TFLOPS total) to agents running on a substantial inference cluster (say XXXX TFLOPS). So you're 1 order of magnitude might actually be 2-4 orders of magnitude.

andrewchambers 5 hours ago | parent | prev | next [-]

If they aren't already, or if its possible, prove that an optimized version matches the simple version...

dist-epoch 5 hours ago | parent | prev [-]

Nobody wrote 13 mil lines proofs before.

I'm pretty sure you can make Lean at least 10 times faster if you unleash the agents on it.

Somebody ported Doom to run entirely in the TypeScript TYPES (not code). It took 12 days to compile.

https://www.tomshardware.com/video-games/porting-doom-to-typ...