PhysLean Documentation

PhysLean.CondensedMatter.TightBindingChain.Basic

The tight binding chain #

The tight binding chain corresponds to an electron in motion in a 1d solid with the assumption the electron can sit only on the atoms of the solid.

The solid is assumed to consist of N sites with a seperation of a between them

Mathematically, the tight binding chain corresponds to a QM problem located on a lattice with only self and nearest neighbour interactions, with periodic boundary conditions.

Refs. #

The physical parameters making up the tight binding chain.

  • N :

    The number of sites, or atoms, in the chain

  • N_ne_zero : NeZero self.N
  • a :

    The distance between the sites

  • a_pos : 0 < self.a
  • E0 :

    The energy associate with a particle sitting at a fixed site.

  • t :

    The hopping parameter.

Instances For
    @[reducible, inline]

    The Hilbert space of a TightBindingchain is the N-dimensional finite dimensional Hilbert space.

    Equations
    Instances For

      The eigenstate corresponding to the particle been located on the nth site.

      Equations
      Instances For

        The eigenstate corresponding to the particle been located on the nth site.

        Equations
        • One or more equations did not get rendered due to their size.
        Instances For

          The inner product of two localized states.

          Equations
          • One or more equations did not get rendered due to their size.
          Instances For

            The linear map |m⟩⟨n| for ⟨n| localized states.

            Equations
            • One or more equations did not get rendered due to their size.
            Instances For

              The linear map |m⟩⟨n| for ⟨n| localized states.

              Equations
              • One or more equations did not get rendered due to their size.
              Instances For

                The Hamiltonian of the tight binding chain with periodic boundary conditions is given by E₀ ∑ n, |n⟩⟨n| - t ∑ n, (|n⟩⟨n + 1| + |n + 1⟩⟨n|). The periodic boundary conditions is manifested by the + in n + 1 being within Fin T.N (that is modulo T.N).

                Equations
                • One or more equations did not get rendered due to their size.
                Instances For

                  The Hamiltonian applied to the localized state |n⟩ gives T.E0 • |n⟩ - T.t • (|n + 1⟩ + |n - 1⟩).

                  The energy of a localized state in the tight binding chain is E0. This lemma assumes that there is more then one site in the chain otherwise the result is not true.

                  The Brillouin zone of the tight binding model is [-π/a, π/a). This is the set in which wave functions are uniquly defined.

                  Equations
                  Instances For

                    The wavenumbers associated with the energy eigenstates. This corresponds to the set 2 π / (a N) * (n - ⌊N/2⌋) for n : Fin T.N. It is defined as such so it sits in the Brillouin zone.

                    Equations
                    Instances For
                      theorem CondensedMatter.TightBindingChain.quantaWaveNumber_exp_sub_one (T : TightBindingChain) (n : Fin T.N) (k : T.QuantaWaveNumber) :
                      Complex.exp (Complex.I * k * ↑(n - 1) * T.a) = Complex.exp (Complex.I * k * n * T.a) * Complex.exp (-Complex.I * k * T.a)
                      theorem CondensedMatter.TightBindingChain.quantaWaveNumber_exp_add_one (T : TightBindingChain) (n : Fin T.N) (k : T.QuantaWaveNumber) :
                      Complex.exp (Complex.I * k * ↑(n + 1) * T.a) = Complex.exp (Complex.I * k * n * T.a) * Complex.exp (Complex.I * k * T.a)

                      The energy eigenstates of the tight binding chain They are given by ∑ n, exp (I * k * n * T.a) • |n⟩.

                      Equations
                      Instances For

                        The energy eigenvalue of the tight binding chain for a k in QuantaWaveNumber is E0 - 2 * t * Real.cos (k * T.a).

                        Equations
                        Instances For

                          The energy eigenstates satisfy the time-independent Schrodinger equation.