I tried to do the task of finding out the process by which it was created by looking only at the result value(clue) of the numpy.random.randint function, but I heard it’s impossible.(e.g. finding seed)
-
If there is a rigorous proof that the above process is impossible in theory, I would like to know the proof.
-
Even if this is just impossible with modern technology, I would like to know the names of the scholars who claimed it and why.
-
If the proof of this cannot exist in theory, I would like to know the proof of it.(Proof that no proof exists, incompleteness)
Example code:
import numpy as np
x = np.random.randint(0, 20, size = (5, 6))
print(x)
Example result(clue):
[[ 3 9 4 10 9 2]
[ 6 4 7 15 1 10]
[11 2 4 7 1 16]
[11 18 18 10 10 4]
[17 1 6 11 10 13]]
I would appreciate it if you could introduce me to the papers written by experts in this field.