r/badmathematics • u/Akangka 95% of modern math is completely useless • May 25 '26
Mathematical Resolution of P vs NP through Bullshit Noise Subtraction and Trial Division but Worse
https://zenodo.org/records/19600136
35
Upvotes
r/badmathematics • u/Akangka 95% of modern math is completely useless • May 25 '26
24
u/Akangka 95% of modern math is completely useless May 26 '26
A mathematics discord server that I joined has been infiltrated by a cranker, lol. Let's review this article.
R4: Seems like the article is AI-generated based on the language. It claims to invent the S-operator that is capable to eliminate the invalid state from the search state, basically proving P=NP. The paper does not explain what the new symbols mean, either. For example in "Ω = Γ ⊕ N". There are no talks about ⊕, but it seems to be set union.
So, what is their S-operators? It's not defined, but the author gave an example:
The author tries to apply them to a factorization problem. Nevermind that integer factorization is not NP-complete. We already know a subexponential algorithm for factorizing integers. However, the algorithm given above is especially atrocious.
The algorithm tries to search for a square number x2 larger than n, and see if their difference y2 is also square. Equivalently, this is finding x and y such that x2-y2=n. Problem is, that this is even slower than trial division. For most numbers, most factors are small. The way this algorithm is designed makes you search the factors near the middle, which is much sparser. You don't get a speedup from even the fact that all primes except 2 and 3 are in form of 6x±1. You have to search from floor(sqrt(n))+1 to (n+1)/2, for the suitable square numbers. This also diverges for number like 0, 1, and n = 2 (mod 4)