|
|
|
|
|
by explaininjs
1234 days ago
|
|
Nope, entangled pairs are basically the following in JS: class RawQuantum {
value = () => this._hidden ??= Math.random()
}
class EntangledQuantum extends RawQuantum {
valueA = () => this.value()
valueB = () => 1 - this.value()
}
const {valueA, valueB} = new EntangledQuantum()
You can give valueA to one procedure and valueB to another and know that whenever the _hidden field is observed, the two will have complementary views of the data. But this doesn't give the two procedures any way to communicate, and there's no measurable difference between resolving the _hidden filed now or later. |
|
[1] https://en.wikipedia.org/wiki/Bell%27s_theorem