HackerTrans
トップ新着トレンドコメント過去質問紹介求人

mmaaz

no profile record

投稿

Show HN: Sostactic – polynomial inequalities using sums-of-squares in Lean

github.com
14 ポイント·投稿者 mmaaz·3 か月前·1 コメント

Finding bugs across the Python ecosystem with Claude and property-based testing

red.anthropic.com
1 ポイント·投稿者 mmaaz·6 か月前·0 コメント

[untitled]

1 ポイント·投稿者 mmaaz·6 か月前·0 コメント

[untitled]

1 ポイント·投稿者 mmaaz·7 か月前·0 コメント

Mathematics is hard for mathematicians to understand too

science.org
134 ポイント·投稿者 mmaaz·8 か月前·148 コメント

Agentic Property-Based Testing: Finding Bugs Across the Python Ecosystem

mmaaz-git.github.io
2 ポイント·投稿者 mmaaz·8 か月前·1 コメント

Property-based testing of batch-invariant operations

mmaaz.ca
1 ポイント·投稿者 mmaaz·9 か月前·0 コメント

コメント

mmaaz
·3 か月前·議論
great q! there's a variety of levers here. for one, it uses newton polytope pruning to prune the monomial basis -- this often helps a lot in practice, especially for sparse polynomials. also, both the lean and python interfaces allow to pass degree bounds in the case of a ratio of SOS, as well as a template for the denominator (e.g., ax^2 + ay^2), which also cuts down on the monomials, as well as possibly introducing affine constraints tying coefficients together. of course, in the positivstellensatz case, you can also specify the degree bound.

I wrote about all these tricks here https://mmaaz.ca/writings/sostactic.html.

and yeah, there is a clli interface for the python backend, the lean interface calls the cli.
mmaaz
·6 か月前·議論
Really cool work!
mmaaz
·6 か月前·議論
Very cool!
mmaaz
·7 か月前·議論
To provide some additional context: the algorithm being used by QEPCAD is cylindrical algebraic decomposition, which has a time complexity 2^2^n (yes, doubly exponential). So, while in theory many problems could be solved by tossing them into CAD, this is often not tractable. This isn’t a knock against CAD: imo it is one of the most fundamental and under-appreciated algorithms and I devoted a big chunk of my PhD thesis to it.

By the way, to my knowledge QEPCAD is essentially the only complete open-source implementation of it. Mathematica also implements it. I wrote one of the few open-source implementations of it, although it does not do quantifier elimination; it only returns the truth of a given statement. https://github.com/mmaaz-git/cad.
mmaaz
·7 か月前·議論
this is really brilliant!!
mmaaz
·8 か月前·議論
This website showcases our agent, based on Claude, that autonomously infers properties of code and tests them using Hypothesis. Our agent found hundreds of bugs across popular Python libraries, some of which we have since reported and patched! On this website, you can browse all of the bugs it found. You can read the linked paper and code for more information.
mmaaz
·9 か月前·議論
Exactly the same here, late night would be my most productive. I don’t know how sustainable this is as I mature lol.
mmaaz
·9 か月前·議論
Tbh the code I was writing wasn’t that complex from an engineering perspective. During my PhD I was writing “research code” which is more like writing scripts, not a full blown application or library. The most challenging part was translating the math/algorithms to code. And I would just get into a flow state sometimes and could not stop haha. I had a (bad?) habit during my PhD that whenever I was stuck on a problem I just kept bashing my head against it until I solved it (code or math).
mmaaz
·9 か月前·議論
Wow, I feel for you, that sounds really scary. Honestly no, I’ve scarcely changed how I work, except for being more strict about keeping a rigid schedule, forcing myself to take breaks, etc. It’s only my left eye that can’t read, the right eye is totally fine. But I do feel the eye strain come on sooner from relying on one eye.
mmaaz
·9 か月前·議論
Hmm not sure what you mean. In the case of MOGAD, it actually attacks the lining of the nerve. The MOG means myelin oligodendrocyte glycoprotein, which is a protein in the myelin sheath.
mmaaz
·9 か月前·議論
Good advice. I didn’t have a stroke but a couple months ago I developed blindness in my left eye. It came down to my optic nerve being inflamed. I was later diagnosed with a rare autoimmune condition called MOGAD which “attacks” the optic nerve. Thankfully my vision is approx 95% recovered by now. But I still can’t read, eg code on my laptop, which is scary (my right eye is basically making up for it). And I’m scared of another attack happening. So I’ve been really looking after my health and trying not to do the 12+ hr coding benders I used to do. I appreciate these tips!
mmaaz
·9 か月前·議論
Some time ago, I was on a team of researchers collaborating with a hospital to build some ML models for them. I joined the project somewhat late. There was a big fuss over the fact that the hospital servers were not connected to the internet, so the researchers couldn't use GitHub, so they had been stalled for months. I told them that before GitHub there was `git`, and it is already on the servers... I "set up" a git system for them.
mmaaz
·9 か月前·議論
I love this as someone who used to work on max-weight matchings and now works on LLMs :)
mmaaz
·9 か月前·議論
Fascinating insight into the industry. Thanks for sharing.
mmaaz
·10 か月前·議論
Curious what you mean by this. Do you mean like an AlphaEvolve type thing?
mmaaz
·10 か月前·議論
The state of the art solvers are the proprietary ones like Gurobi, FICO, Cplex, Mosek, etc. A major contributor to the proprietary "sauce" is in the heuristics they use. For example, all solvers will have a "presolve" phase which attempts to eliminate redundant constraints/variables. There may be some ML they are using behind the scenes to derive these heuristics, I'm not sure, although I know it is a major research area.

Otherwise, the basic underlying algorithms are all the same, as in the textbook: branch-and-bound and so on.
mmaaz
·2 年前·議論
I tried it with a certain conceptual problem in computer algebra (which I’ve had dismal results on GPT o1-preview and o1-mini… sort of a private benchmark) and it spent 2 minutes arguing with itself about what a Python function was called.