ChannelDistinguishability

From QETLAB
Revision as of 14:34, 15 October 2014 by Nathaniel (talk | contribs) (Created page with "{{Function |name=ChannelDistinguishability |desc=Computes the maximum probability of distinguishing two quantum channels |req=[http://cvxr.com/cvx/ cvx] |rel=Distinguishabil...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
ChannelDistinguishability
Computes the maximum probability of distinguishing two quantum channels

Other toolboxes required cvx
Related functions Distinguishability
LocalDistinguishability
Function category Distinguishing objects

ChannelDistinguishability is a function that computes the maximum probability of distinguishing two quantum channels. That is, this function computes the maximum probability of winning the following game: You are given a complete description of two quantum channels $\Phi$ and $\Psi$, and then are given one of those two channels, and asked to determine which channel was given to you (by supplying some input state to the channel and then measuring the output).

Syntax

  • DIST = ChannelDistinguishability(PHI,PSI)
  • DIST = ChannelDistinguishability(PHI,PSI,P)
  • DIST = ChannelDistinguishability(PHI,PSI,P,DIM)

Argument descriptions

  • PHI,PSI: The quantum channels to be distinguished. They can either be input as Choi matrices or as cells of Kraus operators.
  • P (optional, default [1/2, 1/2]): A vector that specifies that PHI and PSI are chosen with probability P(1) and P(2), respectively.
  • DIM (optional, by default tries to guess the input and output dimensions): A 1-by-2 vector containing the input and output dimensions of PHI and PSI. DIM is required if and only if both PHI and PSI are provided as Choi matrices and the input and output dimensions are different.

Examples

Perfectly distinguishable channels

The following code demonstrates that the simple example of two channels that can be perfectly distinguished from [1] can indeed be perfectly distinguished

>> n = 4;
>> Phi = SymmetricProjection(n)*2/(n+1);
>> Psi = AntisymmetricProjection(n)*2/(n-1);
>> ChannelDistinguishability(Phi,Psi)

ans =

    1.0000

Source code

Click here to view this function's source code on github.

References

  1. John Watrous. Lecture 20: Channel distinguishability and the completely bounded trace norm, Theory of Quantum Information Lecture Notes, 2011.