Усунення корекції у доказів Coq


15

Намагаючись довести деякі основні властивості за допомогою коіндуктивних типів у Coq, я продовжую стикатися з наступною проблемою, і я не можу її обійти. Я перегнав проблему в простий сценарій Coq наступним чином.

Типу дерево визначає , можливо , нескінченні дерева з гілками , мічених з елементами типу A . Гілка не обов'язково бути визначена для всіх елементів A . Значення Univ - це нескінченне дерево з усіма визначеними гілками A. isUniv перевіряє, чи задане дерево рівне Univ . Лема стверджує, що Univ справді задовольняє цеUniv .

Parameter A : Set.

CoInductive Tree: Set := Node : (A -> option Tree) -> Tree.

Definition derv (a : A) (t: Tree): option Tree :=
  match t with Node f => f a end.

CoFixpoint Univ : Tree := Node (fun _ => Some Univ).

CoInductive isUniv : Tree -> Prop :=
  isuniv : forall (nf : A -> option Tree) (a : A) (t : Tree), 
    nf a = Some t -> 
    isUniv t -> 
    isUniv (Node nf).

Lemma UnivIsUniv : isUniv Univ.
Proof.
  cofix CH.    (* this application of cofix is fine *)
  unfold Univ. 

Admitted.

У цей момент я відмовляюся від доказів. Поточна мета:

CH : isUniv Univ
============================
isUniv (cofix Univ  : Tree := Node (fun _ : A => Some Univ))

Я не знаю, яку тактику застосувати, щоб усунути кофікс у меті виробляти ( Вузень щось), щоб я міг застосувати isuniv .

Хтось може допомогти довести цю лему?
Які стандартні способи усунення кофіксу в такій ситуації?


1
Тег "інтерактивні докази" не є адекватним, оскільки він, як правило, відноситься до інтерактивних систем доказування в їхньому теоретично-теоретичному сенсі. Я вважаю, що правильним терміном є "інтерактивний доказ теореми" або "доказ теореми".
Іддо Цамарет

Виправлено, використовуючи "кореспондентів-кореспондентів"
Дейв Кларк

Відповіді:


6

Ви можете усунути cofix за допомогою допоміжної функції, що відповідає шаблону Дерева.

Definition TT (t:Tree) :=
  match t with
    | Node o => Node o
  end.

Lemma TTid : forall t: Tree, t = TT t.
  intro t.
  destruct t.
  reflexivity.
  Qed.

Lemma UnivIsUniv : isUniv Univ.
Proof.
  cofix.
  rewrite TTid.
  unfold TT.
  unfold Univ.

Ви досягнете цієї мети, яка є кроком, яка була розкрученою.

  UnivIsUniv : isUniv Univ
  ============================
   isUniv
     (Node
        (fun _ : A =>
         Some (cofix Univ  : Tree := Node (fun _ : A => Some Univ))))

Я адаптував цю техніку з http://adam.chlipala.net/cpdt/html/Coinductive.html


Дякую за це Я дивився на цю сторінку приблизно в той самий час, коли надійшла ваша відповідь. Божевільна, але, здається, працює ... і тоді я трохи застрягаю, але я трохи довше битиму голову проти цього.
Дейв Кларк

9
(* I post my answer as a Coq file. In it I show that supercoooldave's
   definition of a universal tree is not what he intended. His isUniv
   means "the tree has an infinite branch". I provide the correct
   definition, show that the universal tree is universal according to
   the new definition, and I provide counter-examples to
   supercooldave's definition. I also point out that the universal
   tree of branching type A has an infinite path iff A is inhabited.
   *)

Set Implicit Arguments.

CoInductive Tree (A : Set): Set := Node : (A -> option (Tree A)) -> Tree A.

Definition child (A : Set) (t : Tree A) (a : A) :=
  match t with
    Node f => f a
  end.

(* We consider two trees, one is the universal tree on A (always
   branches out fully), and the other is a binary tree which always
   branches to one side and not to the other, so it is like an
   infinite path with branches of length 1 shooting off at each node.  *)

CoFixpoint Univ (A : Set) : Tree A := Node (fun _ => Some (Univ A)).

CoFixpoint Thread : Tree (bool) :=
  Node (fun (b : bool) => if b then Some Thread else None).

(* The original definition of supercooldave should be called "has an
   infinite path", so we rename it to "hasInfinitePath". *)
CoInductive hasInfinitePath (A : Set) : Tree A -> Prop :=
  haspath : forall (f : A -> option (Tree A)) (a : A) (t : Tree A),
    f a = Some t ->
    hasInfinitePath t -> 
    hasInfinitePath (Node f).

(* The correct definition of universal tree. *)
CoInductive isUniv (A : Set) : Tree A -> Prop :=
  isuniv : forall (f : A -> option (Tree A)),
    (forall  a, exists t, f a = Some t /\ isUniv t) -> 
    isUniv (Node f).

(* Technicalities that allow us to get coinductive proofs done. *)
Definition TT (A : Set) (t : Tree A) :=
  match t with
    | Node o => Node o
  end.

Lemma TTid (A : Set) : forall t: Tree A, t = TT t.
  intros A t.
  destruct t.
  reflexivity.
  Qed.

(* Thread has an infinite path. *)
Lemma ThreadHasInfinitePath : hasInfinitePath Thread.
Proof.
  cofix H.
  rewrite TTid.
  unfold TT.
  unfold Thread.
  (* there is a path down the "true" branch leading to Thread. *)
  apply haspath with (a := true) (t := Thread).
  auto.
  auto.
Qed.

(* Auxiliary lemma *)
Lemma univChildNotNone (A : Set) (t : Tree A) (a : A):
  isUniv t -> (child t a <> None).
Proof.
  intros A t a [f H].
  destruct (H a) as [u [G _]].
  unfold child.
  rewrite G.
  discriminate.
Qed.

(* Thread is not universal. *)
Lemma ThreadNotUniversal: ~ (isUniv Thread).
Proof.
  unfold not.
  intro H.
  eapply univChildNotNone with (t := Thread) (a := false).
  auto.
  unfold Thread, child.
  auto.
Qed.

(* Now let us show that Univ is universal. *)
Lemma univIsuniv (A : Set): isUniv (Univ A).
Proof.
  intro A.
  cofix H.
  rewrite TTid.
  unfold TT.
  unfold Univ.
  apply isuniv.
  intro a.
  exists (Univ A).
  auto.
Qed.

(* By the way, it need not be the case that a universal tree has
   an infinite path! In fact, the universal tree of branching type
   A has an infinite path iff A is inhabited. *)

Lemma whenUnivHasInfiniteBranch (A : Set):
  hasInfinitePath (Univ A) <-> exists a : A, True.
Proof.
  intro A.
  split.
  intro H.
  destruct H as [f a t _].
  exists a.
  trivial.
  intros [a _].
  cofix H.
  rewrite TTid.
  unfold TT.
  unfold Univ.
  apply haspath with (t := Univ A); auto.
Qed.

Дякую за цю дещо бентежну відповідь. Я зіткнувся з проблемою з мешканням A, але мені вдалося доопрацювати свій шлях. Дивно, але Всесвіт не розгорнулася.
Дейв Кларк

Що ж, мене не бентежить моя відповідь :-) Я подумав, що міг би також дати комплексну відповідь, якщо дам.
Андрій Бауер

Ваша відповідь була бентежна для мене. Але безумовно високо цінується.
Дейв Кларк

Я жартував ... Так чи інакше, нема чого соромитися. Я робив гірші помилки. Також Інтернет запрошує людей до публікації, перш ніж вони думають. Я сам розмістив тут помилкове виправлення свого визначення, але, на щастя, я помітив це ще до того, як ви зробили це.
Андрій Бауер
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.