Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

I agree with the sibling comment by eigenket:

> Everything up to the [spoiler ahead] in this comment is (as far as I can tell) exactly how things work in standard formulations of Bell's inequality. There's nothing weird or crackpot there.

Moreover, to clarify, it's not necessary that the hidden variables can be measurable or that you can set them. So if a system like the one you described must follow the Bell's Inequality if all the other hypothesis are true.

I read the code and it looks like an accurate implementation of the model proposed in the paper.

From the paper you liked:

> However, the expectation values E(X1X2), displayed in (13) contain a factor 1/2, meaning that they do not violate CHSH inequality.

I agree with that part. The model should not violate the Bell's inequality or the equivalent version.

> The agreement with quantum predictions is obtained only after the “photon identification procedure”, which selects, from the raw data, final data samples.

The selection rule is the weird part. It's described in equations 7 and 8.

  x := sign(1 + cos[2(a − φ)] − 2 · r1)
where r1 is a uniform random value between 0 and 1.

a is the angle of the polarizer

φ is the secret variable that is the angle of the photon. (QM says that this type of entangled photons have no a secret angle, this model assumes that each photon has a hidden variable that is the secret value φ.)

So far so good, this calculation gives the expected result if you assume that φ is chosen from a uniform distribution between 0° and 360°.

  v := r2 |sin[2(a − φ)]|^d (Vmax − Vmin) − Vmax
  selected := (v ≤ V)
where r2 is a uniform random value between 0 and 1.

With the numbers in your program

  v := r2 |sin[2(a − φ)]|^2 (10 − 0) − 10
  selected := (v ≤ -9.99)
that is equivalent to

  selected := r2 |sin[2(a − φ)]|^2 ≤ -0.001
I've don't remember anything similar, and I can't imagine what it means experimentally.

Most of the times r2 is not tiny, so most of the times this means that the sine is tiny that means that the secret angle of the photon is almost aligned or almost orthogonal to the polarizer.

So this is a device that can measure the secret angle of the photon. This is not a real device, so it can't be proposed as an alternative explanation of the violation of the Bell's inequality.

You may be wondering why I claim it's not a real device.

If you have a detector of polarization, once you fix the angle 'a', you can't distinguish:

1) Unpolarized light, that is in particular the type of light used in a Bell's inequality test where the state is (|00> + |11>)/sqrt(2) or in other versions (|01> + |10>)/sqrt(2), where 0 is horizontal and v is vertical, or a uniform random values of φ in the model of the paper

2) Light polarized in 45° to the detector's angle, that is like a constant φ in both models.

In both cases, you detect 50% of the photons.

If you use the selection device of this paper,

1) with unpolarized light you will get selections when r2 is very small or when φ is almost paraller or orthogonal to the angle a.

2) with polarized light at 45° you will get selections when r2 is very small

So with polarized light at 45° the number of events will be much smaller than with not polarized light.

In particular if you have the source of not polarized light and the detector, adding a polarizer at 45° in the middle will reduce the number of events in the firs case to 1/4 and in the other to almost 0.



> -0.001

Should be -0.01 You have added an extra 0, but it's not the point. You can pick any V, but the bigger it is the more quantum like the correlation are.

>secret angle

Also called "phase" this is the thing there is to "see" : It has a definite value for a single experiment, but every time you do the experiment it has a different value. It behaves like a random variable and that's what allows you to replicate the behavior of what QM does by generating random numbers. That's the subtlety that makes it so that Bell's theorem don't apply.

>So this is a device that can measure the secret angle of the photon.

It uses the secret angle of the photon, to give you something observable, but doesn't leak info about the state. ("it mixes trajectory space" so that each trajectory behave the same, but trajectory are independent, each trajectory just cycle through all the possible hidden states (like the seeds of a linear congruential generator) ).

For a definite (monte-carlo) trajectory, the photon will be definitely absorbed, or not absorbed, (or maybe absorbed later), but the simulator has a state and knows unambiguously how to evolve it, you as an observer though will have to define measurements more ambiguously (due to Heisenberg uncertainty principle (but that's not the point here) )

One other way to see what we are trying to do is factorizing the QM integral.

In QM you have proba = integral( wavefunction ),

You introduce a random variable and condition on it by writing it as proba = integral( integral( wavefunction | hidden_state) dhidden_state )

The point being that you can be smart in the choice of the hidden_state such that the inner integral behaves classically : You push the quantum correlation to the outside integral.

If you want to calculate the probability, you use monte-carlo for the outside integral. And classical simulation for the inner one.

But once written in such a way, you realise that if you want to simulate a universe (like Nature does it), you don't have to simulate all trajectories : Any one will do, as they are all independent from each other.

From inside the universe because you don't have the initial phase, if you want to calculate the proba you have to do a monte-carlo.


>> secret angle

> Also called "phase" this is the thing there is to "see" : It has a definite value for a single experiment, but every time you do the experiment it has a different value. It behaves like a random variable and that's what allows you to replicate the behavior of what QM does by generating random numbers. That's the subtlety that makes it so that Bell's theorem don't apply.

That's standard local hidden variable theory. Bell's theorem apply.

The problem is that the device that is used in the article gives the wrong prediction for a beam with 50% vertically (φ=0) polarized light and 50% horizontally polarizad light (φ=90°). What is the ratio of selected photons as a function of the angle a?




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: