Created
February 23, 2013 08:24
-
-
Save yoshihiro503/5018957 to your computer and use it in GitHub Desktop.
「ソフトウェアの基礎」Rel_J 練習問題 rtc_rsc_coincide の証明
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 (rtc_rsc_coincide) *) | |
Theorem rtc_rsc_coincide : | |
forall (X:Type) (R: relation X) (x y : X), | |
clos_refl_trans R x y <-> refl_step_closure R x y. | |
Proof. | |
intros. split; intro H. | |
induction H. | |
apply rsc_R. | |
apply H. | |
apply rsc_refl. | |
apply rsc_trans with y. | |
apply IHclos_refl_trans1. | |
apply IHclos_refl_trans2. | |
induction H. | |
apply rt_refl. | |
apply rt_trans with y. | |
apply rt_step. apply H. | |
apply IHrefl_step_closure. | |
Qed. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment