Difference between revisions of "SymmetricExtension"

From QETLAB
Jump to navigation Jump to search
m
(Updated to v1.01)
Line 3: Line 3:
 
|desc=Determines whether or not an operator has a [[symmetric extension]]
 
|desc=Determines whether or not an operator has a [[symmetric extension]]
 
|req=[http://cvxr.com/cvx/ cvx]<br />[[IsPPT]]<br />[[IsPSD]]<br />[[opt_args]]<br />[[PartialTrace]]<br />[[PartialTranspose]]<br />[[PermutationOperator]]<br />[[PermuteSystems]]<br />[[sporth]]<br />[[SymmetricProjection]]
 
|req=[http://cvxr.com/cvx/ cvx]<br />[[IsPPT]]<br />[[IsPSD]]<br />[[opt_args]]<br />[[PartialTrace]]<br />[[PartialTranspose]]<br />[[PermutationOperator]]<br />[[PermuteSystems]]<br />[[sporth]]<br />[[SymmetricProjection]]
|upd=November 20, 2012
+
|upd=March 6, 2013
|v=1.00}}
+
|v=1.01}}
 
<tt>'''SymmetricExtension'''</tt> is a [[List of functions|function]] that determines whether or not a given [[positive semidefinite]] operator has a symmetric extension. This function is extremely useful for showing that [[quantum state]]s are [[entangled]] (see the [[#Examples|Examples]] section). Various types of symmetric extensions can be looked for &ndash; by default, the extension that is looked for must be [[Bosonic]] and have [[positive partial transpose]], but both of these restrictions can be removed.
 
<tt>'''SymmetricExtension'''</tt> is a [[List of functions|function]] that determines whether or not a given [[positive semidefinite]] operator has a symmetric extension. This function is extremely useful for showing that [[quantum state]]s are [[entangled]] (see the [[#Examples|Examples]] section). Various types of symmetric extensions can be looked for &ndash; by default, the extension that is looked for must be [[Bosonic]] and have [[positive partial transpose]], but both of these restrictions can be removed.
  
Line 23: Line 23:
 
* <tt>PPT</tt> (optional, default 1): A flag (either 1 or 0) that indicates whether or not the desired symmetric extension must have [[positive partial transpose]].
 
* <tt>PPT</tt> (optional, default 1): A flag (either 1 or 0) that indicates whether or not the desired symmetric extension must have [[positive partial transpose]].
 
* <tt>BOS</tt> (optional, default 1): A flag (either 1 or 0) that indicates whether or not the desired symmetric extension must be [[Bosonic]] (i.e., have its range contained within the [[symmetric subspace]]).
 
* <tt>BOS</tt> (optional, default 1): A flag (either 1 or 0) that indicates whether or not the desired symmetric extension must be [[Bosonic]] (i.e., have its range contained within the [[symmetric subspace]]).
* <tt>TOL</tt> (optional, default <tt>sqrt(eps)</tt>): The numerical tolerance used throughout this script. It is recommended that this is left at the default value unless numerical problems arise and the script has difficulty determining whether or not <tt>X</tt> has a symmetric extension.
+
* <tt>TOL</tt> (optional, default <tt>eps^(1/4)</tt>): The numerical tolerance used throughout this script. It is recommended that this is left at the default value unless numerical problems arise and the script has difficulty determining whether or not <tt>X</tt> has a symmetric extension.
  
 
===Output arguments===
 
===Output arguments===

Revision as of 19:07, 25 June 2013

SymmetricExtension
Determines whether or not an operator has a symmetric extension

Other toolboxes required cvx
IsPPT
IsPSD
opt_args
PartialTrace
PartialTranspose
PermutationOperator
PermuteSystems
sporth
SymmetricProjection

SymmetricExtension is a function that determines whether or not a given positive semidefinite operator has a symmetric extension. This function is extremely useful for showing that quantum states are entangled (see the Examples section). Various types of symmetric extensions can be looked for – by default, the extension that is looked for must be Bosonic and have positive partial transpose, but both of these restrictions can be removed.

Syntax

  • EX = SymmetricExtension(X)
  • EX = SymmetricExtension(X,K)
  • EX = SymmetricExtension(X,K,DIM)
  • EX = SymmetricExtension(X,K,DIM,PPT)
  • EX = SymmetricExtension(X,K,DIM,PPT,BOS)
  • EX = SymmetricExtension(X,K,DIM,PPT,BOS,TOL)
  • [EX,WIT] = SymmetricExtension(X,K,DIM,PPT,BOS,TOL)

Argument descriptions

Input arguments

  • X: A positive semidefinite operator.
  • K (optional, default 2): The number of copies of the second subsystem in the desired symmetric extension.
  • DIM (optional, by default has both subsystems of equal dimension): A 1-by-2 vector containing the dimensions of the two subsystems that X acts on.
  • PPT (optional, default 1): A flag (either 1 or 0) that indicates whether or not the desired symmetric extension must have positive partial transpose.
  • BOS (optional, default 1): A flag (either 1 or 0) that indicates whether or not the desired symmetric extension must be Bosonic (i.e., have its range contained within the symmetric subspace).
  • TOL (optional, default eps^(1/4)): The numerical tolerance used throughout this script. It is recommended that this is left at the default value unless numerical problems arise and the script has difficulty determining whether or not X has a symmetric extension.

Output arguments

  • EX: A flag (either 1 or 0) indicating that X does or does not have a symmetric extension of the desired type.
  • WIT (optional): A witness that verifies that the answer provided by EX is correct. If EX = 1 (i.e., X has a symmetric extension) then WIT is such a symmetric extension. If EX = 0 (i.e., no symmetric extension exists) then WIT is an entanglement witness with trace(WIT*X) = -1 but trace(WIT*Y) >= 0 for all symmetrically extendable Y.

Examples

Please add some examples.