States
Quantum states are the key mathematical objects in quantum theory. Quantum states are states of knowledge, representing uncertainty about the real physical state of the system.
Quantum mechanics is the backbone for quantum information processing, and many aspects of it cannot be explained by classical reasoning.
For example, there is no strong classical analogue for pure quantum states or entanglement, and this leads to stark differences between what is possible in the classical and quantum worlds.
However, at the same time, it is important to emphasize that all of classical information theory is subsumed by quantum information theory, so that whatever is possible with classical information processing is also possible with quantum information processing. As such, quantum information subsumes classical information while allowing for richer possibilities.
A quantum system
is associated with a Hilbert space
. The state of the system
is described by a density operator, which is a unit-trace, positive semi-definite linear operator acting on
.
For distinct quantum systems
and
with associated Hilbert spaces
and
, the composite system
is associated with the Hilbert space
. This joint state is described by a bipartite quantum state
. For brevity, the joint Hilbert space
of the composite system
is denoted by
.
The measurement of a quantum system
is described by a Positive Operator Valued Measure (POVM)
, which is defined to be a collection of positive semi-definite operators indexed by a finite alphabet satisfying
.
If the system is in the state
, then the probability
of obtaining the outcome
is given by the Born rule as
.
The evolution of the state of a quantum system is described by a quantum channel, which is a linear, completely positive, and trace-preserving map acting on the state of the system.
A quantum state is a mathematical entity that provides a probability distribution for the outcomes of each possible measurement on a system. The state of a quantum system is described by a density operator acting on the underlying Hilbert space of the quantum system. Knowledge of the quantum state together with the rules for the system's evolution in time exhausts all that can be predicted about the system's behavior.
A density operator is a unit-trace, positive semi-definite linear operator. We denote the set of density operators on a Hilbert space
as
QuTIpy contains the definitions of these states, inside the
states
sub-module, and can be imported as suchfrom qutipy.states import (
Bell_state,
GHZ_state,
MaxEnt_state,
MaxMix_state,
RandomDensityMatrix,
RandomStateVector,
Werner_state,
Werner_twirl_state,
graph_state,
isotropic_state,
isotropic_twirl_state,
singlet_state
)
A pure state
, for two systems
and
of the same dimension
, is called Maximally Entangled if the Schmidt coefficients of
are all equal to
, with
being the Schmidt rank of
.
In other words,
is called maximally entangled if
has the Schmidt decomposition,
for some orthonormal sets
and
.
In simple terms, the Maximally Entangled can be written as
and can be created using the
MaxEnt_state
function.# This will create a Macimally Entangled State for a 3 dimensional system.
# The resultant matrix will be of shape 9x9.
MaxEnt_state(3)
A Bell state is defined as a maximally entangled quantum state of two qubits. It can be described as one of four entangled two qubit quantum states, known collectively as the four "Bell states".
Using the operators
,
, and
, we define the following set of four entangled two-qubit state vectors
for
.
To generates a
-dimensional Bell State with
,
, we can simply call the module
Bell_state
that was imported above. # This will create a Bell State for a 2 dimensional system.
# The resultant matrix will be of shape 4x4.
Bell_state(d=2, z=1, x=1)
A singlet state is defined as
where
is a Swap Operator.
Generating a singlet state is as easy as writing a single word,
# This will create a Singlet State for a 3 dimensional system.
# The resultant matrix will be of shape 9x9.
singlet_state(3)
Last modified 7mo ago