Source code for toqito.state_opt.optimal_clone

"""Calculates success probability of approximately cloning a quantum state."""

import cvxpy
import numpy as np

from toqito.matrix_ops import partial_trace, tensor
from toqito.perms import permutation_operator


[docs] def optimal_clone( states: list[np.ndarray], probs: list[float], num_reps: int = 1, strategy: bool = False, ) -> float | np.ndarray: r"""Compute probability of counterfeiting quantum money [@Molina_2012_Optimal]. The primal problem for the \(n\)-fold parallel repetition is given as follows: \[ \begin{equation} \begin{aligned} \text{maximize:} \quad & \langle W_{\pi} \left(Q^{\otimes n} \right) W_{\pi}^*, X \rangle \\ \text{subject to:} \quad & \text{Tr}_{\mathcal{Y}^{\otimes n} \otimes \mathcal{Z}^{\otimes n}}(X) = \mathbb{I}_{\mathcal{X}^{\otimes n}},\\ & X \in \text{Pos}( \mathcal{Y}^{\otimes n} \otimes \mathcal{Z}^{\otimes n} \otimes \mathcal{X}^{\otimes n}). \end{aligned} \end{equation} \] The dual problem for the \(n\)-fold parallel repetition is given as follows: \[ \begin{equation} \begin{aligned} \text{minimize:} \quad & \text{Tr}(Y) \\ \text{subject to:} \quad & \mathbb{I}_{\mathcal{Y}^{\otimes n} \otimes \mathcal{Z}^{\otimes n}} \otimes Y \geq W_{\pi} \left( Q^{\otimes n} \right) W_{\pi}^*, \\ & Y \in \text{Herm} \left(\mathcal{X}^{\otimes n} \right). \end{aligned} \end{equation} \] Examples: Wiesner's original quantum money scheme [@Wiesner_1983_Conjugate] was shown in [@Molina_2012_Optimal] to have an optimal probability of 3/4 for succeeding a counterfeiting attack. Specifically, in the single-qubit case, Wiesner's quantum money scheme corresponds to the following ensemble: \[ \left\{ \left( \frac{1}{4}, |0\rangle \right), \left( \frac{1}{4}, |1\rangle \right), \left( \frac{1}{4}, |+\rangle \right), \left( \frac{1}{4}, |-\rangle \right) \right\}, \] which yields the operator \[ \begin{equation} Q = \frac{1}{4} \left(|000 \rangle \langle 000| + |111 \rangle \langle 111| + |+++ \rangle + \langle +++| + |--- \rangle \langle ---| \right). \end{equation} \] We can see that the optimal value we obtain in solving the SDP is 3/4. ```python exec="1" source="above" import numpy as np from toqito.states import basis from toqito.state_opt import optimal_clone e_0, e_1 = basis(2, 0), basis(2, 1) e_p = (e_0 + e_1) / np.sqrt(2) e_m = (e_0 - e_1) / np.sqrt(2) states = [e_0, e_1, e_p, e_m] probs = [1 / 4, 1 / 4, 1 / 4, 1 / 4] print(np.around(optimal_clone(states, probs), decimals=2)) ``` Args: states: A list of states provided as either matrices or vectors. probs: Respective list of probabilities each state is selected. num_reps: Number of parallel repetitions to perform. strategy: Boolean that denotes whether to return strategy. Returns: The optimal probability with of counterfeiting quantum money. """ dim = len(states[0]) ** 3 # Construct the following operator: # ___ ___ # Q = ∑_{k=1}^N p_k |ψ_k ⊗ ψ_k ⊗ ψ_k> <ψ_k ⊗ ψ_k ⊗ ψ_k| q_a = np.zeros((dim, dim)) for k, state in enumerate(states): q_a += probs[k] * tensor(state, state, state.conj()) @ tensor(state, state, state.conj()).conj().T # The system is over: # Y_1 ⊗ Z_1 ⊗ X_1, ... , Y_n ⊗ Z_n ⊗ X_n. num_spaces = 3 # In the event of more than a single repetition, one needs to apply a # permutation operator to the variables in the SDP to properly align # the spaces. if num_reps == 1: pperm = np.array([1]) else: # The permutation vector `perm` contains elements of the # sequence from: https://oeis.org/A023123 q_a = tensor(q_a, num_reps) perm = [] for i in range(num_spaces): perm.append(i) var = i for j in range(1, num_reps): perm.append(var + num_spaces * j) pperm = permutation_operator(2, perm) if strategy: return primal_problem(q_a, pperm, num_reps) return dual_problem(q_a, pperm, num_reps)
[docs] def primal_problem(q_a: np.ndarray, pperm: np.ndarray, num_reps: int) -> float: r"""Primal problem for counterfeit attack. As the primal problem takes longer to solve than the dual problem (as the variables are of larger dimension), the primal problem is only here for reference. Returns: The optimal value of performing a counterfeit attack. """ num_spaces = 3 sys = list(range(1, num_spaces * num_reps)) sys = [elem for elem in sys if elem % num_spaces != 0] sys = [elem - 1 for elem in sys] # The dimension of each subsystem is assumed to be of dimension 2. dim = 2 * np.ones((1, num_spaces * num_reps)).astype(int).flatten() dim = dim.tolist() x_var = cvxpy.Variable((8**num_reps, 8**num_reps), hermitian=True) if num_reps == 1: objective = cvxpy.Maximize(cvxpy.trace(cvxpy.real(q_a.conj().T @ x_var))) else: objective = cvxpy.Maximize(cvxpy.trace(cvxpy.real(pperm @ q_a.conj().T @ pperm.conj().T @ x_var))) constraints = [ partial_trace(x_var, sys, dim) == np.identity(2**num_reps), x_var >> 0, ] problem = cvxpy.Problem(objective, constraints) return problem.solve()
[docs] def dual_problem(q_a: np.ndarray, pperm: np.ndarray, num_reps: int) -> float: r"""Dual problem for counterfeit attack. Returns: The optimal value of performing a counterfeit attack. """ y_var = cvxpy.Variable((2**num_reps, 2**num_reps), hermitian=True) objective = cvxpy.Minimize(cvxpy.trace(cvxpy.real(y_var))) kron_var = cvxpy.kron(cvxpy.kron(np.eye(2**num_reps), np.eye(2**num_reps)), y_var) if num_reps == 1: constraints = [cvxpy.real(kron_var) >> q_a] else: constraints = [cvxpy.real(kron_var) >> pperm @ q_a @ pperm.conj().T] problem = cvxpy.Problem(objective, constraints) return problem.solve()