Korean
언어
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.