I Qubit mixed state density matrix coordinates on a Bloch ball

maxverywell
Messages
197
Reaction score
2
What are the coordinates on the 3D Bloch ball of a qubit's mixed state of the form:
##\rho=p_{00}|0\rangle \langle 0|+p_{01}|0\rangle \langle 1|+p_{10}|1\rangle \langle 0|+p_{11}|1\rangle \langle 1|##

451px-Bloch_sphere.svg.png
 
Last edited:
Physics news on Phys.org
Do we have to diagonalize the density matrix everytime and then use the forumla for the coordinates
##(\sum p_i x_i, \sum p_i y_i,\sum p_i z_i)## ?
https://en.wikipedia.org/wiki/Bloch_sphere

Not very practical.
 
From stackoverflow: "Convert from qubit density matrix to Bloch vector"

Code:
def toBloch(matrix):
   [[a, b], [c, d]] = matrix
   x = complex(c + b).real
   y = complex(c - b).imag
   z = complex(d - a).real
   return x, y, z

In other words, yes you have to use the formula. But I'm not sure why you think it's impractical... it's just three additions/subtractions.
 
Insights auto threads is broken atm, so I'm manually creating these for new Insight articles. Towards the end of the first lecture for the Qiskit Global Summer School 2025, Foundations of Quantum Mechanics, Olivia Lanes (Global Lead, Content and Education IBM) stated... Source: https://www.physicsforums.com/insights/quantum-entanglement-is-a-kinematic-fact-not-a-dynamical-effect/ by @RUTA
If we release an electron around a positively charged sphere, the initial state of electron is a linear combination of Hydrogen-like states. According to quantum mechanics, evolution of time would not change this initial state because the potential is time independent. However, classically we expect the electron to collide with the sphere. So, it seems that the quantum and classics predict different behaviours!
Back
Top