Difference between revisions of "Majorizes"

From QETLAB
Jump to navigation Jump to search
(Created page with "{{Function |name=Majorizes |desc=Determines whether or not a vector or matrix majorizes another |upd=March 4, 2014 |v=1.00}} <tt>'''Majorizes'''</tt> is a [[List of functions|...")
 
Line 31: Line 31:
  
 
===Bipartite LOCC===
 
===Bipartite LOCC===
A well-known result of Neilsen<ref>M. A. Neilsen. Conditions for a class of entanglement transformations. Phys. Rev. Lett., 83:439, 1999.</ref> says that a bipartite pure state $|\psi\rangle \in \mathbb{C}^m \otimes \mathbb{C}^n$ can be converted into another state $|\phi\rangle$ via [[LOCC]] if and only if the Schmidt coefficients of $|\phi\rangle$ majorize the Schmidt coefficients of $|\psi\rangle$. Thus we can determine whether or not we can convert $|\psi\rangle$ to $|\phi\rangle$ via LOCC as follows:
+
A well-known result of Nielsen<ref>M. A. Nielsen. Conditions for a class of entanglement transformations. Phys. Rev. Lett., 83:439, 1999.</ref> says that a bipartite pure state $|\psi\rangle \in \mathbb{C}^m \otimes \mathbb{C}^n$ can be converted into another state $|\phi\rangle$ via [[LOCC]] if and only if the squared Schmidt coefficients of $|\phi\rangle$ majorize the squared Schmidt coefficients of $|\psi\rangle$. Thus we can determine whether or not we can convert $|\psi\rangle$ to $|\phi\rangle$ via LOCC as follows:
<pre>
+
<pre<noinclude></noinclude>>
>> phi = RandomStateVector(9); % generate two random states in C^3 \otimes C^3
+
>> phi = [[RandomStateVector|RandomStateVector(9)]]; % generate two random states in C^3 \otimes C^3
 
>> psi = RandomStateVector(9);
 
>> psi = RandomStateVector(9);
>> Majorizes(SchmidtDecomposition(phi),SchmidtDecomposition(psi))
+
>> Majorizes([[SchmidtDecomposition|SchmidtDecomposition(phi)]].^2,SchmidtDecomposition(psi).^2)
  
 
ans =
 
ans =
  
 
     0
 
     0
</pre>
+
</pre<noinclude></noinclude>>
  
The above code shows that the conversion $|\psi\rangle \stackrel{LOCC}{\rightarrow} |\phi\rangle$ is impossible.
+
The above code shows that the conversion $|\psi\rangle \stackrel{LOCC}{\rightarrow} |\phi\rangle$ is impossible. On the other hand, the following code shows that the maximally-entangled pure state can be converted to a random pure state via LOCC:
 +
<pre<noinclude></noinclude>>
 +
>> phi = RandomStateVector(9);
 +
>> psi = [[MaxEntangled|MaxEntangled(3)]]; % maximally-entangled state in C^3 \otimes C^3
 +
>> Majorizes(SchmidtDecomposition(phi).^2,SchmidtDecomposition(psi).^2)
 +
 
 +
ans =
 +
 
 +
    1
 +
</pre<noinclude></noinclude>>
  
 
==References==
 
==References==
 
<references />
 
<references />

Revision as of 14:59, 4 March 2014

Majorizes
Determines whether or not a vector or matrix majorizes another

Other toolboxes required none

Majorizes is a function that determines whether or not one vector or matrix weakly majorizes another vector or matrix. That is, given d-dimensional vectors $A$ and $B$, it checks whether or not

\[ \sum_{i=1}^k a_i^{\downarrow} \geq \sum_{i=1}^k b_i^{\downarrow} \quad \text{for } k=1,\dots,d,\]

where $a^{\downarrow}_i$ and $b^{\downarrow}_i$ are the elements of $A$ and $B$, respectively, sorted in decreasing order.

In the case of matrices, it is said that $A$ majorizes $B$ if the vector of $A$'s singular values majorizes the vector of $B$'s singular values. If the two vectors or matrices are of different sizes, the smaller one is padded with zeros appropriately so that they are comparable.

Syntax

  • M = Majorizes(A,B)

Argument descriptions

  • A: Either a vector or a matrix.
  • B: Either a vector or a matrix.

Examples

A simple example

It is straightforward to see that the vector $(3,0,0)$ majorizes the vector $(1,1,1)$, which we can verify as follows:

>> Majorizes([3,0,0],[1,1,1])

ans =

     1

Bipartite LOCC

A well-known result of Nielsen[1] says that a bipartite pure state $|\psi\rangle \in \mathbb{C}^m \otimes \mathbb{C}^n$ can be converted into another state $|\phi\rangle$ via LOCC if and only if the squared Schmidt coefficients of $|\phi\rangle$ majorize the squared Schmidt coefficients of $|\psi\rangle$. Thus we can determine whether or not we can convert $|\psi\rangle$ to $|\phi\rangle$ via LOCC as follows:

>> phi = RandomStateVector(9); % generate two random states in C^3 \otimes C^3
>> psi = RandomStateVector(9);
>> Majorizes(SchmidtDecomposition(phi).^2,SchmidtDecomposition(psi).^2)

ans =

     0

The above code shows that the conversion $|\psi\rangle \stackrel{LOCC}{\rightarrow} |\phi\rangle$ is impossible. On the other hand, the following code shows that the maximally-entangled pure state can be converted to a random pure state via LOCC:

>> phi = RandomStateVector(9);
>> psi = MaxEntangled(3); % maximally-entangled state in C^3 \otimes C^3
>> Majorizes(SchmidtDecomposition(phi).^2,SchmidtDecomposition(psi).^2)

ans =

     1

References

  1. M. A. Nielsen. Conditions for a class of entanglement transformations. Phys. Rev. Lett., 83:439, 1999.