Created
February 23, 2013 08:21
-
-
Save yoshihiro503/5018946 to your computer and use it in GitHub Desktop.
「ソフトウェアの基礎」Rel_J 練習問題 rsc_trans の証明
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(** **** 練習問題:★★, optional(rsc_trans) *) | |
Theorem rsc_trans : | |
forall (X:Type) (R: relation X) (x y z : X), | |
refl_step_closure R x y -> | |
refl_step_closure R y z -> | |
refl_step_closure R x z. | |
Proof. | |
intros. induction H. | |
apply H0. | |
apply rsc_step with y. | |
apply H. | |
apply IHrefl_step_closure. apply H0. | |
Qed. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment