theorem
proved
grayCycle3_period
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Patterns.GrayCycle on GitHub at line 209.
browse module
All declarations in this module, on Recognition.
explainer page
Derivations using this theorem
depends on
formal source
206, oneBit_step := grayCycle3_oneBit_step
207}
208
209theorem grayCycle3_period : (2 ^ 3) = 8 := by decide
210
211/-- The 3-bit Gray cycle can be viewed as a GrayCover of period 8. -/
212def grayCover3 : GrayCover 3 8 :=
213{ path := grayCycle3Path
214, complete := grayCycle3_surjective
215, oneBit_step := grayCycle3_oneBit_step
216}
217
218end Patterns
219end IndisputableMonolith