qics.cones.QuantCondEntr¶
- class qics.cones.QuantCondEntr(dims, sys, iscomplex=False)[source]¶
A class representing a quantum conditional entropy cone defined on \(k\) subsystems, where the \(i\)-th subsystem has dimension \(n_i\), and the \(i\)-th subsystem is being traced out, i.e.,
\[\mathcal{QCE}_{\{n_i\}, j} = \text{cl}\{ (t, X) \in \mathbb{R} \times \mathbb{H}^{\Pi_in_i}_{++} : t \geq -S(X) + S(\text{tr}_i(X)) \},\]where
\[S(X) = -\text{tr}[X \log(X)],\]is the quantum (von Neumann) entropy, and \(\text{tr}_i\) is the partial trace on the \(i\)-th subsystem.
- Parameters:
- dims
tuple
ofint
orlist
ofint
List of dimensions \(\{ n_i \}_{i=0}^{k-1}\) of the \(k\) subsystems.
- sys
int
ortuple
ofint
orlist
ofint
Which systems are being traced out by the partial trace. Can define multiple subsystems to trace out.
- iscomplex
bool
Whether the matrix \(X\) is defined over \(\mathbb{H}^n\) (
True
), or restricted to \(\mathbb{S}^n\) (False
). The default isFalse
.
- dims
See also
QuantRelEntr
Quantum relative entropy cone
Notes
The quantum conditional entropy can also be modelled by the quantum relative entropy by noting the identity
\[S(X \| \mathbb{I} \otimes \text{tr}_1(X)) = -S(X) + S(\text{tr}_1(X)).\]However, the cone oracles for the quantum conditional entropy cone are much more efficient than those for the quantum relative entropy cone, so it is recommended to use the quantum conditional entropy cone where possible.