Questions tagged [depolarizing-channel]

A model for noise in quantum systems such as a decohering qubit that has particularly nice symmetry properties. The depolarizing channel is a “worst-case scenario” channel. It assumes that we just completely lose the input qubit with some probability, i.e., it replaces the lost qubit with the maximally mixed state.

Depolarizing channel $\mathcal{D}$ is defined as

$$ \mathcal{D}(\rho) = \lambda \rho + (1 - \lambda)\frac{I}{d} $$

where $\rho$ is the density matrix of the input state, $\lambda \in [-\frac{1}{d^2 - 1}, 1]$ is a parameter and $d$ is the dimension of the Hilbert space of the system on which the channel acts. For an $n$-qubit system, this is equivalent to

$$ \mathcal{D}(\rho) = (1 - p) \rho + \frac{p}{4^n-1}\sum_{i=1}^{4^n-1} P_i \rho P_i^\dagger $$

where $P_i$ are non-identity $n$-fold tensor products of the Pauli operators and $p$ is the probability of a Pauli error occurring.

43 questions
10
votes
4 answers

Why does the twirl of a quantum channel give a depolarizing channel?

I would like to understand in detail why the twirl of a quantum channel gives depolarizing channel, which is the starting point of randomized benchmarking. To be self-contained, let me set up the notation. Let $\hat{U}$ denote a superoperator that…
6
votes
1 answer

Is the "unitary twirling operation" physically realizable?

In this neat answer by Markus Heinrich, it is shown that twirling an arbitrary quantum channel $\Lambda$ over the unitary group $U(d)$ yields a depolarizing channel $\tilde{\Lambda}$ given by $$ \tilde{\Lambda}(M) = \Pi_{U(d)}(\Lambda)(M) =…
5
votes
1 answer

Decoding the Steane Code

The $[[5,1,3]]$ code is a perfect code basically meaning that the weight-0 and weight-1 error spaces completely fill out the $32$-dimensional Hilbert space. On the other hand, the $[[7,1,3]]$ Steane code is not perfect. There are $6$ stabilizer…
5
votes
1 answer

What is the adjoint of the depolarizing channel?

Consider the single qubit depolarizing noise channel given by $$\Phi(\rho) = \frac{\lambda}{d} \mathbb{I} + (1- \lambda) \rho.$$ What might be the adjoint $\Phi^{*}(\cdot)$ of this channel? In particular, I am trying to find how the adjoint acts on…
5
votes
2 answers

Inverting the depolarizing channel

I have a depolarizing channel acting on $2^n \times 2^n$ Hermitian matrices, defined as $$\tag{1} \mathcal{D}_p (X) = p X + (1-p) \frac{\text{Tr}(X)}{2^n} \mathbb{I}_{2^n} $$ where $\mathbb{I}_{d}$ is the identity operator on $d$ dimensions. I am…
4
votes
0 answers

Qiskit NoiseModel.from_backend gives wrong gate error

According to the Qiskit documentation, a gate error is simulated by a thermal relaxation channel followed by a depolarisation channel, where the parameter of the depolarisation channel is adjusted so that the average gate infidelity corresponds to…
siserman
  • 161
  • 3
4
votes
1 answer

What is an algorithm to generate random error in depolarizing channel

The Qunatum Depolarizing Channel is parametrized by a single real variable $\lambda, 0 \leq \lambda \leq 1$. I have a system of $n$ qubits. I'd like to generate random errors from that channel. These would be strings of length $n$ with entries from…
unknown
  • 2,405
  • 1
  • 8
  • 21
3
votes
1 answer

Why is the Choi matrix I get for the depolarizing channel $\mathcal{E}(\rho) = (1 - p) \rho + p \frac{I}{2}$ different from what it shold be?

I'm currently trying to implement the depolarizing channel on qiskit. But, as I see in my calculation it doesn't match with the qiskit aer_noise. So, for the Depolarizing Channel we got : $$ \mathcal{E}(\rho) = (1 - p) \rho + p \frac{I}{2} $$ Ant…
3
votes
2 answers

What do quantum noise models have in common?

Let us see the one-qubit case of different noise channel, the depolarizing channel is $\Lambda_1^{depol}(\rho_1)=(1-\frac{4}{3}\epsilon_1)\rho_1+\frac{1}{3}\epsilon_1\sum_{i=0}^{3}\sigma_i\rho_1\sigma_i$, the dephasing noise is…
karry
  • 689
  • 4
  • 14
2
votes
1 answer

is there a pure c/c++ MWPM decoder

I understand that PyMatching has a main c++ core with all sorts of python wrappers. Is there an example that shows how to use it in a pure c++ environment. I think the python part integrates an interface to STIM (which also has a c/c++ version).…
2
votes
1 answer

What is the operator-sum representation of the two-qubit depolarizing channel?

I want to get the operator-sum representation of the two-qubit depolarizing channel $$ \mathcal{E}(\rho) = (1-\lambda)\rho + \frac{\lambda I}{4}$$ Using $\frac{I}{2} = \frac{\rho +X\rho X +Y\rho Y +Z\rho Z}{4}$ and $\frac{I}{4}=\frac{I}{2}\otimes…
2
votes
1 answer

Can a quantum operation inflate the Bloch sphere?

The depolarizing noise channel uniformly deflates the Bloch sphere to a single point, which is $\mathbf{n}= (0,0,0)$ or in terms of quantum qubit states, we get a maximally mixed state $\rho = \frac{1}{2}I$. Since the depolarizing noise channel…
2
votes
1 answer

How can the depolarizing channel, defined as $\mathcal E(\rho) = (1-p)\rho + p\frac{I}{2}$, be a linear quantum operation?

In Quantum Computing: From Linear Algebra to Physical Realizations it states that A quantum operation maps a density matrix to another density matrix linearly But let $\rho\in M_2$ be a density matrix and consider the Depolarizing…
2
votes
1 answer

Depolarizing channel on GHZ-state

Consider a GHZ-state $|\psi\rangle =\frac{1}{\sqrt{2}}(|0\rangle^{n}+|1\rangle^n)$, and consider a depolarizing channel that maps a density matrix $$\rho\to(1-\lambda)\rho + \frac{\lambda}{2^d}I.$$ Now we want to see the effect of the depolarizing…
nippon
  • 1,609
  • 9
  • 23
2
votes
1 answer

Diamond norm distances between some channel and the identity

I'm currently working with the continuity result by Kretschmann-Schlingemann-Werner (arXiv version) for Stinespring isometries (more precisely, the following corollary to their result, cf. Appendix C in this paper): Given channels…
1
2 3