Top
Best
New

Posted by mbustamanter 9 hours ago

GPT-5.6 used a prompt to close a 30-year gap in convex optimization(old.reddit.com)
474 points | 305 comments
_alternator_ 8 hours ago|
I know a bit about this field. This conjecture reads as somewhat more niche than the cyclic double cover conjecture recently proved by OpenAI, but nevertheless represents a real contribution.

You want to know how long it takes to solve an optimization problem, in this case over convex, lipschitz functions. (The restriction to a spherical domain is not really a restriction, you can just change variables for any bounded domain.) Anyway, showing upper bounds on time complexity is "easy" because it's just the runtime of your algorithm. Showing (nontrivial) lower bounds is usually much harder because it requires constraining all algorithms.

This proof apparently shows that the lower bound time complexity is equal to the time complexity of an existing 30-year old algorithm: it requires Omega(d^2) function evaluations to solve over this class of functions.

My gut says likely implies that d is the minimal number of evaluations if you have a gradient oracle because you can approximate a gradient with d function evaluations, but I'm not sure how hard it is to make that rigorous.

xeromal 5 hours ago||
Sometimes I read a comment on HN that is so advanced that it's just as readable to me as Greek. Love reading it just to see someone work though!
alexpotato 5 hours ago|||
> so advanced that it's just as readable to me as Greek

I used to feel this way about statistics.

The language and terms are hard to understand and many of the formulas are taught as "just memorize this" instead of building up from first principles.

But then I started using statistics to analyze something I cared a lot about (paintball) and I quickly realized it's like learning anything new:

- there is jargon

- and core concepts

- when you learn the above, it suddenly makes a lot more sense.

xeromal 5 hours ago||
I gotta know what you use stats for regarding paintball. I haven't played in years but I loved playing back in the tipman 98 custom era (not sure if that's still a popular marker).
alexpotato 2 hours ago|||
So I wrote a whole bunch about college paintball statistics here: https://www.pbnation.com/showthread.php?t=3949120

Then I wrote some more about pro paintball stats in the below three Reddit posts:

1. https://www.reddit.com/r/paintball/comments/1h17f2m/intro_to...

2. https://www.reddit.com/r/paintball/comments/1jy5xqp/paintbal...

3. https://www.reddit.com/r/paintball/comments/1k6bzi7/paintbal...

Some highlights:

- I started with just pen, paper and a stopwatch (as a college coach)

- I assumed paintball would be more like football where it's hard to track individual effects

- Turns out it's a surprisingly simple and stable "state machine". e.g. the odds of winning with +1 body (e.g. 5v4, 4v3 etc) is, in college, about ~75%

- Paintball is one of those sports where "the weakest player determines the outcome". Why? b/c if 1 player gets out early, you are fighting out of a hole.

It also made me appreciate that as good a book as Moneyball is, reading it after you try to create analytics for your own sport makes it 3x as enjoyable/insightful.

One downside though:

I would watch games and I got so good at internalizing the stats per state of the game that it was like watching the world series of poker where I could see both player odds of getting eliminated and probability of winning over time charts as I watched the games. Made it harder to be the "come on guys! we can win this" coach when we were down on points + bodies.

sota_pop 4 hours ago||||
Wow, a blast from the past to be sure. Was not but any means avid, but did own a tipman. And was always dazzled when someone showed up with an angel.
sigmarule 5 hours ago|||
That era is now! (Still)
alexpotato 1 hour ago||
Paintball had a peak in the mid-2000s (I would say 2006) due to a combination of:

- Millenials who were kids of the baby boomers being in their late teens early 20s

- Disposable income due to the real estate bubble / positive consumer sentiment

It dropped off a lot after the 2008 GFC though.

BUT

A lot of those kids playing in the mid 2000s are now parents of ~10 year olds so apparently there is a bit of a resurgence going on.

spicyusername 1 hour ago||||
Not to diminish the comment, but most things are not as complex as they sound when phrased in everyday language or sound much more complex than they are when phrased in technical language.

Technical language is a tool that allows insiders to say less and refer to more, and to be specific, but it's just a tool. Most things can be described in accessible ways.

I think you'd be surprised at what you could understand and at just how few domains are truly complex enough that a layman couldn't understand with a little bit of patience and an accessible summary.

Vasbarlog 5 minutes ago||||
Έχεις απόλυτο δίκιο!
semiquaver 5 hours ago|||
Thanks for posting this comment, it makes me proud of myself to be able to partially comprehend the comment :)
LPisGood 8 hours ago|||
It should be noted that optimization of a convex bounded lipschitz function is exactly what most modern statistical learning (AI) models are based on.
hodgehog11 7 hours ago|||
Very confused by this comment. The older (poorer) parts of the ML literature focus on models with convex and (gradient-)Lipschitz objectives, but that's not representative of reality, not even close. Modern objectives for AI models are famously nonconvex (catastrophically, from the point of view of classical optimisation theory), and that's where the interesting research is.
_alternator_ 7 hours ago|||
I'd push back on this. Most of the core optimization techniques (eg, ADAM, stochastic gradient descent) are straight out of the convex optimization literature. Generally you need to use optimizers that work well on convex objectives because near minimizers, functions tend to be convex. (Proof by contradiction: a non-convex point has a strict descent direction.)

The fact that neural networks are highly nonconvex has encouraged a lot of research, but it's more of the kind aimed at resolving tension: these methods are probably good for convex functions, why do they continue to work for nonconvex problems, and are there tweaks we can make to improve them in that setting? It's not a lot of de novo theory; more standing on the shoulders of giants, etc etc.

ashley95 1 hour ago|||
The optimizers are lifted from convex optimization, but the point above was that they are applied to highly non-convex problems. They work for finding local minima, but a lot of the deeper literature does not translate (e.g. the conjecture being discussed in this post).
thesz 4 hours ago||||
ADAM does not work on simple convex problems [1].

  [1] https://parameterfree.com/2020/12/06/neural-network-maybe-evolved-to-make-adam-the-best-optimizer/
  [2] https://arxiv.org/pdf/1905.09997
[1] refers to [2], which shows that ADAM is not as efficient as gradient descent with line search on some problems, including neural networks.
_alternator_ 3 hours ago||
I'll point out that "does not work" is not the same as "not as efficient" :) But it does seem the Adam paper had an error.

I think that Nesterov's first order method is the most efficient general first order algorithm on convex problems, so anything else is in some sense worse. (Edit: removed incorrect ADAM comment.)

thesz 2 hours ago||
Yours' "not as efficient" in [2] means that, sometimes, ADAM "does not work." Look at figure 2, ADAM literally does not work in the case of "true model."
_alternator_ 1 hour ago||
Yes, apologies, I didn't read the articles you linked before posting this. I did update the comment.

I don't think this changes the point, which is that most optimization methods used in AI owe a substantial intellectual debt to convex optimization theory.

adw 5 hours ago|||
Another intuition is that near a minimum you can Taylor expand the function and show that the higher order coefficients (past the square) are negligible.
theteapot 1 hour ago|||
What do you mean by this? A neural network hypothesis space is not typically strictly convex or a lipschitz function.
hiworld6543 2 hours ago||
[flagged]
_alternator_ 1 hour ago|||
I'm sorry this comment didn't sit well with you. My goal was to induce discussion by describing the claimed result (which was buried in the post), not to discourage it.

If you have more specific feedback on what you found distasteful, I'd be happy to hear it.

slwvx 1 hour ago|||
I did not see _alternator_'s comment as asinine. I like a venue where people who have some expertise feel comfortable enough to share it, and are not criticized for doing so
rakel_rakel 9 hours ago||
> I don't think researchers in math/TCS will be made obsolete, but I think it will instead no longer make sense to work on any low-hanging, or even medium-hanging (you know what I mean) fruit. We'll be needed for problems where actual novel approaches are needed.

I wonder how this compares to what we see happening with "juniors" in software development? In math research, do you also get the training for the profession from working on the low hanging fruits for a while, to then move to the medium-hanging, and later go on to work on previously unsolved stuff?

Quothling 8 hours ago||
Around here AI isn't really more of a threat to juniors than it is to seniors. It's a threat to the people who have been taught "recipies" rather than applied computer science. You can have excellent seniors who can do TDD, DRY, SOLID and so on, who also happen to have no idea what a L1 cache miss is. The current AI models know all of those things, but they struggle applying them correctly without someone piloting them. Even in the energy industry where I work, where you'd think it would be obvious from the context that you should prioritize runtime safety over debug safety, the current AI models struggle to do so. As far as seniority goes, though. If we can find a young developer with little experience who actually knows computer science, we're much more likely to hire them... Since they are cheaper.

This isn't something which is unique to software development though. We're currently building enterprise AI apps that we can deploy into the AI agents working for anyone of our employees. The key thing we're currently seeing is that the people in a team who are the ones that everyone turn to for advice, are the only people who aren't in "danger". Even people who are great at their jobs are being outperformed by AI in many cases.

I think it'll be a massive challenge for our society in the coming years. Maybe we're even going to get to the point where the AI will also be capable of replacing a lot of the "domain experts". Right now that seems far out, but then, if you had asked me about AI four months ago I would've told you it was all hype.

zarzavat 6 hours ago|||
AI is a threat to everyone. People who claim that AI will never be able to do X have consistently been proven wrong.

The only people who are safe are those whose jobs depend in some way on their humanity. e.g. yoga teachers, bouncers, etc

YZF 5 hours ago|||
Nobody knows.

It's not a zero sum game. You can have AI "senior engineers" working under humans building bigger things than we've been able to.

We also don't know where the capabilities of current AIs will plateau. The benchmarks aren't really telling the entire story. From my perspective of using the models there are certain axis where they're not making a lot of progress, like being able to have large accurate context on the scale that humans can. There are other dimensions where there is still a large gap between human capabilities and LLMs. It's true that relative to other areas (lessay chess) LLMs are more generalized but they are still not fully generalized (back to the chess example, LLMs are not good at chess).

smaudet 1 hour ago||
> It's not a zero sum game.

Resources are, though. The planet cannot support a race of digital super-people, and us, and an continually growing economy.

It's the height of folly to think that, as things are going, we are going anywhere "good".

neerajsi 16 minutes ago||
I was arguing with a friend about this point today. I'd posit that our economy has been growing in a way where goods that require more human time and natural resources to produce are giving way to goods that are intangible.

Once we've met our basic material needs, we're tending to consume things that are replicable with low marginal costs, and which do not interfere with the production of other goods. So maybe we can actually support a continually growing digital and entertainment economy, at least for a few more generations.

Maybe these mathematical contributions will also impact the efficiency and capabilities of our material production systems as well, which is another way to keep the economy growing.

I'm optimistic that we'll do more with our resources rather than trying to optimize for doing the same more efficiently with less resources.

Quothling 5 hours ago||||
This was sort of what I wanted to say, but I guess I should have worded it differently. I certainly didn't mean to say that I thought AI would stop improving. If anything I'm surprised at how much we have to fight the AI models to do what NASA has been doing for 60(?) years.
natsucks 5 hours ago|||
i'd take a yoga class from a bot
fn-mote 45 minutes ago|||
How would this be different from taking a yoga class from a video?

I would be willing to be proven wrong, but I doubt the ability of LLMs to give useful corrections in yoga much more than their ability to write useful code.

onraglanroad 5 hours ago|||
I'm now imagining Bender's Yoga class. I suspect it would hurt.
zem 3 hours ago||
would prove that robots were subject to nominative determinism too, if nothing else!
siva7 2 hours ago||||
It's funny how you applied on your own argument several logical fallacies about why ai is only a threat to people who have been taught "recipies" versus who know what L1 cache miss is.

Actually it's sad there are people out there dumb enough to believe knowing L1 cache is any different than knowing recipies when it comes to the story which jobs AI will take. I'm convinced by now it will be the jobs of those people believing such crap.

rakel_rakel 7 hours ago||||
Interesting, thanks. I don't know where "around here" is, but the signals I've seen in a lot of articles is that the demand for junior software people has taken a dive since a year or two back, with student programs etc getting cancelled. One googler said they were getting a junior to their team and that was kind of a big deal because it hadn't happened in that whole department for a long time.

In relation to that, I guess my question becomes: if the same thing will happen in math research, who will write the ten page math proof prompts in the future?

blauditore 2 hours ago|||
There is definitely the effect of less or de-growth in the industry, which started before the current AI hype. And now there's the additional effect of companies hoping AI will replace their need for (junior) devs. Nobody knows if or to what degree this will work out (yes, we all have opinions, but no crystal balls), but they are holding back the hiring until they know how all this pans out.
Quothling 5 hours ago|||
I'm from Denmark and I've been an external examiner for various CS educations for the previous 13 years now. Some of them teach you a lot about how the hardware works, others mainly teach you design patterns. Five years ago the latter was in high demand, because a lot of software development frankly doesn't need computer science (until it does). Now there is almost no demand for them.
rednb 3 hours ago||
Honestly, i've received a formal MSc education in the hardware aspects, including for designing embedded electronics products. Spent the most part ofy career in the software industry designing enterprise software and feel like i never needed to use them, except maybe early in my career when i was reviewing tech stacks and determined that .NET would be among the winning horses, precisely because it'd take care of that for me almost all the time.

What i see today is the opposite of what you see : product owners not knowing a thing about software engineering but being able to vibe code prototypes handed over to the dev team are rock stars.

They are closely followed by senior software developers having more of an architecture & design background than a low-level computer science background. Most businesses are looking for builders these days.

Where what you say may converge with my observation is that to be able to do to things such as proper database query optimization, even using AI assistance, you need to be able to understand the concepts of working memory set, cache misses etc...

I've found huge problems, like database servers being grossly underprovisioned (like, 60% cache hit, 4gb RAM server for a 700gb dataset with an 50gb circa hot data set). SSD were used and only latency was measured, so no one realized how problematic the situation was (including a consulting shop they hired to help them manage their DBs - backup, maintenance etc...).

However, having a high affinity with hardware is not a driver / computer science of hiring decisions from what i can see in the enterprise software world. But it would make sense for it to become the case within 10 years. I suspect that you work in a niche where performance optimization matters a lot.

marcosdumay 7 hours ago||||
So... The AIs with no model of the world are replacing software developers that have no model of the world?
p-e-w 6 hours ago|||
Unless you’re claiming that AIs will suddenly (and very soon) stop improving, they are obviously a threat to everyone’s job.

Calling notable conjectures that have been open for decades “low-hanging fruit” is an act of desperation. Most professional mathematicians couldn’t have proved those conjectures if their lives depended on it.

skybrian 6 hours ago|||
I wouldn’t call it “low hanging fruit” but it’s easy to think of problems that seem harder. Apparently solving notable math conjectures is easier than building a practical robot to deliver a package to someone’s porch?

So, yes, AI is a big deal and we don’t know what it’s going to affect, but the goal of replacing everyone’s job is extremely ambitious and there’s a long way to go.

This has to be assessed separately for each kind of job.

pfdietz 6 hours ago||
Moravec's Paradox strikes again!

Moravec must be at some level gratified things are arriving close to his predicted timeline.

xorcist 6 hours ago||||
The thought that anything could improve without bounds would be absurd. We are living in the physical world after all. The (open, interesting) question is how close we are to the limit.
onraglanroad 5 hours ago|||
Types of technology - of which we can include intelligence - move along S curves, but it's more absurd to think that humans are near the top of that curve rather than right at the bottom.

There might be a thing beyond intelligence that we can't even conceive of.

fn-mote 39 minutes ago||
> more absurd to think that humans are near the top of that curve rather than right at the bottom

The “absurd” dimension does not enter. This is a situation where you have no evidence at all.

In the absence of any information, the average (mean or median) is your best guess. Now where that average is, you have no idea.

> There might be a thing beyond intelligence that we can't even conceive of.

This statement already supposes there is a thing called “intelligence”. People have been pretending to measure this for more than a century. Modern thinking at least says what we call intelligence is not a single concept.

p-e-w 5 hours ago|||
It’s safe to assume that after less than a decade of LLM development, we’re nowhere close to the limit yet. In fact, progress still seems to be accelerating at the moment.
xorcist 5 hours ago||
If anything, it should be safe to assume by now that capabilities don't scale linearly with model size.
pydry 6 hours ago|||
>Unless you’re claiming that AIs will suddenly (and very soon) stop improving

Most technologies level off sharply after bouts of boundless improvements.

In 1968 they thought we'd be flying to the moon by now but instead we're flying across the ocean in planes not that different from the 747 that existed back then.

pfdietz 6 hours ago||
They sometimes start improving again. In the context of your comment, look how the cost/kg to LEO has suddenly dropped radically. This was mostly due to institutional change that allowed previous non-technological barriers to improvement to be bypassed.
skekke 3 hours ago||
[flagged]
pfdietz 3 hours ago||
Wow. That literally has nothing to do with what I wrote.
nicf 7 hours ago|||
I was trained as a mathematician and worked as a math researcher for a little while (now working as a private tutor), and based on my experience I'd say this description is basically right, with one extra wrinkle.

In order to get a Ph.D., you have to do some sort of original research, so in that sense you're working on "previously unsolved stuff" basically right from the start. But that doesn't entail doing anything all that ground-breaking; most Ph.D. dissertations (very much including mine!) contain work that a more senior researcher in the same subfield could probably have produced without too much difficulty. The software development analogy is a pretty good one: a lot of the point of getting junior researchers to do research is to help train them to one day become senior researchers, and often the work itself is nothing all that special.

Given the trajectory of these LLM proofs, this seems like it's going to have to change pretty soon, and to be honest I'm pretty grateful that I'm not in charge of deciding what that's going to look like, because I don't have any good ideas! I'm actually pretty worried about the future of the field.

darkstarsys 2 hours ago||
Indeed. Perhaps my article here will be of interest to some: https://blog.oberbrunner.com/blog/ai-math-as-humanities/
JustFinishedBSG 8 hours ago|||
My experience may not be entirely representative because to be entirely honest I’m not exactly a great researcher and there are brilliant PhD students. That said it indeed was my experience that in the pre-PhD / early PhD period ( or even longer … ) your advisor proposes (gives) you pretty low hanging stuff that he mostly already knows how to solve, at least at a high level, with the expectation that it will teach you to use the mathematical tools you need.
skybrian 8 hours ago|||
This apparently required a 10-page prompt. It seems like someone needs to know enough to write it?
dwohnitmok 8 hours ago|||
The author also used GPT-5.6 to write the prompt. This did involve giving GPT-5.6 access to his previous work and a back and forth process (so definitely still used the author's expertise to some degree), but the prompt itself is also largely AI generated.
lucianbr 5 hours ago||
What's the difference between using GPT to write the prompt to GPT, and "thinking"? The LLM uses the first tokens to predict more tokens, and then uses those tokens to predict even more tokens.
petra 2 hours ago||
The ability to correct the plan/prompt.
ch4s3 8 hours ago||||
Certainly. This feels similar, to me, to how building complex software with LLMs works today in practice. You need to know a lot to set up goals and guardrails and verify outputs. For me, making the bits change was always the fun part, not tangling with text in my editor, though that had its moments.
jvanderbot 8 hours ago|||
Yeah, back to the gold-in-gold out use of LLMs.
bredren 8 hours ago||
I was thinking this past week I have gotten so lazy w my prompting via CLIs.

Back in the before I had put such discipline into my prompting and supporting context.

Now I’m like, “look here and here and here are some tools, and /skill /skill okay go.”

Or “restate this request in your own words and enrich it as appropriate handling any gaps. Okay go”

Quothling 8 hours ago|||
We're also at the point where you can roll out context to your entire organisation. I created an app for our m365 Cowork and deployed it to everyone who develops software. It does a couple of things, but it main knows our compliance policies and can guide developers through writing the documentation needed for NIS2 compliance. It also guardrails against non-approved packages, and helps developers find alternatives, or if none can be reasonably found, how to get a new package/dependency approved (or rejected).

A few months back this would be something every developer kind of did on their own. Maybe they shared skills, we certainly encouraged it and tried to do all the change management things, but nobody really had the same versions of the skills. Which was horrible in the deployment pipelines, something like the compliance documentation often had to go back and forth several times before it could be approved. Now it's just there, for everyone.

In a year or two, I expect a lot of these things to have become even more standardized. So that we don't even really have to build our own apps, but can simply use the ones in the catalog with minimal configuration (and that config will likely only be necessary because I'm from a tiny country that nobody will maintain standards for).

bredren 2 hours ago||
Yes. I worked on two large monorepos, about one quarter per project. Maybe 80+ devs on first, maybe 40+ on second. Both were not sure how to describe this but ultra-high-velocity agentic driven development efforts.

On the first, there were ~no shared skills. There were some requirements set up but they were not minded properly and became stale / ate context for little gain. The hardest hit was in E2E tests which would flake and create long running, too-often failing CI. People would disable them, because they were not reliable and velocity was so high, no one was happy w them.

I maintained my own set of skills and CLIs to back them. I'd share them if they came up but it was like the old days of manage your own stuff. Not much credit for building and sharing devex tooling to the team.

But then on the second one we were in better shape--we had vendoring set up to distro skills automatically.

Before the project was well underway, I put time into understanding how all of our tests aught to be written. Finding the forbidden things, etc, getting review from our best test folks and ultimately landed on a `/test` that routed across all possible test types.

Like night and day. Instead of finding out while trying to get a release out the door that some corner of the project had a handful of flakes, tests were written the right way from the start.

Like, it was beautiful. And I don't think devs noted difference while building. Only that there was an absence of BS in CI.

Hard to quantify the lack of pain, but it was big!

danielbln 7 hours ago|||
This made me chuckle because it's so true. So much detailed steering and finagling in the past, now I point the agent to a bunch of information sources, skills, similar repositories that might hold useful input and tell it very roughly what I need and off it goes, I'll grab coffee.
bredren 2 hours ago||
Have you tried this:

   Look here and here and here are some tools, and /skill /skill [repo of folder paths etc] and here is what needs to happen: [stuff].

   ---

   Restate this request in your own words and enrich it as appropriate handling any gaps.
?

It is an ultra-lite way to plan, I suppose.

I like the format because:

    - I still get to put all my thinking into the request but then easily override the instruction
    - It is interesting to see my casual typo-riddled blast professionalized and improved upon.
    - Sometimes it surfaces useful questions that can save some time up front.
I think the models are doing this anyway, but I find the words "enrich" and "gap" are well understood by models and they demonstrate it in the response to the above pattern.

Anyhow, to get back to the point, there are still prompt-level tricks--but ultimately if repeated, should probably also be built into skills themselves!

vatsachak 8 hours ago||
Math is way more automatable than programming.

In math, a proof is a proof. We don't know if we can get there and so getting there is the hard part.

In software, we always know that we can solve the problem. So HOW to solve the problem is the hard part. Because the type of solution involves maintainability, which involves planning, LLMs suck at it. This leads to "LLM slop code" whereby the LLM creates ad-hoc convoluted logic with redundancies and no reuse of existing standard library batteries.

Unless you're a Grothendieck who gets mad at Deligne for not solving the Weil's conjecture "THE RIGHT WAY", software is fundamentally different than math in this respect.

So I'll say it again, AI will win a fields medal for before managing a McDonald's simply because there are enough big problems within arms reach than their current capacity to plan over time

nicf 6 hours ago|||
I've spent some time working both as a math researcher and as a software engineer, and I think this comment actually underrates the similarity between the two fields as they're actually practiced.

Some math research does involve grabbing a single, fully specified conjecture off the shelf and hunting for a proof of it, and it's true that if you manage to solve a long-standing open problem, other mathematicians will be interested no matter how you did it.

But this isn't all of what they do, probably not even most of what they do. Like in software engineering, it's not always obvious which question would be the most useful one to ask. A lot of mathematical work also goes into what we call "theory-building", where you could say that primary work goes into coming up with definitions rather than theorems. Mathematicians also care a great deal about how something is proved; a lot of them are some of the most aesthetically picky people I've ever met. Words like "ugly", "beautiful", "creative", and "boring" are used to describe both definitions and proofs all the time.

From the outside, it can look like all they're doing is pumping out proofs at any cost. But I promise you that when I talk to mathematicians who don't have any experience building software, they have a similarly narrow view of that field as well! Both fields, from the inside, look a lot more human than you might expect.

rocqua 3 hours ago|||
It seems to me you hooked onto the wrong part of proofs vs software compared to what OP meant. The difference OP cares about isn’t how much one cares about style. Instead the important difference lies in validation. A proof can be validated as either correct or wrong. That type of hard feedback really helps combat the optimism and desire for shortcuts of modern models.

Now, that still doesn’t help an LLM distinguish between good and bad correct proofs. But it still really helps a lot. On top of that, taste in proofs is a lot more uniform than taste in coding. That helps LLMs be better at judging the quality of a proof, because there’s less disagreement in the wider world.

sigbottle 3 hours ago|||
The standards of proof are different from the fundamental operation of "OK, cool, you solved this problem. Why does this problem matter? Isn't it useless? Senseless? Meaningless?" You have this same question whether or not you're in an a priori discipline (mathematics), scientific fields proper, or engineering. "Absolute certainty" has nothing to do with it. I can assure you, people on the job are not looking for The Absolute Truth when doing their jobs, yet they still can question at a solution by asking: are we solving the right problem?

(Although in general, there's no true difference between "I answered the question correctly, but the question was mapped to this thing we call 'reality' wrong", and "I answered the question incorrectly", because you can (try) adding the constraints that you really wanted targeted in case A, to case B, and boom, suddenly a question/answer pair that was "Answered correctly, but question doesn't map to reality" now becomes, "You answered this question wrong". However, individuals generally tend to have some breakpoint to differentiate between the two).

nicf 3 hours ago|||
No, what I'm saying is that I don't agree that taste in mathematics is more uniform than taste in coding! Mathematicians argue about taste all the time. Just as you might look at a piece of code and agree that it compiles and doesn't have any fatal bugs but still think it's badly written, hard to follow, hard to modify, or whatever else, mathematicians judge mathematical work using very similar criteria.
vatsachak 2 hours ago||
Maybe a subset of mathematicians, but if someone proved that RH was undecidable we would still give them the millennium prize.
vatsachak 5 hours ago||||
I think that your take is quite optimistic. Having published in top tier journals my only experience is that mathematicians care about what other mathematicians worked on and failed to solve. Theory building papers are dime a dozen and don't get published in high tier journals unless they solve a problem.

Math is such that most theories are built after solving a problem and actually don't solve a larger class of problems. Etale Cohomology is an example of a rare exception. Grothendieck was mad that Deligne used adhoc complex analysis techniques to prove Weil. But everyone else was thrilled.

Whereas in CS, a good theory (library) solves a large class of problems. The reason being is that CS tackles general problems while math specific ones. Math on average solves problems that don't lead to solutions to other problems.

To me at least, math is more of a game like chess and coding is more of an art. There are aspects which are a game, like performance engineering but I'm pretty sure that LLMs will become superhuman at that soon

nicf 3 hours ago||
If your complaint is about the type of work that gets you published in a fancy math journal, then I'll happily join you on the barricades. Sure, getting a paper into Annals of Mathematics or whatever is more game than art in the sense I think you mean here.

But "what mathematicians care about" is much, much broader than what gets you published in a fancy journal. Mathematics as a human activity is millennia old, much older than the concept of journals or even universities, and that activity is, to me, very beautiful, worth preserving, and more of an art than a game. The incentive structure of academia for the past few decades has done a pretty bad job at preserving that art form, but that doesn't mean mathematicians as actual human beings don't care about it --- if they didn't, they probably would have chosen a different career.

vatsachak 2 hours ago||
Very fair. But when you say "What mathematicians care about", you are taking about mathematicians today, who really care mostly about politics
pishpash 2 hours ago|||
The types who do ugly proofs, when they write code, produce spaghetti code. It's the same thought process going into how to approach something.
fsmv 7 hours ago||||
I think the difference is in math the problem is fully specified and easily verifiable and in programming it's not. I don't agree that we always know we can solve the problem.
vatsachak 7 hours ago||
Not always, sure but 90% of the time yes.

For example, create a DFA for a regex, not too bad just use Thompson's algorithm and then NFA->DFA. But now we have to care about efficiency, user API, maintainability of definitions etc.

Coding is more of a human problem than math

sashank_1509 7 hours ago|||
> So I'll say it again, AI will win a fields medal for before managing a McDonald's simply because there are enough big problems within arms reach than their current capacity to plan over time

AI can manage a McDonald’s already. If manage means directing humans to do something to ensure the store is running. If manage means running robots, then yes maybe that is 5 years away but just directing humans to run a store, that is possible right now.

vatsachak 7 hours ago|||
No it can't. Show me a business which uses in context learning to manage a McDonald's
wanderlust123 7 hours ago||
Well that’s a problem of incentives. Why would a manager outsource their own job to an AI?
vatsachak 7 hours ago||
It's not a problem of incentives. Every executive wants to inject LLMs everywhere these days. If they haven't somewhere it means that it does not work.
fsmv 7 hours ago|||
Have you not seen vend bench?
d4rkp4ttern 7 hours ago||
In the Reddit post there was clarification that this was done with Sol Pro not Ultra - curious what is everyone’s mental model of the difference.

My understanding is that ChatGPT Pro is effectively a multi agent system, or somehow uses multiple LLMs in parallel and selects a best answer. And Ultra is more similar to Claude-Code UltraCode where the main agent can choose to create a dynamic JS workflow that deterministically orchestrates multiple agents to handle different parts of a task and have adversarial checkers etc.

Is that more or less the difference? Any substantiating sources would be great to see.

gizmodo59 38 minutes ago|
ultra in codex is just a way to run multi agent system, pro is similar to other pro models like 5.5
a_imho 8 hours ago||
If I recall correctly there was a proposed proof to the abc conjecture by Mochizuki https://en.wikipedia.org/wiki/Abc_conjecture#Claimed_proofs which was rejected due to being rather inpenetrable to humans. Shouldn't this be an ideal target for LLMs?
anorwell 7 hours ago||
It was rejected for being wrong (or most charitably, incomplete).
lg5689 4 hours ago|||
There was recently an announcement that a group trying to formalize it found a gap exactly where other mathematicians were pointing. So to the extent there was any doubt, it should be gone now--the proof was incorrect.

But I agree LLMs have a lot of potential for checking proofs--both informally (they can read quickly and find gaps) and formally (by attempting to formalize).

7373737373 2 hours ago||
Similarly, I'd love to see LLMs create a formal proof of the https://en.wikipedia.org/wiki/Classification_of_finite_simpl...
charlieyu1 1 hour ago||
I’d like to see four color conjecture and an elementary proof of FLT.
charlieyu1 1 hour ago||
I tried using AI to solve some advanced math problems. One thing I see is that they can throw an enormous amount of brute force into a problem. When mathematical logic can be brute forced we will see some interesting advances.
mw67 9 hours ago||
Crazy how intelligence is cheap, efficient and commonplace now. We humans better refocusing our energy on our core values/principles, given most of our skills are becoming irrelevant
codingdave 8 hours ago||
If it were commonplace, there wouldn't be a post and discussion about it. Cheap? Arguable - while it didn't cost thousands, it wasn't free. Cheap is in the eye of the beholder. Efficient...How do we even measure that? The massive infrastructure and training to take a product to the point where someone could do this is massive. Ignoring everything behind the scenes and acting like one session and result is the whole picture of efficiency doesn't seem right. And no, nothing produced by AI makes skills irrelevant. That is the whole ongoing argument of whether people are losing cognitive ability by moving their thinking to AI.

Overall, this is an impressive proof of capability. But I wouldn't take that proof as anything more than what it is.

Izmaki 8 hours ago|||
Seconded on the "not cheap" argument here. I've spent $25 worth of tokens completing a one-week task in an afternoon, or rather my company spent the money. I would never have personally felt OK with throwing this much money after some prompting back and forth for a few hours, one lazy Saturday afternoon. I ran the risk of not finding the solution before the token usage would be too high for me to want to carry on, if I was my own credit card linked to the account.

Of course money in this situation is a bit of a funny measurement, right, because if I was able to take the rest of the week off as soon as I had solved the one-week problem, then I would have no problem at all throwing even $100 worth of tokens at it, so I could enjoy a nice 4-day "mini-vacation".

How cheap "cheap" is, is indeed "in the eye of the beholder".

throw310822 8 hours ago||
Is is sarcasm? $25 to perform in half a day a week of work, that is not cheap, it's a massive saving of money- probably in the thousands.
Izmaki 2 hours ago|||
It's not sarcasm. If I had to pay $25 to perform my work from an ever-growing pile of projects, I would be losing money. That's not "cheap intelligence" for me. It certainly is for my employer, though, because for the mere price of $25 extra per day they can get 4*X the product per period of time.

In Scrum terms my personal velocity grows by a factor of four or more with access to agentic AI workload, but if it means that I will just be asked to "consume" 4*X more Story Points per sprint, I'm not the winner in the end, my employer is. If they asked me to complete X Story Points per sprint regardless of my velocity, and they let me take the days off when I was done, I would be the winner. But that's not how it works.

AI is "Cheap" for the person/organization that gets more product for less money, not for the individual person building the product faster.

throw310822 49 minutes ago||
I'll simplify it for you: AI is cheap for those who pay for it.
shinryuu 4 hours ago||||
For whom is the question you should ask.
abixb 7 hours ago|||
/r/whooosh
yieldcrv 1 hour ago|||
I mostly agree, these are things that couldn't or weren't solved with abundant capital at all, and now they are being solved

it went from not having a price, to having one, and we are trying to retroactively transpose economic viability or economic existence to it from some parallel and prior time.

bwestergard 6 hours ago|||
A counter argument: A strong distinction between "intelligence" (understanding what is) and "values/principles" (understanding what ought to be) was characteristic of much early modern European philosophy from Descartes to Kant, which received its influential strong formulation from David Hume.

But trying to maintain this distinction leads to insuperable difficulties. Our conceptual framework for understanding the world are always value-laden. There is no "view from nowhere", no historically unconditioned set of values or concepts. Your framing, in which "values" are external to "intelligence" and must be imposed on it (on pain of intelligence being "value-neutral"), leads inevitably to the dead end of "AI Alignment", "superintelligence", etc. Which is a kind of pseudo-theology.

"We humans better [be] refocusing our energy on our core values/principles, given most of our skills are becoming irrelevant."

In light of the untenability of a strong fact/value or intelligence/ethics distinction, I would suggest this alternative advice: humans should focus on critical appropriation and extension of the received wisdom, whether that comes to us directly from human beings or indirectly through an LLM. Perhaps this is compatible with the spirit of your original suggestion.

fidotron 8 hours ago|||
It's still clear that LLMs lack spatial reasoning, either in the concrete or abstract, and while that sort of reasoning has been downplayed by academia for at least a century it is fundamental to technology and industry. (And many would say for science and mathematics too).

They will, however, get there as well either directly or as interfaces to models that do, and your core point stands.

ACCount37 7 hours ago|||
"Lack" isn't the right word. "Lacking" is more like it.

If there was a deep fundamental inability, we wouldn't see things like newer generations of LLMs consistently improving on ARC-AGI series (heavy spatial reasoning loading) and SimpleBench (a lot of commonsense + spatial reasoning components).

In a way, it's a surprise that LLMs, notoriously lacking any sort of embodied experience, can even get this close to human baselines on tasks like this.

My takeaway is that text is a far richer modality than anyone has expected - and that high end LLMs are often sharp and flexible enough to recognize their weak points and substitute their strengths. I.e. all the LLMs implementing A* to optimally solve pathfinding in ARC-AGI-3 tasks, often unprompted.

There might still be unrealized gains there from true depth-unbounded recurrence, or maybe from finding better ways to integrate modalities in training. But clearly, a "fundamental limit" it ain't.

fidotron 6 hours ago||
> "Lack" isn't the right word. "Lacking" is more like it.

Yeah, that's fair.

> My takeaway is that text is a far richer modality than anyone has expected - and that high end LLMs are often sharp and flexible enough to recognize their weak points and substitute their strengths. I.e. all the LLMs implementing A* to optimally solve pathfinding in ARC-AGI-3 tasks, often unprompted.

I agree and disagree with this. I think we've learned a lot of humans are more text based than we thought, but conversely I'm not persuaded what non-textual task reasoning LLMs are doing is necessarily text based, just that models have grown large enough for other reasoning modes to conceivably be hiding in the parameter space.

As I mentioned elsewhere, like many others I find LLMs work entirely by example, and reaching for A* when pathfinding is the single obvious thing to do. In cases where the magic key word is not mentioned and the problem cannot be identified as "pathfinding" (or some other trigger with a highly specific widely documented solution) they will struggle, yet the moment the trigger is hit they get there very fast. This is why prompting remains such an art form.

Fable is the first one I've encountered that is capable of serious open ended 3D programming in ways that suggest it has some grasp of the spatial aspects of the problem (not merely symbolic manipulation of the vectors etc.), but it still misses optimization opportunities a human will find glaringly obvious based on spatially predictable bounds etc.

ACCount37 6 hours ago||
Grown? LLMs were always "large enough for other reasoning modes to conceivably be hiding in the parameter space".

Basic LLMs don't reason in text, and never did. They use it as an interface - for input, output and some of the intermediate products. Heavy use of those "pseudo-recurrence" intermediates in "reasoning models" is a relatively late post-training adaptation. But the process that happens between those endpoints is not at all text-based. What happens in the hidden dimension is part "output logit domain", tied to probability distributions over possible output tokens, and part "incomprehensible concept-space madness".

The latter being where things like latent world models live. LLMs develop partial world models, right in pre-training, despite not being explicitly forced to - because it brings them closer to heaven of accurate next token prediction.

And yes, larger models like Fable seem to be better at spatial reasoning. Maybe because their large size increases the sample efficiency and improves generalization, allowing them to absorb the sparse signal of "spatial reasoning" in the training text better. Maybe because this extra size means more layers, allowing for deeper latent space reasoning in lieu of true recurrence. Maybe because the default "next token prediction" reward underrates rare spatial reasoning challenges, and the model only starts to "get good" at them once the other sources of loss reduction are heavily depleted. Maybe because no true recurrence is suboptimal for spatial reasoning architecturally. But it is what it is. Spatial reasoning gains in LLMs are extractable, but extracting them is nontrivial.

simianwords 8 hours ago|||
Is there any proof that they are not good at special reasoning? Arc agi 1 and 2 are saturated.
WarmWash 5 hours ago|||
On a token level, text tokens are orders of magnitude more information dense than visual tokens.

You don't have to do much statistical analysis to figure out what is meant by the token string "cat under a tree". However you need to do an enormous amount to encode any permutation of pixels that show a cat under a tree from the set of all possible pixels arrangements that illustrate that (along with the massive fringes of ambiguity).

fidotron 7 hours ago||||
I will be posting something to that effect later this week. (Hopefully).

Basically current gen LLMs apparently do spatial reasoning the way they seemingly do everything else: by reference to previous example. I didn't see them work out which known example to use for a given problem until specifically prompted, in my case by accident.

StilesCrisis 4 hours ago||
If you ask an LLM, "what known example did you use to solve this?" it is very likely to cite something plausible-sounding. That absolutely doesn't mean it is what it actually did. It is trying to give the "right answer" and please.
dannyw 6 hours ago|||
ARC AGI 3 is much better designed and harder, perfectly completable by a human in a couple minutes.

Only a fraction of the games can be solved by Sol, generally at sub-human efficiency in terms of turns, AND at a cost of >$10,000 per game.

amelius 8 hours ago|||
Everybody can be an armchair mathematician now. Just fling some thoughts in the direction of your AI setup and let it do breadth first search with AI based pruning heuristics.
jethkl 6 hours ago|||
I generally agree, though direction, intuition, and domain knowledge are still relevant. Your breadth-first-search framing feels right, but you still need a sense of which paths are worth following, and you need to know when to trust the results.

I’ve been doing more math as a hobby in the past few weeks — working on lesser-known conjectures and exploring proofs of hard theorems — than I could have managed over the previous several years. It’s an exciting time.

Jweb_Guru 5 hours ago|||
If you really believe this, try to use GPT 5.6 to prove an open problem you know nothing about. You might get lucky, but if you don't, you will soon discover that 5.6 can make "progress" towards a theorem without actually getting anywhere pretty much indefinitely.
Levitz 6 hours ago|||
Intelligence on its own is not very useful though. We put it on a pedestal because it creates huge potential when paired with other things, wisdom, discipline, empathy, but on its own?
petra 2 hours ago|||
Llm's do have discipline and persistence, though.
skekke 3 hours ago||||
It’s no diff to an educated human.

Stored potential.

But will that potential be converted that contributes to the economy..? That requires other traits.

Might be focus, might be discipline, might be the need to get revenge lmao.

This is what the llm-boosters miss. Progress is willed into existence.

ratg13 4 hours ago|||
AI / LLMs are not intelligence .. they are just a prediction engine that has been branded as 'intelligence' by marketing employees

At the end of the day it is still making a best guess at what the user wants based on data it has seen before.

It still requires someone smarter than the output to be able to evaluate if the result is any good, or just hand waving.

efdee 54 minutes ago||
Can you tell me the difference between that and doing code review for a task performed by a non-senior?
William_BB 8 hours ago|||
Ever heard of the infinite monkey theorem?

This is basically what LLMs do on really hard tasks. Prompt it a million times on a really hard problem and it might output the correct answer once.

ben_w 7 hours ago|||
The infinite monkey theorem assumes random distribution of symbols*.

Given the tokenizers have a vocabulary in the 10k-100k range, "a million attempts" will generally still only get the first token of the answer correct.

Even really rubbish models, e.g. talkie, the "what if we only use pre-1930s data to train a model?"** model, had to be almost all the way to the right answer to reach the really low HumanEval pass@100 score of ~0.04 (I'm only eyeballing the relevant chart).

* Actual monkeys not being like this is, while amusing, irrelevant

** https://talkie-lm.com/introducing-talkie

artninja1988 6 hours ago|||
>Ever heard of the infinite monkey theorem?

Even if every atom in the universe were a supercomputer generating a trillion trillion random characters every second since the Big Bang, the chance of producing Hamlet would still be essentially zero.

slashdave 6 hours ago|||
Iteratively leaning on lean to prove a conjecture is not intelligence, it is automation
tripleee 6 hours ago|||
how much can I bill for having good core values?
lvl155 8 hours ago|||
Intelligence was always relatively cheap. You can pick up a phone and get answers for free in most academic settings.
ben_w 7 hours ago|||
You've not seen how they react to noobs asking physics questions, I think.

Even when you've got an interesting idea, if you're an enthusiastic amateur who don't yet know enough to phrase the question right but does actually know the basics, they'll put you in the same category as the people who think healing crystals can power hyperspace telepathy with Anubis: "oh no not another one".

LLMs have infinite patience, but unfortunately come (came?) with too much sycophancy, giving even more people far too much confidence.

amelius 8 hours ago|||
(within limits)
skeke 8 hours ago|||
Oh brother

AI hasn’t even taken the class of jobs associated with customer service lmao

fidotron 8 hours ago|||
Do we employ mathematicians in customer service roles?
nicce 8 hours ago|||
Luckily the job situation for pure mathematicians was already bad.
akoboldfrying 7 hours ago||
I got a solid laugh out of this.
sscaryterry 8 hours ago|||
Thats a silly and obtuse comment.
fidotron 8 hours ago||
You mean the answer betrays the point: customer service is surprisingly hard, we just have a large number of people that are capable of doing it.

This is what the whole https://people.csail.mit.edu/brooks/papers/elephants.pdf is about.

sscaryterry 8 hours ago||
I stand by my point, you've not read the author's intent, instead you decided to twist words.
fidotron 8 hours ago||
What a silly and obtuse comment.
sscaryterry 8 hours ago||
[flagged]
fidotron 8 hours ago||
And that's why you aren't qualified for a customer service role but might be for something that current AI is competitive with.
12345hn6789 8 hours ago|||
Uh.... Have you ever called customer service lately?
ben_w 6 hours ago|||
Or indeed 20 years ago when "press 1 for foo, press 2 for bar" was already a thing.
skekke 3 hours ago||
Yes exactly
skekke 3 hours ago|||
I did yday.
witx 8 hours ago|||
yeah...right. Go touch some grass
esafak 9 hours ago|||
Once we figure out the pesky problem of how we're going to pay for housing, food, and healthcare.
duskdozer 8 hours ago|||
I think the big names behind the AI companies already have that problem solved. A lot of people probably won't like the solution very much though.
tctcd6 6 hours ago||
Yes, they have a final solution for all of us.
z3t4 8 hours ago||||
When machines are doing all the work - we no longer have to.
gf000 8 hours ago|||
> the couple multi-trillioners will have all the wealth of the world, and it will all crumble down

You mistyped it.

esafak 8 hours ago||||
Is that what you're going to tell your mortgage lender?
umanwizard 4 hours ago|||
What makes you think the people who own the machines will share their resources with you?
timcobb 8 hours ago|||
I can't stop wondering myself.... I'm writing some software with AI and wondering, why am I doing this? Will anyone need this? Will anyone have money to buy this?

Best I've come up with is we'll need to be adopted by technofeudlaist overlords to be our patrons like in the roman days

skeke 8 hours ago|||
This is some next level cringe stuff that shows why software engineers are easy to exploit - no backbone
georgemcbay 7 hours ago|||
> Best I've come up with is we'll need to be adopted by technofeudlaist overlords to be our patrons like in the roman days

Continually progressing AI (combined with our current socioeconomic systems) throws a lot of uncertainty into our mid to long term future, but I don't think this is going to be what happens.

There are billions more of "us" than of "them", people don't respond well en masse to a drastic worsening of their societal status and "they" are lagging very far behind on building their robot armies.

If we poorly navigate this transition the outcome should be worrying them more than it worries us.

ben_w 3 hours ago|||
> There are billions more of "us" than of "them", people don't respond well en masse to a drastic worsening of their societal status and "they" are lagging very far behind on building their robot armies.

Fortunately, yes, those robot armies do seem to be rather behind schedule*.

However, even if Musk dies of old age before anything like the Optimus can be connected to useful artificial intelligence, it can still be driven by the common joke a few years back that "AI" really stood for "Actually Indians".

When all the people currently upset about "immigrants coming here taking our jobs" discover those same people are now staying home and remote-working those same jobs over a VR headset and a Starlink connection... my guess is that by this point, Musk will have no political allies left.

> If we poorly navigate this transition the outcome should be worrying them more than it worries us.

It can screw everyone over. Literal communism was invented in response to Laissez-faire capitalism, and while Laissez-faire died with the Great Depression, the form of capitalism which succeeded it in the USA came into conflict with the USSR and gave us the Cold War, the Cuban Missile Crisis, etc.

* 2022 "next year": https://www.cnbc.com/2022/04/08/elon-musk-says-tesla-is-aimi...

timcobb 7 hours ago||||
Humans aren't sheep but in the broad average it seems like we have a strong tendency to fall inline.

Fwiw I was mostly joking. I agree that the techno overlords have no reason to keep us, unlike in Roman times.

esafak 7 hours ago|||
I don't know how you would translate the strength of a robot army to a human one; they haven't fought yet.
weregiraffe 9 hours ago||
Mathematics is a human-designed game that involves rearranging symbols.
MinimalAction 8 hours ago|||
That view is incredibly reductionist. It really is an efficient encoding of how nature behaves. It might be a human construct, but given how best it allows to understand nature (through principles of physics), it is uncanny to be any different from the language of nature.

Reminds me of Wigner's Unreasonable effectiveness of mathematics in natural sciences [0].

[0]: https://en.wikipedia.org/wiki/The_Unreasonable_Effectiveness...

JustFinishedBSG 8 hours ago|||
At a very high level mathematics is basically 100% text/symbolic rewriting. You start from some set of postulate assumed true and you do your thing to get a new different set of equivalent assertions in a form that is more useful.

I don’t know if LLMs will kill the working-mathematicians but at least seem like that it doesn’t seem absurd to imagine LLMs will be good at math…

sdwvit 6 hours ago||
Not yet peer reviewed
Noe2097 3 hours ago||
Can't wait for GPT to prove that P=NP (or not)!
Kirillekko 3 hours ago||
The amount of people several months ago stating that no one cares about the "unsolved" mathematical problems that AI is able to solve is funny.
spwa4 7 hours ago|
The problem is that we're going to have another deepseek moment when someone uses GLM or Kimi K3 to do this.
paytonjjones 5 hours ago|
What was the first DeepSeek moment? (genuine question, I'm out of the loop on what you mean)
theragra 2 hours ago||
I guess when cheap Chinese model was very close to SoTA models
More comments...