|
|
|
|
|
by calf
871 days ago
|
|
Why is randomness non-computable? In computer science, the theorem is that the set of all Deterministic Finite Automata is equivalent to the set of all Nondeterministic Finite Automata. It is a non-obvious theorem that is a one page proof taught in every junior level theory of computation course. This theorem is what lets deterministic and nondeterministic Turing machines to be used interchangeably in many subsequent proof sketches in these classes. |
|
The "Nondeterministic" in NFA means its transition function goes from states to sets of states, instead of from states to states. Informally, it can explore multiple paths in parallel for the cost of one. They're not probabilistic.