Skip to content

Commit

Permalink
added statement of translation invariant
Browse files Browse the repository at this point in the history
  • Loading branch information
Antoine-dSG committed Jul 29, 2024
1 parent 28e547c commit ff63c11
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions FriezePatterns/Chapter1/section1.lean
Original file line number Diff line number Diff line change
Expand Up @@ -108,3 +108,9 @@ theorem glideSymm (F : Type*) [Field F] (f : ℕ×ℕ → F) (n: ℕ) [nzPattern
have h : f (1,m+n+1) = f (n,m) := by exact firstRowSymm F f n m
exact Eq.symm h
sorry


-- This is a consequence of the glide symmetry
lemma translateInvar (F : Type*) [Field F] (f : ℕ×ℕ → F) (i n: ℕ) [nzPattern_n F f n] (hi : i ≤ n+1) : ∀ m, f (i,m) = f (i,m+n+3) := by
intro m
sorry

0 comments on commit ff63c11

Please sign in to comment.