FermionicOperator#
- class FermionicOperator(terms_dict={})[source]#
This class provides an efficient implementation of ladder term operators, i.e., operators of the form
where each term
is a product of fermionic raising and lowering operators acting on the th fermionic mode.The ladder operators satisfy the commutation relations
Examples
A ladder term operator can be specified conveniently in terms of
a
(lowering, i.e., annihilation),c
(raising, i.e., creation) operators:from qrisp.operators.fermionic import a, c O = a(2)*c(1)+a(3)*c(2) O
Yields
.
Methods#
Returns the daggered/adjoint version of self. |
|
Imports a FermionicOperator from OpenFermion. |
|
|
This method returns the expected value of a Hamiltonian for the state of a quantum argument. |
Calculates the ground state energy (i.e., the minimum eigenvalue) of the operator classically. |
|
Returns the hermitized version of self. |
|
|
Applies the fermionic anticommutation laws to bring the operator into a standard form. |
Transforms the FermionicOperator to a QubitOperator. |
|
Returns a function for performing Hamiltonian simulation, i.e., approximately implementing the unitary operator |