SSReflectによる鳩の巣原理の証明
SSReflectによる鳩の巣原理の証明
プログラミング Coq 自然数を扱う
http://www.iij-ii.co.jp/lab/techdoc/coqt/coqt4.html
で解説されている鳩の巣原理の証明をSSReflectに移してみました。証明の内容はまったく同じなので、比べるとおもしろいとおもいます。
Require Import ssreflect ssrbool ssrnat seq.
Lemma lt_S_n : forall (n m : nat), S n < S m -> n < m.
Proof.
by [].
Qed.
Lemma lt_Snm_nm : forall (n m : nat), S n < m -> n < m.
Proof.
move=> n m.
by apply (@ltn_trans n.+1 n m).
Qed.
Inductive InList (A : Type)(a : A) : list A -> Prop :=
| headIL : forall xs, InList A a (a::xs) (* 1 *)
| consIL : forall x xs, InList A a xs -> InList A a (x::xs). (* 2 *)
Theorem pigeonhole : forall (xs : list nat),
size xs < foldr plus 0 xs ->
exists x : nat, InList nat x.+2 xs.
Proof.
elim.
(* xs = [] の場合 *)
by [].
(* xs = x :: xs' の場合 *)
elim.
(* a = 0 の場合 *)
move=> xs IHxs H; apply lt_Snm_nm, IHxs in H.
by elim: H => x; exists x; constructor.
elim.
(* a = 1 の場合 *)
move=> _ xs IHxs H; apply lt_S_n, IHxs in H.
by elim: H => x; exists x; constructor.
(* a >= 2 の場合 *)
move=> a.
by exists a; constructor.
Qed.
注意:「ソフトウェアの基礎」の練習問題とは、異なるので注意してください。
http://proofcafe.org/sf/Logic_J.
(* $Id: ssr_pigeonhole.v,v 1.21 2014/04/30 04:25:03 suhara Exp suhara $ *)
Author And Source
この問題について(SSReflectによる鳩の巣原理の証明), 我々は、より多くの情報をここで見つけました https://qiita.com/suharahiromichi/items/9852d2112fcd806419b6著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .