Quantum Basis and Quantum State (19)
In order to use QuantumBasis, one gives dimension information as arguments, which will be interpreted as the computational basis. Alternatively, an association can be given with the basis name as the key and the corresponding basis elements as the values.
Define a 2D quantum basis (computational):
Given a basis of dimension n, the basis elements will be indexed by the key with :
Use QuantumBasis[n,m] to define a basis for qudits of dimension (for which the overall dimension will be ). For example, define a 2–2–2 dimensional quantum basis (with three qubits):
Use QuantumBasis[{n1,n2,…,nm}] to define an -dimensional Hilbert space of qudits as a list. For example, define a 3×5 dimensional quantum basis (with two qudits):
A basis can also be defined as an association with the basis element names as keys and the corresponding vectors as values:
There are many 'named' bases built into the quantum framework, including "Computational", "PauliX", "PauliY", "PauliZ", "Fourier", "Identity", "Schwinger", "Pauli", "Dirac" and "Wigner" bases:
After a basis object has been defined, it is straightforward to construct quantum states and operators. A quantum state is represented by a QuantumState object and a quantum operator is represented by QuantumOperator.
A pure quantum state is represented as a vector for which the elements are amplitudes. The corresponding basis should be given in this format: QuantumState[arg1,arg2], where arg1 specifies amplitudes or the density matrix, and arg2 specifies the basis. With no basis specified, the default basis will be the computational basis, the dimension of which depends on the amplitude vector given in arg1.
Note that we use the big endian convention, such that qubits are labelled left-to-right, starting with one. For example, the decimal representation of (which means ⊗⊗3) is . Additionally, for the eigenvalues of Pauli-Z, we have:
We shall denote the eigenstate {1,0} by (which corresponds to +1 eigenvalue), and {0,1} by (corresponding to the eigenvalue -1)
Define a pure 2-dimensional quantum state (qubit) in the Pauli-X basis:
If the basis is not specified, the default is the computational basis of dimensions ( qubits):
If the vector has more than 2 elements, it is interpreted as an -qubit state, unless the dimension is specified. If fewer than amplitudes are specified, right-padding is applied to reach the 'ceiling':
Here is the same amplitude vector, but this time with the dimension specified:
Binary strings can be also used as inputs:
Many 'named' states are available through the framework:
Using associations, one can create a superposition of states, where the keys are lists of corresponding indexes and the values are amplitudes.
Create a superposition of 3 qubits (i.e., QuantumBasis[2,3]) as :
A superposition can also be created by simply adding two quantum state objects. For example, the previous state can also be constructed as follows:
With a built-in basis specified, amplitudes correspond to the basis elements. For example, use the Bell basis:
A state can also be defined by inputting a density matrix:
For pure states, one can get the corresponding normalized state vector:
Define a generic Bloch vector:
Test to see if it is a mixed state:
Calculate its Von Neumann entropy:
Compute its purity:
Note that one can directly use a Bloch vector as an input:
Test to see if a matrix is positive semidefinite:
A matrix that is not positive semidefinite cannot be a density matrix in standard quantum mechanics (with some exceptional cases, such as ZX formalism). Here is the result when we attempt to define a state using such a matrix:
When a matrix is given as input, but no basis is given, the default basis will be computational:
Using , define a quantum state in a 2–4 dimensional basis (and note the number of qudits):
Define a quantum state in 8D Hilbert space (with one 8-dimensional qudit only):
One can also define a state in a given basis, and then transform it into a new basis. For example, transform , the computational basis, into the Pauli-X basis {,}:
Return the amplitudes:
Note that the states are the same, but defined in different bases:
One can use QuantumTensorProduct to construct different states or operators. Create a tensor product of a + state with three qubits :
Another way of defining is to first define a basis and then assign amplitudes: