to your HTML Add class="sortable" to any table you'd like to make sortable Click on the headers to sort Thanks to many, many people for contributions and suggestions. Licenced as X11: http://www.kryogenix.org/code/browser/licence.html This basically means: do what you want with it. */ var stIsIE = /*@cc_on!@*/false; sorttable = { init: function() { // quit if this function has already been called if (arguments.callee.done) return; // flag this function so we don't do the same thing twice arguments.callee.done = true; // kill the timer if (_timer) clearInterval(_timer); if (!document.createElement || !document.getElementsByTagName) return; sorttable.DATE_RE = /^(\d\d?)[\/\.-](\d\d?)[\/\.-]((\d\d)?\d\d)$/; forEach(document.getElementsByTagName('table'), function(table) { if (table.className.search(/\bsortable\b/) != -1) { sorttable.makeSortable(table); } }); }, makeSortable: function(table) { if (table.getElementsByTagName('thead').length == 0) { // table doesn't have a tHead. Since it should have, create one and // put the first table row in it. the = document.createElement('thead'); the.appendChild(table.rows[0]); table.insertBefore(the,table.firstChild); } // Safari doesn't support table.tHead, sigh if (table.tHead == null) table.tHead = table.getElementsByTagName('thead')[0]; if (table.tHead.rows.length != 1) return; // can't cope with two header rows // Sorttable v1 put rows with a class of "sortbottom" at the bottom (as // "total" rows, for example). This is B&R, since what you're supposed // to do is put them in a tfoot. So, if there are sortbottom rows, // for backwards compatibility, move them to tfoot (creating it if needed). sortbottomrows = []; for (var i=0; i
For all the press that AI and all the companies behind it get, it's rare to find any story that identifies something the Large Language Models (LLMs) behind today's Artificial Intelligence technologies have accomplished that represents a true advancement.
Most stories are about AI's teething problems, such as its problems in creating images of people with too many figures or some other form of body horror dystopia. Other news items deal with how the ability of AI to completely automate writing is negatively impacting education, publishing, music, filmmaking, and other fields.
But stories involving AI systems doing anything new and useful, that hasn't been seen or done before, are rare.
That story still hasn't been written. At least in any traditional media. But there is breaking news of an AI system that's broken new ground in mathematics. By generating a new mathematical proof that mathematicians have verified is correct
That story came to our attention through a post at X and it's probably best to let that post tell the tale:
GPT-5 just casually did new mathematics.
Sebastien Bubeck gave it an open problem from convex optimization, something humans had only partially solved. GPT-5-Pro sat down, reasoned for 17 minutes, and produced a correct proof improving the known bound from 1/L all the way to 1.5/L.
This wasn’t in the paper. It wasn’t online. It wasn’t memorized. It was new math. Verified by Bubeck himself.
Humans later closed the gap at 1.75/L, but GPT-5 independently advanced the frontier. A machine just contributed original research-level mathematics.
If you’re not completely stunned by this, you’re not paying attention.
We’ve officially entered the era where AI isn’t just learning math, it’s creating it.
Here's the X post in which Bubeck announced the accomplishment.
But as Bubeck later notes, while GPT-5 did something that was both new and novel, humans still beat AI to the punch and delivered a better proof focused on the convex optimization problem that outperforms the AI-generated proof:
Now the only reason why I won't post this as an arxiv note, is that the humans actually beat gpt-5 to the punch :-). Namely the arxiv paper has a v2 https://arxiv.org/pdf/2503.10138v2 with an additional author and they closed the gap completely, showing that 1.75/L is the tight bound.
While that better proof clearly beat it, the unexpected artificially generated proof demonstrates AI systems are becoming more capable and useful. Because they are, more things are becoming possible.
The open question however is when will AI's promise and ability to deliver on it outshine all the AI-generated slop that dominates what it has done to date?
Image Credit: Microsoft Copilot Designer. Prompt: "An image illustrating the concept of an artificial intelligence system creating an entirely new mathematical proof".
Labels: math, technology
Welcome to the blogosphere's toolchest! Here, unlike other blogs dedicated to analyzing current events, we create easy-to-use, simple tools to do the math related to them so you can get in on the action too! If you would like to learn more about these tools, or if you would like to contribute ideas to develop for this blog, please e-mail us at:
ironman at politicalcalculations
Thanks in advance!
Closing values for previous trading day.
This site is primarily powered by:
The tools on this site are built using JavaScript. If you would like to learn more, one of the best free resources on the web is available at W3Schools.com.