Multipartite Entanglement Verification

From Quantum Protocol Zoo
Revision as of 12:07, 30 August 2019 by Rhea (talk | contribs) (Created page with "This [https://www.nature.com/articles/ncomms13251 example protocol] implement the task of Multipartite entanglement verification in a multinode quantum network. The protocol u...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This example protocol implement the task of Multipartite entanglement verification in a multinode quantum network. The protocol uses classical communication and measurements of quantum states to verify whether the parties share a GHZ state. We present here a loss tolerant version of the protocol, which doesn't assume that the source of the state nor the parties (except one) are trusted.

It has various application in a setting where at each timestep a source shares a state. Most of the time this state will be verified using this protocol and once in a while it will be used to perform some computation or communication protocol (e.g. Anonymous transmission)

Tags: Entanglement Verification, Multi Party Protocols, GHZ state

Assumptions

  • Network: The network consists of n nodes that are fully identified and completely connected with pairwise authenticated classical channels. Additionally, there is a secure classical broadcast channel.
  • Adversarial model:: It suffices for one party to be honest. A dishonest party can be in control of the source.

Outline

This protocol is based on the work in W. McCutcheon, A. Pappa et al.. The goal is for a specific party called the Verifier to check whether the source has shared a GHZ-state among the n-nodes network. It goes as follow:

  • Sharing phase: The source creates and shares an n-qubits quantum state to all the parties using a state generation resource and quantum channels.
  • Verification phase: The verifier sends angles to each party that corresponds to measurement basis, using classical authenticated channels
  • Each party, including the verifier, measures its qubits in the basis indicated by the received angle.
  • It then sends its outcome to the verifier.
  • The Verifier checks the parity of the outcomes and broadcast if the shared state was a GHZ state.

Notation

  • : Number of parties
  • : identifier of the Verifier
  • : protocol of each party, : Protocol of the verifier, : Protocol of the source
  • : n-qubit State Generation resource
  • : Angles sent from the Verifier to each party i (indication for the measurement to perform)
  • : classical bits sent from each party i to the Verifier (outcome of the measurement)
  • : outcome of the protocol

Requirements

  • Network stage: quantum memory network.
  • Authenticated classical channel between the parties
  • Quantum channel between the source and the parties
  • Ability to perform one-qubit rotation operations and one-qubit measurement at each node

Properties

  • This protocol is correct meaning that if the source shares a GHZ state and every party behaves honestly, the outcome broadcasted by the verifier is .
  • The outcome of the protocol directly depends on the trace distance between the shared state and the GHZ state. The output is such that

with and where TD is the trace distance and is a quantum operation acting on the subspace of dishonest parties involved in the protocol (ie a tensor product of an unitary operator on and the identity operator on the rest).

  • This protocol still works in the presence of photon losses.
  • This protocol is composably secure meaning that it can be used as a subroutine in a bigger protocol. A direct application of this protocol is to perform it sequentially many times with a source sending state at each round and to randomly use the shared state at some point if the protocol has output 0 at each round. We then are sure up to a certain threshold that the shared state is a GHZ state.

Pseudo Code

Protocol for the verifier  :

Input: , 1 qubit, v

Output: one Bit in and

  • Chose randomly angles with such that is a multiple of
  • Upon the reception of the qubit, for send it to party via a private classical channel resource, keep .
  • Measures the qubit in the basis and get
  • Wait for the reception of all the other .
  • Upon the reception of all the , broadcast 0 if and only if

And for each

Protocol for the th party  :

Input: 1 angle , 1 qubit and v

Output: Bit

  • Wait for the reception of both classical and quantum inputs
  • Measures in the Measures the qubit in the basis
  • Send the outcome to the Verifier via the private classical channel resource .

Further Information

This protocol was first introduced in Multipartite Entanglement Verification Resistant against Dishonest Parties, Anna Pappa et al., in which the authors present a version of the protocol where called the XY protocol. It appeared that this XY version is no longer secure when a certain photon loss rate is tolerated. This is why in Experimental verification of multipartite entanglement in quantum networks, W. McCutcheon, A. Pappa et al., the authors present the current version of the protocol and they experimentally perform the verification protocol with parties and photonic GHZ states.

In Anonymity for practical quantum networks, Anupama Unnikrishnan et al., Authors use this verification protocol as a subroutine allowing to be certain to have a GHZ state shared among the parties when they perform an anonymous transmission protocol.

References


contributed by Raja Yehia