feat(data/{list,fin}): add theorems for use in matrices

This commit is contained in:
Rob Lewis 2016-03-23 13:25:42 -04:00 committed by Leonardo de Moura
parent 66cd4f1196
commit 5a640590cc
2 changed files with 29 additions and 0 deletions

View file

@ -68,6 +68,14 @@ calc
length (upto n) = length (list.upto n) : (map_val_upto n ▸ length_map fin.val (upto n))⁻¹
... = n : list.length_upto n
lemma upto_ne_nil_of_ne_zero (n : nat) (Hn : n ≠ 0) : upto n ≠ [] :=
begin
intro Hup,
apply Hn,
rewrite [-(@length_nil (fin n)), -Hup],
apply eq.symm !length_upto
end
definition is_fintype [instance] (n : nat) : fintype (fin n) :=
fintype.mk (upto n) (nodup_upto n) (mem_upto n)
@ -388,6 +396,10 @@ definition fin_zero_equiv_empty : fin 0 ≃ empty :=
right_inv := λ e : empty, empty.rec _ e
theorem false_of_fin_zero (x : fin 0) : false :=
have t : empty, from equiv.fn (fin.fin_zero_equiv_empty) x,
empty.induction_on (λ c, false) t
definition fin_one_equiv_unit : fin 1 ≃ unit :=
⦃ equiv,
to_fun := λ f : (fin 1), unit.star,
@ -404,6 +416,15 @@ definition fin_one_equiv_unit : fin 1 ≃ unit :=
end
theorem fin_one_eq_zero (x : fin 1) : x = !fin.zero :=
begin
induction x with [xv, xlt],
unfold fin.zero,
congruence,
apply eq_zero_of_le_zero,
apply le_of_lt_succ xlt
end
definition fin_sum_equiv (n m : nat) : (fin n + fin m) ≃ fin (n+m) :=
have aux₁ : ∀ {v}, v < m → (v + n) < (n + m), from
take v, suppose v < m, calc

View file

@ -73,6 +73,14 @@ theorem eq_nil_of_length_eq_zero : ∀ {l : list T}, length l = 0 → l = []
| [] H := rfl
| (a::s) H := by contradiction
theorem length_cons_pos (h : T) (tt : list T) : 0 < length (h::tt) :=
begin
apply lt_of_not_ge,
intro H,
let H' := list.eq_nil_of_length_eq_zero (eq_zero_of_le_zero H),
apply !list.cons_ne_nil H'
end
theorem ne_nil_of_length_eq_succ : ∀ {l : list T} {n : nat}, length l = succ n → l ≠ []
| [] n h := by contradiction
| (a::l) n h := by contradiction