QubitOperator#

class QubitOperator(terms_dict={})[source]#

This class provides an efficient implementation of QubitOperators, i.e. Operators, that act on a qubit space (C2)n. Supported are operators of the following form:

O=jαjOj

where Oj=imij is a product of the following operators:

Operator

Ket-Bra Realization

Description

X

|01|+|10|

Pauli-X operator (bit flip)

Y

i|01|+i|10|

Pauli-Y operator (bit flip with phase)

Z

|00||11|

Pauli-Z operator (phase flip)

A

|01|

Annihilation operator

C

|10|

Creation operator

P0

|00|

Projector onto the |0 state

P1

|11|

Projector onto the |1 state

I

|11|+|00|

Identity operator

If you already have some experience you might wonder why to include the non-Pauli operators - after all they can be represented as a linear combination of X, Y and Z.

A0C1=(X0iY0)(X1+Y1)/4=(X0X1+X0Y1Y0X1+Y0Y1)/4

Recently, a much more efficient method of simulating A and C has been proposed by Kornell and Selinger, which avoids decomposing these Operators into Paulis strings but instead simulates

H=A0C1+h.c.

within a single step. This idea is deeply integrated into the Operators module of Qrisp. For an example circuit see below.

Examples

A QubitOperator can be specified conveniently in terms of arithmetic combinations of the mentioned operators:

from qrisp.operators.qubit import X,Y,Z,A,C,P0,P1

H = 1+2*X(0)+3*X(0)*Y(1)*A(2)+C(4)*P1(0)
H

Yields 1+P01C4+2X0+3X0Y1A2.

We create a QubitOperator and perform Hamiltonian simulation via trotterization:

from sympy import Symbol
from qrisp.operators import A,C,Z,Y
from qrisp import QuantumVariable
O = A(0)*C(1)*Z(2)*A(3) + Y(3)
U = O.trotterization()
qv = QuantumVariable(4)
t = Symbol("t")
U(qv, t = t)
>>> print(qv.qs)
QuantumCircuit:
---------------
          ┌───┐                                                                »
    qv.0: ┤ X ├────────────o──────────────────────────────────────o────────────»
          └─┬─┘┌───┐       │                                      │       ┌───┐»
    qv.1: ──┼──┤ X ├───────■──────────────────────────────────────■───────┤ X ├»
            │  └─┬─┘       │                                      │       └─┬─┘»
    qv.2: ──┼────┼─────────┼────■────────────────────────────■────┼─────────┼──»
            │    │  ┌───┐  │  ┌─┴─┐     ┌────────────┐     ┌─┴─┐  │  ┌───┐  │  »
    qv.3: ──■────■──┤ H ├──┼──┤ X ├──■──┤ Rz(-0.5*t) ├──■──┤ X ├──┼──┤ H ├──■──»
                    └───┘┌─┴─┐└───┘┌─┴─┐├───────────┬┘┌─┴─┐└───┘┌─┴─┐└───┘     »
hs_anc.0: ───────────────┤ X ├─────┤ X ├┤ Rz(0.5*t) ├─┤ X ├─────┤ X ├──────────»
                         └───┘     └───┘└───────────┘ └───┘     └───┘          »
«          ┌───┐                            
«    qv.0: ┤ X ├────────────────────────────
«          └─┬─┘                            
«    qv.1: ──┼──────────────────────────────
«            │                              
«    qv.2: ──┼──────────────────────────────
«            │  ┌────┐┌────────────┐┌──────┐
«    qv.3: ──■──┤ √X ├┤ Rz(-2.0*t) ├┤ √Xdg ├
«               └────┘└────────────┘└──────┘
«hs_anc.0: ─────────────────────────────────
«                                           
Live QuantumVariables:
----------------------
QuantumVariable qv

Call the simulator:

>>> print(qv.get_measurement(subs_dic = {t : 0.5}))
{'0000': 0.77015, '0001': 0.22985}

Methods#

QubitOperator.adjoint()

Returns an the adjoint operator.

QubitOperator.commutator(other)

Computes the commutator.

QubitOperator.from_matrix(matrix)

Represents a matrix as an operator

QubitOperator.get_measurement(qarg[, ...])

This method returns the expected value of a Hamiltonian for the state of a quantum argument.

QubitOperator.ground_state_energy()

Calculates the ground state energy (i.e., the minimum eigenvalue) of the operator classically.

QubitOperator.hermitize()

Returns the hermitian part of self.

QubitOperator.to_array([factor_amount])

Returns a numpy array representing the operator

QubitOperator.to_sparse_matrix([factor_amount])

Returns a scipy matrix representing the operator

QubitOperator.to_pauli()

Returns an equivalent operator, which however only contains Pauli factors.

QubitOperator.trotterization([method, ...])