Confusion on the sign of CI coefficient in singlet state CI wavefunction #3181
-
|
Hello all, with corresponding Looking at the alpha and beta occupations, state 2 appears to be an open-shell singlet state which is an approximate linear combination of |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
|
There is an extra sign to keep track of, corresponding to PySCF's convention: |αβ00⟩ = -1 * S0- * S1+ |βα00⟩ because |αβ00⟩ = α0† β1† |vac⟩ That is to say, the absolute normal order defined in the FCI module of PySCF is spin-major, spatial-minor. All of the β electron creation operators are to the right of the α electron creation operators, regardless of the spatial orbital they operate on. This corresponds to the data structure of FCI vectors in PySCF, in which the rows are different α determinants and the columns are different β determinants. |
Beta Was this translation helpful? Give feedback.
There is an extra sign to keep track of, corresponding to PySCF's convention:
|αβ00⟩ = -1 * S0- * S1+ |βα00⟩
because
|αβ00⟩ = α0† β1† |vac⟩
|βα00⟩ = α1† β0† |vac⟩
That is to say, the absolute normal order defined in the FCI module of PySCF is spin-major, spatial-minor. All of the β electron creation operators are to the right of the α electron creation operators, regardless of the spatial orbital they operate on. This corresponds to the data structure of FCI vectors in PySCF, in which the rows are different α determinants and the columns are different β determinants.