Published in Physical Review A: Using weak values to experimentally determine “negative probabilities” in a two-photon state with Bell correlations

It's well known that quantum entangled systems can exhibit correlations that go beyond those that could be seen if Nature worked in intuitive “classical” ways. However, as Richard Feynman noted, classical theory can support exhibiting such correlations if we invoke negative probabilities to describe their properties. What he did not do was specify how these negative probabilities ought to be chosen, and without any justification, an infinite number of different combinations could be chosen that will satisfy the relevant equations.

The concept of negative probabilities seems nonsensical because they cannot actually be observed—indeed, they cannot be observed even within the framework of quantum theory due to the effects of measurement back-action. Here, we show how they can instead be inferred through the use of weak measurements, where a meter is only weakly coupled to the property of interest, thereby avoiding the back-action problem. Each individual weak measurement has a high uncertainty, but by measuring many instances of a larger ensemble, an average can be found that implies a specific set of anomalous (i.e. beyond 0–1) probabilities. With an experimental demonstration, we thus give an empirically justified method for choosing the anomalous probabilities that allow the classical model [...]

Read this post

Published in Nature Photonics: Experimental three-photon quantum nonlocality under strict locality conditions

Quantum mechanics implies properties of Nature that clash with our intuitive notions of how the universe ought to work. Testing these properties (to see if quantum mechanics is, indeed, true) involves generating entangled quantum states of two or more particles and measuring them under a number of strict conditions. While work is progressing to meet all of these conditions when using only two particles, no one has yet met even one of these conditions for more than two particles, which is considerably more difficult experimentally. Here, we conduct an experiment where we meet two of the most challenging conditions—namely measurement locality and freedom of choice—while generating triplet entangled photon states. We demonstrate that quantum mechanics wins out over intuition, measuring a violation of Mermin's inequality outside the classical bound by nine standard deviations.

C. Erven, E. Meyer-Scott, K. Fisher, J. Lavoie, B. L. Higgins, Z. Yan, C. J. Pugh, J.-P. Bourgoin, R. Prevedel, L. K. Shalm, L. Richards, N. Gigov, R. Laflamme, G. Weihs, T. Jennewein, and K. J. Resch
Nature Photonics 8, 292–6 (2014)

Also check out the News and Views article in the same issue, written [...]

Read this post

Adding the binary entropy function to LibreOffice Calc

Lately at work I've been doing some data analysis in LibreOffice Calc that requires the binary entropy function. The function itself looks like H2(x) =  − xlog2(x) − (1 − x)log2(1 − x), where 0log2(0) is taken to be 0. It's this latter point that makes things a little tricky. LibreOffice Calc doesn't have this function built-in, sadly, and you have to explicitly guard for the case where x is 0 or 1, which is not easy to pull off inside a cell.

So I wrote a basic macro that implements it:

Function BINENT(x)
    If x = 0 Or x = 1 Then
        BINENT = 0
    ElseIf x > 0 And x < 1 Then
        BINENT = -(x*Log(x) + (1 - x)*Log(1 - x))/Log(2)
    Else
        BINENT = Null
    End If
End Function

To be able to use BINENT in Calc, go to the “Tools” menu, “Macros”, “Organize Macros”, and select “LibreOffice Basic...”. You'll be shown a window with a library hierarchy on the left. Under the “My Macros” collection, select the “Standard” library, then click the “New” button on the right. This will open up the editor. Copy and paste the BINENT code above into the editor window [...]

Read this post

Published in Optics Express: Generating polarization-entangled photon pairs using cross-spliced birefringent fibers

Generating entangled photon states is vital for numerous quantum communications and quantum computation primitives. Here we pioneer a new approach to in-fiber generation of entangled photon pairs. We take inspiration from a technique in bulk-optics, where two nonlinear crystals are sandwiched close together, and splice two pieces of birefringent optical fiber together at 90 degree orientation. With suitable compensation optics, all of which could be implemented in fiber, we show fidelity with a maximally-entangled Bell state of better than 92%.

E. Meyer-Scott, V. Roy, J.-P. Bourgoin, B. L. Higgins, L. K. Shalm, and T. Jennewein
Optics Express 21, 6205–12 (2013)

Read this post

Published in Journal of Lightwave Technology: Novel high-speed polarization source for decoy-state BB84 quantum key distribution over free space and satellite links

Here we detail our work on optoelectronics implementing a high-speed high-fidelity source of optical quantum states for quantum encryption.

Z. Yan, E. Meyer-Scott, J.-P. Bourgoin, B. L. Higgins, N. Gigov, A. MacDonald, H. Hübel, and T. Jennewein
J. Lightwave Tech. 31, 1399–408 (2013)

Read this post

Published in New Journal of Physics: A comprehensive design and performance analysis of low Earth orbit satellite quantum communication

We perform a thorough theoretical analysis of the expected key rate, success of Bell test, and teleportation distance of experiments performed between the ground and a satellite in low Earth orbit. Our findings demonstrate that successful, regularly repeatable demonstrations are feasible with current technologies and relatively small telescopes.

J.-P. Bourgoin, E. Meyer-Scott, B. L. Higgins, B. Helou, C. Erven, H. Hübel, B. Kumar, D. Hudson, I. D'Souza, R. Girard, R. Laflamme, and T. Jennewein
New J. Phys. 15, 023006 (2013)

Read this post


← Previous | Page 3 of 5 | Next →