Can’t we confirm P does not equal np based on simple equations
For example this problem will never be solved with an algorithm and can only be solved by guessing (nondeterministic)
Problem- You have to open a lock on a file you downloaded, you know there are six variables with specific randomly assigned numerical values(dice roll), if you get all the values correct the lock opens instantly and the file is accessible, if you get any of them wrong nothing happens. After you get the combination incorrect each number has a 50% chance of going down one and a 50% chance of going up one.
Here is the problem a,b,c,d,e,f=True or False
This is the information you have to work with- a<=1000 b<=1000 c<=1000 d<=1000 r<=1000 f<=1000
An example of an answer would be (104, 289, 31, 576, 942, 723) if it was false the you would see the word false on the screen, if it was correct the file would open
No function algorithm or equation can be created to solve this faster than a nondeterministic algorithm. Because functions, algorithms, and equations are all created based on patterns and correlations, and this lock is created to have no patterns. We know this because every variable is randomly assigned a number less than or equal to 1000, and all of those numbers have an equal chance of appearing. Each variable has no effect on the other variables' results. And each time it moves up or down 1 it is also completely random.
Since there's no pattern, no equation will be applicable to multiple versions of this problem, even if it is solved nondeterministically.
And since Mathematics is the science of patterns and relationships
Since there's no pattern, and there is no relationship between the values in one problem and the values in another, no formula or algorithm can be created to solve it in polynomial time, and therefore P does not equal NP.
I am only in highschool so I know this is probably stupid, but could someone explain if it’s wrong and why it’s wrong.
The problem isn't in NP because a computer can't (by itself) check whether or not a solution is correct. To check it, you have to try to open the lock, which requires the computer to interact with something else.