Response to the Gill Challenge
In response to Dr. Richard Gill's post of April 25, 2014
viewtopic.php?f=6&t=46
and his open challenge announced May 2, 2014
viewtopic.php?f=6&t=52#p1898
I hereby submit an 828KB compressed file, Directions.zip located at
http://geohologram.com/GillChallenge/Directions.zip
This file contains two files, AliceDirections.txt and BobDirections.txt which record the results of simulating Dr. Christian's thought experiment. Each of the lines in each .txt file contains one number, to be interpreted as an azimuthal angle in degrees (the simulation was done in the equatorial plane). You will notice that the values on corresponding lines are within a few degrees but not identical to each other, perhaps reflecting the difficulty Alice and Bob had in accurately measuring the angular momentum with the technology available to them.
In accordance with the Gill Challenge, correlations will be computed for four combinations of angles a (0 and 90 degrees) vs. b (45 and 135 degrees), by selecting a value for a and a value for b, and then running through both files concurrently.
For each line of the two files the two quantities
A_k = sign(a . u_k)
and
B_k = sign(b . v_k)
will be compared to measure the correlation.
Using the ordinary "flatland" dot product we expect to see classical correlations. In order to test Dr. Christian's theory (which is the point to the exercise) we will use his "sphereland" version of the dot product. This version generally gives the same value as the flatland version, but from time to time returns 0 instead. For clarity, here is the java implementation of this "sdotProduct":
static double sdotProduct( Point3D a, Point3D b )
{
double ab = a.dotProduct(b); // flatland dot product
return Math.abs(ab) < -1.0 + (2.0/Math.sqrt(1.0 + 3.0 * Math.random())) ? 0.0 : ab;
}
The correlation statistic to be calculated is given as:
E(a, b) = 1/N sum_k A_k B_k
This is fine for ordinary dot products which rarely return 0, but in sphereland, the sdotProduct often returns 0 and we will need to adjust the 1/N pre-factor to accomodate the 0 results. We will use the customary method to handle zeros when they occur, which is to subtract the 0 results from the denominator, as described here:
http://en.wikipedia.org/wiki/Quantum_correlation
These two changes to the flatland algorithm will give us the sphereland correlations, according to Dr. Christian's theory, and we can compare those to the terms of the challenge. Of course, anyone (not just Dr. Gill) is welcome to download the file, run the test, and report what they find.
Aloha,
Hugh Matlock
Princeton, NJ
viewtopic.php?f=6&t=46
and his open challenge announced May 2, 2014
viewtopic.php?f=6&t=52#p1898
I hereby submit an 828KB compressed file, Directions.zip located at
http://geohologram.com/GillChallenge/Directions.zip
This file contains two files, AliceDirections.txt and BobDirections.txt which record the results of simulating Dr. Christian's thought experiment. Each of the lines in each .txt file contains one number, to be interpreted as an azimuthal angle in degrees (the simulation was done in the equatorial plane). You will notice that the values on corresponding lines are within a few degrees but not identical to each other, perhaps reflecting the difficulty Alice and Bob had in accurately measuring the angular momentum with the technology available to them.
In accordance with the Gill Challenge, correlations will be computed for four combinations of angles a (0 and 90 degrees) vs. b (45 and 135 degrees), by selecting a value for a and a value for b, and then running through both files concurrently.
For each line of the two files the two quantities
A_k = sign(a . u_k)
and
B_k = sign(b . v_k)
will be compared to measure the correlation.
Using the ordinary "flatland" dot product we expect to see classical correlations. In order to test Dr. Christian's theory (which is the point to the exercise) we will use his "sphereland" version of the dot product. This version generally gives the same value as the flatland version, but from time to time returns 0 instead. For clarity, here is the java implementation of this "sdotProduct":
static double sdotProduct( Point3D a, Point3D b )
{
double ab = a.dotProduct(b); // flatland dot product
return Math.abs(ab) < -1.0 + (2.0/Math.sqrt(1.0 + 3.0 * Math.random())) ? 0.0 : ab;
}
The correlation statistic to be calculated is given as:
E(a, b) = 1/N sum_k A_k B_k
This is fine for ordinary dot products which rarely return 0, but in sphereland, the sdotProduct often returns 0 and we will need to adjust the 1/N pre-factor to accomodate the 0 results. We will use the customary method to handle zeros when they occur, which is to subtract the 0 results from the denominator, as described here:
http://en.wikipedia.org/wiki/Quantum_correlation
These two changes to the flatland algorithm will give us the sphereland correlations, according to Dr. Christian's theory, and we can compare those to the terms of the challenge. Of course, anyone (not just Dr. Gill) is welcome to download the file, run the test, and report what they find.
Aloha,
Hugh Matlock
Princeton, NJ


