【发布时间】:2018-08-29 08:42:40
【问题描述】:
我想证明,如果一个蕴涵是真的 (b --> c),那么在 a 和 @987654324 之间存在适当关系的情况下,那么其他一些蕴涵也是真的 (a --> c) @。
这是我试图证明的具体玩具示例:
theory Prop imports Main
begin
lemma
fixes func1 :: "'a => 'a"
and func2 :: "'a => 'a"
and func3 :: "'a => 'a"
assumes "∀ x y. func1 x = func1 y --> func3 x = func3 y"
and "∀ x. func1 x = func2 x"
shows "∀ x y. func2 x = func2 y --> func3 x = func3 y"
proof -
from assms show ?thesis by auto
qed
end
证明没有成功,Isabelle 2018 继续运行,“by auto”部分显示为紫色。我应该如何证明这种引理?
【问题讨论】:
标签: isabelle