minkwe wrote:This thread is concerned with explaining what the correct bound should be since we know it isn't 2.
Yep, and experiments consistently indicate that it is greater than 2 and so far the indication is that it is never greater than
minkwe wrote:This thread is concerned with explaining what the correct bound should be since we know it isn't 2.
FrediFizzx wrote:minkwe wrote:This thread is concerned with explaining what the correct bound should be since we know it isn't 2.
Yep, and experiments consistently indicate that it is greater than 2 and so far the indication is that it is never greater than. Including classical experiments. And the quantum theory prediction is that the maximum is
so QM never actually "violates" CHSH since that is most likely the real upper bound for CHSH as Joy has explained in this thread. I think I had the "cheat" backwards in what I said previously. I think Joy is right that the real "cheat" is restricting it to 2 by limiting oneself to scalar numbers.
jreed wrote:Since the sum consists of N +1 or -1 values, the mean must always be less than or equal 1 or greater than or equal -1.
jreed wrote:CHSH is now calculated by the equation:
jreed wrote:Here's an explanation of a Bell experiment. I'll explain where the 2 comes from and why anything greater than that isn't possible with classical physics. That includes 2*Sqrt(2) and 4.
The experiment consists of 2 observers, Alice and Bob each with fair coins and detectors that can be rotated to several angles, along with a source of electrons. There are also 4 summers, labeled AB, AB', A'B and A'B'. The summers are all set to zero initially. Alice's detector is able to be set to two angles, a = 0 or a' = 90 degrees. Bob's detector is able to be set to two angles also, b = 45 or b' = 135 degrees.
Now the experiment starts. Alice flips her coin and sets her detector to a(0 degrees) if it's heads, or a'(90 degrees) if it's tails. Bob does the same, flipping his coin and setting his detector at either 45 or 135 degrees. The source, which is halfway between Alice and Bob, emits two electrons which are detected by Alice's and Bob's detectors. The detectors have indicators on them that show whether the electron's spin is aligned (+1) or anti-aligned (-1) with the detector. Alice records this value and calls it A, if she picked angle a, or A' if she picked angle a'. Similarly Bob records his spin value and calls it B or B'. They multiply these values together and get either +1, if both spins were aligned or anti-aligned or -1 if spins were aligned opposite to each other. This value is summed into one of the counters AB, AB', A'B or A'B', depending on angle selection, as should be clear from the notation.
After many experiments, the summers contain the results of all experiments. The following means can be calculated:
by dividing the sum by the number of counts in that sum, N. Since the sum consists of N +1 or -1 values, the mean must always be less than or equal 1 or greater than or equal -1. CHSH is now calculated by the equation:
Which clearly must be less than or equal 2, or greater than or equal -2.
Joy Christian wrote:jreed wrote:Since the sum consists of N +1 or -1 values, the mean must always be less than or equal 1 or greater than or equal -1.
Very good. You are catching up. So we havejreed wrote:CHSH is now calculated by the equation:
Indeed. So with the above mean we get the two extreme values,
and
Thus we have
which is indeed as clear as bell.
jreed wrote:Sorry, but I must apologize for missing one important step. Remember I said that Alice and Bob each flip a coin to randomize their choice of detector angles. This means that in the mean calculations the term <AB>, for example, can be written as <A><B>, since the mean of the product of two uncorrelated random variables can be written as the product of the means and similarly for the other terms. This allows CHSH to be written as:
or, factoring this:
Now since all these terms are still bounded by -1 and 1, it's clear as a bell that CHSH must be greater than -2 and less than 2.
How did I cheat? I don't like cheaters! Please let me know so I can correct this.
Joy Christian wrote:You are supposed to know the elementary fact that in the EPR-B experiments we always observe
and.
FrediFizzx wrote:Joy Christian wrote:You are supposed to know the elementary fact that in the EPR-B experiments we always observe
and.
And I believe those are actually Bell conditions also.
jreed wrote:Here's an explanation of a Bell experiment. I'll explain where the 2 comes from and why anything greater than that isn't possible with classical physics. That includes 2*Sqrt(2) and 4.
//Adaptation of Albert Jan Wonnink's original code
//http://challengingbell.blogspot.com/2015/03/numerical-validation-of-vanishing-of.html
function getRandomLambda()
{
if( rand()>0.5) {return 1;} else {return -1;}
}
batch test()
{
set_window_title("Test of Joy Christian's CHSH derivation");
N=20000; //number of iterations (trials)
I=e1^e2^e3;
s=0;
a1=1.00*e1 +0.0001*e2 + 0.0001*e3;
b1=0.7071068*e1 + 0.7071068*e2 + 0.0001*e3;
a2=0.0001*e1 + 1.00*e2 + 0.0001*e3;
b2=0.7071068*e1 + -0.7071068*e2 + 0.0001*e3;
for(nn=0;nn<N;nn=nn+1) //perform the experiment N times
{
lambda=getRandomLambda(); //lambda is a fair coin,
//resulting in +1 or -1
mu=lambda * I; //calculate the lambda dependent mu
A1=-mu.a1;
A2=-mu.a2;
B1=mu.b1;
B2=mu.b2;
q=0;
if(lambda==1) {q=(A1 B1)+(A1 B2)+(A2 B1)-(A2 B2);}
else {q=(B1 A1)+(B2 A1)+(B1 A2)-(B2 A2);}
s=s+q;
}
mean_F_A_B=s/N;
print(mean_F_A_B, "f");
prompt();
}jreed wrote:Which clearly must be less than or equal 2, or greater than or equal -2.
I hope this explanation shows what a Bell believer thinks, and that it is clear as a bell (pun intended).
Joy Christian wrote:I will let you figure out now what these values give you for your revised expressions for CHSH.
jreed wrote:Remember I said that Alice and Bob each flip a coin to randomize their choice of detector angles. This means that in the mean calculations the term <AB>, for example, can be written as <A><B>, since the mean of the product of two uncorrelated random variables can be written as the product of the means and similarly for the other terms.
jreed wrote:If you want to find out where CHSH comes from, you should read the article by Bell, "Bertlmann's socks and the nature of reality". It's in his book. This explains it all very well. I've read it and it makes sense, but I won't try to give all the details here. Basically it says that for certain measurements the joint probability P(A,B|a,b,lambda) can be written as:
P1(A|a,lambda)*P2(B|b,lambda) where lambda is a hidden variable. The rest follows from this.
jreed wrote:If you want to find out where CHSH comes from, you should read the article by Bell, "Bertlmann's socks and the nature of reality". It's in his book. This explains it all very well. I've read it and it makes sense, but I won't try to give all the details here. Basically it says that for certain measurements the joint probability P(A,B|a,b,lambda) can be written as:
P1(A|a,lambda)*P2(B|b,lambda) where lambda is a hidden variable. The rest follows from this.
Joy Christian wrote:So get this through your head, Richard Gill. Bell's theorem is dead. It was actually stillborn. And It's corpse was put to rest permanently on the 20th of March 2007.
jreed wrote:If you want to find out where CHSH comes from, you should read the article by Bell, "Bertlmann's socks and the nature of reality". It's in his book. This explains it all very well. I've read it and it makes sense, but I won't try to give all the details here. Basically it says that for certain measurements the joint probability P(A,B|a,b,lambda) can be written as:
P1(A|a,lambda)*P2(B|b,lambda) where lambda is a hidden variable. The rest follows from this.
Xray wrote:jreed wrote:If you want to find out where CHSH comes from, you should read the article by Bell, "Bertlmann's socks and the nature of reality". It's in his book. This explains it all very well. I've read it and it makes sense, but I won't try to give all the details here. Basically it says that for certain measurements the joint probability P(A,B|a,b,lambda) can be written as:
P1(A|a,lambda)*P2(B|b,lambda) where lambda is a hidden variable. The rest follows from this.
Dear jreed (who, with due respect and imho, does not write here -- in this instance -- like Richard Gill at all.
Joy Christian wrote:Xray wrote:jreed wrote:If you want to find out where CHSH comes from, you should read the article by Bell, "Bertlmann's socks and the nature of reality". It's in his book. This explains it all very well. I've read it and it makes sense, but I won't try to give all the details here. Basically it says that for certain measurements the joint probability P(A,B|a,b,lambda) can be written as:
P1(A|a,lambda)*P2(B|b,lambda) where lambda is a hidden variable. The rest follows from this.
Dear jreed (who, with due respect and imho, does not write here -- in this instance -- like Richard Gill at all.
Nonsense. "Richard Gill" is written all over John Reed's post above. All John Reed has to do to dispel this accusation is to confirm that his post above was written by him alone, without any interference from Gill. He has to simply state that Gill did not approach him by private email, reffered to this discussion on this forum, and dictated the above post, after John Reed made a real boo-boo in his previous attempt to derive the bound of 2 on CHSH: viewtopic.php?f=6&t=199&p=5572#p5537.
Return to Sci.Physics.Foundations
Users browsing this forum: No registered users and 137 guests
