Source code for qutip.measurement

"""
Module for measuring quantum objects.
"""

__all__ = [
    'measurement_statistics_povm',
    'measurement_statistics_observable',
    'measure_observable',
    'measure_povm',
    'measurement_statistics',
    'measure'
]

import numpy as np

from . import Qobj, expect, identity, tensor, settings


def _verify_input(op, state):
    if not isinstance(op, Qobj):
        raise TypeError("op must be a Qobj")
    if not op.isoper:
        raise ValueError("op must be all operators or all kets")
    if not isinstance(state, Qobj):
        raise TypeError("state must be a Qobj")
    if state.isket:
        if op.dims[-1] != state.dims[0]:
            raise ValueError(
                "op and state dims should be compatible when state is a ket")
    elif state.isoper:
        if op.dims != state.dims:
            raise ValueError(
                "op and state dims should match"
                " when state is a density matrix")
    else:
        raise ValueError("state must be a ket or a density matrix")


def _measurement_statistics_povm_ket(state, ops, tol=None):
    r"""
    Returns measurement statistics (resultant states and probabilities)
    for a measurements specified by a set of positive operator valued
    measurements on a specified ket.

    Parameters
    ----------
    state : :class:`.Qobj` (ket)
            The ket specifying the state to measure.

    ops : list of :class:`.Qobj`
      List of measurement operators :math:`M_i` (specifying a POVM such that
      :math:`E_i = M_i^\dagger M_i`).

    tol : float, optional
        Smallest value for the probabilities. Smaller probabilities will be
        rounded to ``0``.

    Returns
    -------
    collapsed_states : list of :class:`.Qobj` (kets)
        The collapsed states (kets) obtained after measuring the qubits and
        obtaining the qubit specified by the target in the state specified by
        the index.

    probabilities : list of floats
        The probability of measuring a state in a the state specified by the
        index.
    """
    probabilities = []
    collapsed_states = []
    if tol is None:
        tol = settings.core["atol"]

    for i, op in enumerate(ops):
        psi = op * state
        p = np.absolute(psi.overlap(psi))
        if p >= tol:
            collapsed_states.append(psi / np.sqrt(p))
            probabilities.append(p)
        else:
            collapsed_states.append(None)
            probabilities.append(0.)

    return collapsed_states, probabilities


def _measurement_statistics_povm_dm(density_mat, ops, tol=None):
    r"""
    Returns measurement statistics (resultant states and probabilities)
    for a measurements specified by a set of positive operator valued
    measurements on a specified ket or density matrix.

    Parameters
    ----------
    state : :class:`.Qobj` (density matrix)
        The ket or density matrix specifying the state to measure.

    ops : list of :class:`.Qobj`
        List of measurement operators :math:`M_i` (specifying a POVM s.t.
        :mathm:`E_i = M_i^\dagger M_i`)

    tol : float, optional
        Smallest value for the probabilities. Smaller probabilities will be
        rounded to ``0``.

    Returns
    -------
    collapsed_states : list of :class:`.Qobj`
        The collapsed states (density matrices) obtained after measuring the
        qubits and obtaining the qubit specified by the target in the state
        specified by the index.

    probabilities : list of float
        The probability of measuring a state in a the state specified by the
        index.
    """
    probabilities = []
    collapsed_states = []
    if tol is None:
        tol = settings.core["atol"]

    for i, op in enumerate(ops):
        st = op * density_mat * op.dag()
        p = st.tr()
        if p >= tol:
            collapsed_states.append(st/p)
            probabilities.append(p)
        else:
            collapsed_states.append(None)
            probabilities.append(0.)


    return collapsed_states, probabilities


[docs]def measurement_statistics_povm(state, ops, tol=None): r""" Returns measurement statistics (resultant states and probabilities) for a measurement specified by a set of positive operator valued measurements on a specified ket or density matrix. Parameters ---------- state : :class:`.Qobj` The ket or density matrix specifying the state to measure. ops : list of :class:`.Qobj` List of measurement operators :math:`M_i` or kets. Either: 1. specifying a POVM s.t. :math:`E_i = M_i^\dagger M_i` 2. projection operators if ops correspond to projectors (s.t. :math:`E_i = M_i^\dagger = M_i`) 3. kets (transformed to projectors) tol : float, optional Smallest value for the probabilities. Smaller probabilities will be rounded to ``0``. Default is qutip's core settings' ``atol``. Returns ------- collapsed_states : list of :class:`.Qobj` The collapsed states obtained after measuring the qubits and obtaining the qubit specified by the target in the state specified by the index. probabilities : list of floats The probability of measuring a state in a the state specified by the index. """ if all(map(lambda x: x.isket, ops)): ops = [op * op.dag() for op in ops] for op in ops: _verify_input(op, state) E = [op.dag() * op for op in ops] is_ID = sum(E) if not is_ID == identity(is_ID.dims[0]): raise ValueError("measurement operators must sum to identity") if state.isket: return _measurement_statistics_povm_ket(state, ops, tol) else: return _measurement_statistics_povm_dm(state, ops, tol)
[docs]def measurement_statistics_observable(state, op, tol=None): """ Return the measurement eigenvalues, eigenstates (or projectors) and measurement probabilities for the given state and measurement operator. Parameters ---------- state : :class:`.Qobj` The ket or density matrix specifying the state to measure. op : :class:`.Qobj` The measurement operator. tol : float, optional Smallest value for the probabilities. Default is qutip's core settings' ``atol``. Returns ------- eigenvalues: list of float The list of eigenvalues of the measurement operator. projectors: list of :class:`.Qobj` Return the projectors onto the eigenstates. probabilities: list of float The probability of measuring the state as being in the corresponding eigenstate (and the measurement result being the corresponding eigenvalue). """ probabilities = [] values = [] projectors = [] _verify_input(op, state) if tol is None: tol = settings.core["atol"] eigenvalues, eigenstates = op.eigenstates() # Detect groups of eigenvalues within atol of each other. # A group will be [False] * N + [True] groups = np.append(np.diff(eigenvalues) >= tol, True) present_group = [] for i in range(len(eigenvalues)): present_group.append(i) if not groups[i]: continue projector = 0 for j in present_group: projector += eigenstates[j].proj() probability = expect(projector, state) if probability >= tol: probabilities.append(probability) values.append(np.mean(eigenvalues[present_group])) projectors.append(projector) present_group = [] return values, projectors, probabilities
[docs]def measure_observable(state, op, tol=None): """ Perform a measurement specified by an operator on the given state. This function simulates the classic quantum measurement described in many introductory texts on quantum mechanics. The measurement collapses the state to one of the eigenstates of the given operator and the result of the measurement is the corresponding eigenvalue. Parameters ---------- state : :class:`.Qobj` The ket or density matrix specifying the state to measure. op : :class:`.Qobj` The measurement operator. tol : float, optional Smallest value for the probabilities. Default is qutip's core settings' ``atol``. Returns ------- measured_value : float The result of the measurement (one of the eigenvalues of op). state : :class:`.Qobj` The new state (a ket if a ket was given, otherwise a density matrix). Examples -------- Measure the z-component of the spin of the spin-up basis state: >>> measure_observable(basis(2, 0), sigmaz()) (1.0, Quantum object: dims = [[2], [1]], shape = (2, 1), type = ket Qobj data = [[-1.] [ 0.]]) Since the spin-up basis is an eigenstate of sigmaz, this measurement always returns 1 as the measurement result (the eigenvalue of the spin-up basis) and the original state (up to a global phase). Measure the x-component of the spin of the spin-down basis state: >>> measure_observable(basis(2, 1), sigmax()) (-1.0, Quantum object: dims = [[2], [1]], shape = (2, 1), type = ket Qobj data = [[-0.70710678] [ 0.70710678]]) This measurement returns 1 fifty percent of the time and -1 the other fifty percent of the time. The new state returned is the corresponding eigenstate of sigmax. One may also perform a measurement on a density matrix. Below we perform the same measurement as above, but on the density matrix representing the pure spin-down state: >>> measure_observable(ket2dm(basis(2, 1)), sigmax()) (-1.0, Quantum object: dims = [[2], [2]], shape = (2, 2), type = oper Qobj data = [[ 0.5 -0.5] [-0.5 0.5]]) The measurement result is the same, but the new state is returned as a density matrix. """ eigenvalues, projectors, probabilities = ( measurement_statistics_observable(state, op, tol)) i = np.random.choice(len(eigenvalues), p=probabilities) if state.isket: state = (projectors[i] * state) / probabilities[i]**0.5 else: state = (projectors[i] * state * projectors[i]) / probabilities[i] return eigenvalues[i], state
[docs]def measure_povm(state, ops, tol=None): r""" Perform a measurement specified by list of POVMs. This function simulates a POVM measurement. The measurement collapses the state to one of the resultant states of the measurement and returns the index of the operator corresponding to the collapsed state as well as the collapsed state. Parameters ---------- state : :class:`.Qobj` The ket or density matrix specifying the state to measure. ops : list of :class:`.Qobj` List of measurement operators :math:`M_i` or kets. Either: 1. specifying a POVM s.t. :math:`E_i = M_i^\dagger M_i` 2. projection operators if ops correspond to projectors (s.t. :math:`E_i = M_i^\dagger = M_i`) 3. kets (transformed to projectors) tol : float, optional Smallest value for the probabilities. Default is qutip's core settings' ``atol``. Returns ------- index : float The resultant index of the measurement. state : :class:`.Qobj` The new state (a ket if a ket was given, otherwise a density matrix). """ collapsed_states, probabilities = ( measurement_statistics_povm(state, ops, tol)) index = np.random.choice(len(collapsed_states), p=probabilities) state = collapsed_states[index] return index, state
[docs]def measurement_statistics(state, ops, tol=None): r""" A dispatch method that provides measurement statistics handling both observable style measurements and projector style measurements(POVMs and PVMs). For return signatures, please check: - :func:`~measurement_statistics_observable` for observable measurements. - :func:`~measurement_statistics_povm` for POVM measurements. Parameters ---------- state : :class:`.Qobj` The ket or density matrix specifying the state to measure. ops : :class:`.Qobj` or list of :class:`.Qobj` - measurement observable (:class:.Qobj); or - list of measurement operators :math:`M_i` or kets (list of :class:`.Qobj`) Either: 1. specifying a POVM s.t. :math:`E_i = M_i^\dagger * M_i` 2. projection operators if ops correspond to projectors (s.t. :math:`E_i = M_i^\dagger = M_i`) 3. kets (transformed to projectors) tol : float, optional Smallest value for the probabilities. Default is qutip's core settings' ``atol``. """ if isinstance(ops, list): return measurement_statistics_povm(state, ops, tol) else: return measurement_statistics_observable(state, ops, tol)
[docs]def measure(state, ops, tol=None): r""" A dispatch method that provides measurement results handling both observable style measurements and projector style measurements (POVMs and PVMs). For return signatures, please check: - :func:`~measure_observable` for observable measurements. - :func:`~measure_povm` for POVM measurements. Parameters ---------- state : :class:`.Qobj` The ket or density matrix specifying the state to measure. ops : :class:`.Qobj` or list of :class:`.Qobj` - measurement observable (:class:`.Qobj`); or - list of measurement operators :math:`M_i` or kets (list of :class:`.Qobj`) Either: 1. specifying a POVM s.t. :math:`E_i = M_i^\dagger M_i` 2. projection operators if ops correspond to projectors (s.t. :math:`E_i = M_i^\dagger = M_i`) 3. kets (transformed to projectors) tol : float, optional Smallest value for the probabilities. Default is qutip's core settings' ``atol``. """ if isinstance(ops, list): return measure_povm(state, ops, tol) else: return measure_observable(state, ops, tol)