Japanese
言語
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

qiskit.aqua.operators.legacy.commutator

commutator(op_a, op_b, op_c=None, sign=False, threshold=1e-12)[ソース]

Compute commutator of op_a and op_b or the symmetric double commutator of op_a, op_b and op_c.

See McWeeny chapter 13.6 Equation of motion methods (page 479)

If only op_a and op_b are provided:
result = A*B - B*A;

If op_a, op_b and op_c are provided:
result = 0.5 * (2*A*B*C + 2*C*B*A - B*A*C - C*A*B - A*C*B - B*C*A)
パラメータ
戻り値

the commutator

戻り値の型

WeightedPauliOperator

注釈

For the final chop, the original codes only contain the paulis with real coefficient.