structure
definition
QuantumComputingDepthCert
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Physics.QuantumComputingDepthFromRS on GitHub at line 35.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
formal source
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