lean4-htt/tests/lean/run/541a.lean
2016-07-31 12:50:11 -07:00

23 lines
807 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import data.list data.nat
open nat list
section
variable {Q : Type}
definition f : list Q → -- default if l is empty, else max l
| [] := 0
| (h :: t) := f t + 1
theorem f_foo : ∀{l : list Q}, ∀{q : Q}, q ∈ l → f l ≥ 1
| [] := take q, assume Hq, absurd Hq (not_mem_nil _)
| [h] := take q, assume Hq, nat.le_of_eq rfl
| (h :: (h' :: t)) := take q, assume Hq,
have Hor : q = h q ∈ (h' :: t), from iff.mp (mem_cons_iff _ _ _) Hq,
have H : f (h' :: t) ≥ 1, from f_foo (mem_cons h' t),
have H1 : 1 + 1 ≤ f (h' :: t) + 1, from nat.add_le_add_right H 1,
calc
f (h :: h' :: t) = f (h' :: t) + 1 : rfl
... ≥ 1 + 1 : H1
... = 1 : sorry
end