Second Quantization
Second Quantization is an open-source Python package that simplifies working with fermionic many-body Hamiltonians.
It provides an intuitive symbolic interface (built on SymPy's FermionOp) for writing second-quantized operator expressions and robust utilities to convert these expressions into numerical matrix representations suitable for dense and sparse linear-algebra workflows.
Second Quantization is part of a set of complementary numerical libraries for quantum many-body physics such as:
Key features
- Simple symbolic construction: write Hamiltonians using familiar fermionic creation/annihilation operators and symbolic parameters.
- Bidirectional workflow: convert from symbolic operators to matrices (
to_matrix) and recover symbolic operator decompositions from matrices (to_operators). - Performance-oriented: supports sparse and dense formats, caching of basis operators, and integrates with numerical backends for efficient evaluation of large systems.
Design principles
- Clarity: expressive symbolic syntax closely matches pen-and-paper notation.
- Reproducibility: parameterized, callable Hamiltonians enable reproducible sweeps and analyses.
- Extensibility: built to integrate with existing numerical tools (OpenFermion, QuSpin) and to be extended with bosonic degrees of freedom for hybrid systems.
Citation
If you use second_quantization in your research, and you want to acknowledge it please cite:
@misc{secondquantization,
author = {Second Quantization Developers},
title = {Second Quantization},
howpublished = {\url{https://second-quantization.readthedocs.io/}},
year = {2025},
}
Development
If you want to contribute to the development of second_quantization, or you find any problem, please open an issue.