Statement- If perfect random proves P cannot equal NP
Explanation- The crux of P = NP is not figuring out the answer, but rather proving it, and the mathematical community has been approaching this from the completely wrong direction.
Idea- Rather than try to prove that a NP complete problem has no pattern,predictability, or rules, create an NP complete problem with no pattern, predictability, or rules.
How- The way I am going to attempt to do this, is to create a perfectly random Boolean Satisfiability problem.
Background- By definition, perfect randomness cannot be predicted accurately under any circumstances, and follows no “rules”. An easy way to think about this would be a magical theoretical machine that produces perfectly random numbers, no matter how much information we had, we would never be able to accurately predict the next number the machine produced, and the numbers it generated would follow no rules.
What this means is that if an NP complete problem is created that only uses perfect randomness, then it is impossible for a deterministic algorithm/turing machine to solve it in Polynomial time. The reason it would be impossible to solve in polynomial time, would be that the deterministic turing machine would be forced into a brute force algorithm, which would not solve the NP complete problem in polynomial time. We know the Deterministic Turing machine would be forced into brute force algorithm, because for it to work and create a deterministic algorithm more efficient then brute force, the same combinations of inputs must always produce the same output(s), which is not true with a problem completely created by perfect randomness.
To make this slightly easier to think about, or refute. I outlined the rules of a perfectly random Boolean satisfiability problem. All things about the problem must be generated perfectly randomly, this includes The length of each clause The length of the problem Each literal The order of the clauses, variables, and operations All operations
This problem was generated completely and perfectly randomly, meaning it is unpredictable, has no pattern, and no rules.
You asked for it in your title: yes, that would be quackery.
It doesn't make sense to talk about an NP problem that only uses perfect randomness: an NP problem is just a language (a set of finite sequences of symbols). If you meant a non-deterministic algorithm that only uses perfect randomness, then that again doesn't make sense: non-deterministic algorithms don't involve any notion of probability in their definition, or even randomness, they are best thought of as trying all possibilities simultaneously in parallel.
The terminology here is perhaps a bit confusing. For a simple example, we could consider the problem of finding out whether a number expressed in decimal notation is prime. Let's call that problem PRIME. Then the language in question is the set of all finite sequences of decimal digits that represent prime numbers. We identify the problem PRIME with that set. An algorithm that solves PRIME takes a finite sequence of decimal digits as an input and answers "Yes" if the sequence represents a prime number and "No" otherwise. If we were trying to do this by hand, we might think of a specific input, such as $9573$ as our "problem", but that is just one instance of the general problem that the algorithm is required to solve.