Skip to content

Fix typos in LaTeX #5964

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 16, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions cirq-core/cirq/ops/common_channels.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ class AsymmetricDepolarizingChannel(raw_types.Gate):
This channel evolves a density matrix via

$$
\sum_i p_i Pi \rho Pi
\sum_i p_i P_i \rho P_i
$$

where i varies from 0 to $4^n-1$ and Pi represents n-qubit Pauli operator
where i varies from $0$ to $4^n-1$ and $P_i$ represents n-qubit Pauli operator
(including identity). The input $\rho$ is the density matrix before the
depolarization.

Expand Down Expand Up @@ -217,10 +217,10 @@ def asymmetric_depolarize(
This channel evolves a density matrix via

$$
\sum_i p_i Pi \rho Pi
\sum_i p_i P_i \rho P_i
$$

where i varies from 0 to $4^n-1$ and Pi represents n-qubit Pauli operator
where i varies from $0$ to $4^n-1$ and $P_i$ represents n-qubit Pauli operator
(including identity). The input $\rho$ is the density matrix before the
depolarization.

Expand Down Expand Up @@ -1079,7 +1079,7 @@ class BitFlipChannel(raw_types.Gate):
This channel evolves a density matrix via:

$$
\rho \rightarrow M_0 \rho M_0^\dagger + M_1 \rho M_1^\dagger
\rho \rightarrow M_0 \rho M_0^\dagger + M_1 \rho M_1^\dagger
$$

With:
Expand Down