Documentation

EulerPentagonalNumberTheorem_Franklin.Defs

Pentagonal Number Theorem — Definitions #

Core definitions for the formalization of the Euler Pentagonal Number Theorem via Franklin's involution.

Main definitions #

The length of the maximal consecutive run of elements of S ending at m, counted downward.

Equations
Instances For

    The set of subsets S ⊆ {1, …, n} with ∑_{s ∈ S} s = n, i.e., partitions of n into distinct positive parts.

    Equations
    Instances For

      Partitions of n into distinct positive parts with an even number of parts.

      Equations
      Instances For

        Partitions of n into distinct positive parts with an odd number of parts.

        Equations
        Instances For
          def pe (n : ℕ) :

          Number of partitions of n into an even number of distinct positive parts.

          Equations
          Instances For
            def po (n : ℕ) :

            Number of partitions of n into an odd number of distinct positive parts.

            Equations
            Instances For
              def partBase (S : Finset ℕ) :

              The smallest element of a partition, returning 0 for the empty set.

              Equations
              Instances For
                def partMax (S : Finset ℕ) :

                The largest element of a partition, returning 0 for the empty set.

                Equations
                Instances For
                  def partSlope (S : Finset ℕ) :

                  The length of the maximal consecutive run from max(S) downward in S.

                  Equations
                  Instances For

                    The interval {max(S) − slope(S) + 1, …, max(S)} (the "slope set" of S).

                    Equations
                    Instances For

                      Partitions S ∈ distinctPartitions n that are nonempty and satisfy (b ≤ s ∧ b ∉ D) ∨ b + 1 ≤ s, with b = partBase S, s = partSlope S.

                      Equations
                      Instances For

                        Partitions S ∈ distinctPartitions n that are nonempty and satisfy (s < b ∧ b ∉ D) ∨ s + 2 ≤ b, with b = partBase S, s = partSlope S.

                        Equations
                        Instances For

                          Partitions of n into distinct parts that are either empty or satisfy base(S) ∈ slopeSet(S) with base(S) = slope(S) or base(S) = slope(S) + 1.

                          Equations
                          Instances For
                            def smkSet (k : ℕ) :

                            The pentagonal partition S_{−k} = {k, k+1, …, 2k−1} of (3k²−k)/2.

                            Equations
                            Instances For
                              def spkSet (k : ℕ) :

                              The pentagonal partition S_k = {k+1, k+2, …, 2k} of (3k²+k)/2.

                              Equations
                              Instances For

                                For S ∈ 𝒫_α(n) with base b and max m, α(S) = (S \ {b, m−b+1}) ∪ {m+1}.

                                Equations
                                Instances For

                                  For S ∈ 𝒫_β(n) with slope s and max m, β(S) = (S ∪ {s, m−s}) \ {m}.

                                  Equations
                                  Instances For