在coq中证明max的交换性

时间:2013-01-19 07:41:53

标签: coq

我有一个函数max

Fixpoint max (n : nat) (m : nat) : nat :=
  match n, m with
    | O, O => O
    | O, S x => S x
    | S x, O => S x
    | S x, S y => S (max x y)
  end.

以及max的可交换性证明如下:

Theorem max_comm :
  forall n m : nat, max n m = max m n.
Proof.
  intros n m.
  induction n as [|n'];
    induction m as [|m'];
      simpl; trivial.
(* Qed. *)

这离开了S (max n' m') = S (max m' n'),这似乎是正确的,并且鉴于基本情况已经被证明,似乎应该能够告诉coq“只使用递归!”。但是,我无法弄清楚如何做到这一点。有什么帮助吗?

1 个答案:

答案 0 :(得分:4)

问题是你在对变量m进行归纳之前引入变量n,这使得归纳假设不那么通用。试试这个。

intro n; induction n as [| n' IHn'];
  intro m; destruct m as [| m'];
    simpl; try (rewrite IHn'); trivial.