当使用Isabelle的无限流数据类型时,我需要这个明显真正的引理,但我无法弄清楚如何证明它(因为我还不熟悉coinduction)。我该如何证明呢?
lemma sset_cycle[simp]:
"xs ≠ [] ⟹ sset (cycle xs) = set xs"
答案 0 :(得分:2)
我自己不是coinduction的专家,但这里不需要coinduction。我也不是编码类型的专家,但无论如何,这是一个证据:
lemma sset_cycle [simp]:
assumes "xs ≠ []"
shows "sset (cycle xs) = set xs"
proof
have "set xs ⊆ set xs ∪ sset (cycle xs)" by blast
also have "… = sset (xs @- cycle xs)" by simp
also from ‹xs ≠ []› have "xs @- cycle xs = cycle xs"
by (rule cycle_decomp [symmetric])
finally show "set xs ⊆ sset (cycle xs)" .
next
from assms have "cycle xs !! n ∈ set xs" for n
proof (induction n arbitrary: xs)
case (Suc n xs)
have "tl xs @ [hd xs] ≠ []" by simp
hence "cycle (tl xs @ [hd xs]) !! n ∈ set (tl xs @ [hd xs])" by (rule Suc.IH)
also have "cycle (tl xs @ [hd xs]) !! n = cycle xs !! Suc n" by simp
also have "set (tl xs @ [hd xs]) = set (hd xs # tl xs)" by simp
also from ‹xs ≠ []› have "hd xs # tl xs = xs" by simp
finally show ?case .
qed simp_all
thus "sset (cycle xs) ⊆ set xs" by (auto simp: sset_range)
qed
更新:以下证明更好一点:
lemma sset_cycle [simp]:
assumes "xs ≠ []"
shows "sset (cycle xs) = set xs"
proof
have "set xs ⊆ set xs ∪ sset (cycle xs)" by blast
also have "… = sset (xs @- cycle xs)" by simp
also from ‹xs ≠ []› have "xs @- cycle xs = cycle xs"
by (rule cycle_decomp [symmetric])
finally show "set xs ⊆ sset (cycle xs)" .
next
show "sset (cycle xs) ⊆ set xs"
proof
fix x assume "x ∈ sset (cycle xs)"
from this and ‹xs ≠ []› show "x ∈ set xs"
proof (induction "cycle xs" arbitrary: xs)
case (stl x xs)
have "x ∈ set (tl xs @ [hd xs])" by (intro stl) simp_all
also have "set (tl xs @ [hd xs]) = set (hd xs # tl xs)" by simp
also from ‹xs ≠ []› have "hd xs # tl xs = xs" by simp
finally show ?case .
qed simp_all
qed
qed
答案 1 :(得分:2)
您可以直接通过n
(使用规则sset_induct)进行感应,而不是感应op !!
并使用sset
进行归纳:
lemma sset_cycle [simp]:
assumes "xs ≠ []"
shows "sset (cycle xs) = set xs"
proof (intro set_eqI iffI)
fix x
assume "x ∈ sset (cycle xs)"
from this assms show "x ∈ set xs"
by (induction "cycle xs" arbitrary: xs rule: sset_induct) (case_tac xs; fastforce)+
next
fix x
assume "x ∈ set xs"
with assms show "x ∈ sset (cycle xs)"
by (metis UnI1 cycle_decomp sset_shift)
qed