Documentation

Complexitylib.Circuits.Internal.AndOrNot

Internal: AND/OR/NOT Completeness Proof #

This internal module proves functional completeness of Basis.unboundedAndOr via DNF (disjunctive normal form) construction. The basis definitions are in Complexitylib.Circuits.AndOrNot.Defs; this module is re-exported through Complexitylib.Circuits.AndOrNot.

Indicator circuit: outputs true iff the input equals s.

A single N-input AND gate where input i is wired to primary input i, negated when s i = false. No internal gates needed.

Equations
  • One or more equations did not get rendered due to their size.
Instances For
    def Complexity.andOrNotFor.mkGate {N : } (f : BitString NBool) (i : Fin (2 ^ N)) :

    DNF circuit computing an arbitrary f : BitString N → Bool.

    For each of the 2^N possible inputs s (decoded via Nat.testBit), internal gate i is the indicator AND for s when f s = true, or a trivially-false 0-input OR otherwise. The single output OR gate disjoins all internal gates.

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

      Single-output DNF circuit computing f : BitString N → Bool.

      For each of the 2^N possible inputs s, internal gate i is the indicator AND for s when f s = true, or a trivially-false 0-input OR otherwise. The single output OR gate disjoins all internal gates.

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

        Helper lemmas for andOrNotFor correctness #

        theorem Complexity.andOrNotFor_eval {N : } [NeZero N] (f : BitString NBool) :
        (fun (x : BitString 1) => x 0) (andOrNotFor f).eval = f

        The single-output DNF circuit correctly computes f.

        Multi-output DNF circuit: andOrNotForM #

        def Complexity.AONForM_j {N M : } (idx : Fin (M * 2 ^ N)) :
        Fin M

        Internal gate for the multi-output DNF circuit. Gate idx encodes output bit j = idx / 2^N and indicator index i = idx % 2^N. If f(bitstring i)[j] = true, it's an AND indicator gate; otherwise a trivially-false OR gate.

        Equations
        Instances For
          def Complexity.AONForM_i {N M : } (idx : Fin (M * 2 ^ N)) :
          Fin (2 ^ N)

          Indicator coordinate encoded by a gate index in the multi-output DNF circuit.

          Equations
          Instances For
            def Complexity.AONForM_mkGate {N M : } (f : BitString NBitString M) (idx : Fin (M * 2 ^ N)) :

            Gate selected by an encoded output and indicator pair in the multi-output DNF circuit.

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

              Multi-output DNF circuit computing f : BitString N → BitString M.

              For each output bit j and each of the 2^N possible inputs, there is an indicator AND gate (or a trivially-false gate). Each output OR gate disjoins the 2^N gates for its output bit.

              Equations
              • One or more equations did not get rendered due to their size.
              Instances For
                theorem Complexity.andOrNotForM_eval {N M : } [NeZero N] [NeZero M] (f : BitString NBitString M) :

                The multi-output DNF circuit correctly computes f.

                Basis.unboundedAndOr is functionally complete: every finite Boolean function f : BitString N → BitString M is computed by some circuit over it, witnessed by the DNF construction andOrNotForM.