pith. machine review for the scientific record. sign in
def

pauliGroupSize

definition
show as:
view math explainer →
module
IndisputableMonolith.Physics.QuantumComputingDepthFromRS
domain
Physics
line
28 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Physics.QuantumComputingDepthFromRS on GitHub at line 28.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

used by

formal source

  25theorem quantumGateTypeCount : Fintype.card QuantumGateType = 5 := by decide
  26
  27/-- Pauli group (single qubit) has 8 elements. -/
  28def pauliGroupSize : ℕ := 8
  29theorem pauliGroupSize_2cubed : pauliGroupSize = 2 ^ 3 := by decide
  30
  31/-- Universal gate set has 3 gates = D. -/
  32def universalGates : ℕ := 3
  33theorem universalGates_eq_D : universalGates = 3 := rfl
  34
  35structure QuantumComputingDepthCert where
  36  five_gates : Fintype.card QuantumGateType = 5
  37  pauli_8 : pauliGroupSize = 2 ^ 3
  38  universal_D : universalGates = 3
  39
  40def quantumComputingDepthCert : QuantumComputingDepthCert where
  41  five_gates := quantumGateTypeCount
  42  pauli_8 := pauliGroupSize_2cubed
  43  universal_D := universalGates_eq_D
  44
  45end IndisputableMonolith.Physics.QuantumComputingDepthFromRS