我有一个功能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“只使用递归!”。但是,我不知道该怎么做。有什么帮助吗?