coq-club AT inria.fr
Subject: The Coq mailing list
List archive
- From: Matthieu Sozeau <mattam AT mattam.org>
- To: coq-club AT inria.fr
- Subject: Re: [Coq-Club] Trouble with dependent induction
- Date: Sun, 17 Dec 2017 19:05:11 +0000
- Authentication-results: mail3-smtp-sop.national.inria.fr; spf=None smtp.pra=mattam AT mattam.org; spf=Pass smtp.mailfrom=matthieu.sozeau AT gmail.com; spf=None smtp.helo=postmaster AT mail-ua0-f171.google.com
- Ironport-phdr: 9a23:XsKuoBzCgL8Mg2PXCy+O+j09IxM/srCxBDY+r6Qd1O0VIJqq85mqBkHD//Il1AaPAd2Craocw8Pt8InYEVQa5piAtH1QOLdtbDQizfssogo7HcSeAlf6JvO5JwYzHcBFSUM3tyrjaRsdF8nxfUDdrWOv5jAOBBr/KRB1JuPoEYLOksi7ze+/94HObwlSmDaxfa55IQmrownWqsQYm5ZpJLwryhvOrHtIeuBWyn1tKFmOgRvy5dq+8YB6/ShItP0v68BPUaPhf6QlVrNYFygpM3o05MLwqxbOSxaE62YGXWUXlhpIBBXF7A3/U5zsvCb2qvZx1S+HNsDwULs6Wymt771zRRDnhicINT43/m/UhMJtkqxUvAmsqAZjz4POeoyZKOZyc6HbcNgHRWRBRMFRVylZD427dYQPE/YBPeZZr4bjulsFsAawBQ6tBezx0DBIm2L90Ko/0+s7DQHGwBYvH9cVvXTRttr1KLsSXvqwzKXSyjXDdfxW1C775YPVfB4hpvSMUqhxccrX0UQgCwPFjlGRqYz9JTyV0v4Cv3Kd7+V+SeKjk2onqxlrrTi02scjlJPFhoQLxVDY8yhy3YU7JcWgRUJlfdKpFIFcuiKaOodsXM8uXmNltDwnxrAEpJK2ejUBxo49yB7FcfOHdpCF4hL9W+aVJjd1nHdld6i+hxa26ESg1/fzWtWt3FZEsyZIkMTAumoC1xzU7ciHRf998Vm71TmT0ADT7/lIIUEylaXFN54s2qA8moYXvEjZHSL7mF/6gLGLekgm4OSk9ubqbqj+qp+ZLYB0iwX+Mqo0msy4BOQ1Kg0OUHKH+eSg1L3j/FP2QKhQgv0tlanYsY7VKt4GpqOiDA9V15ws6xe7Dzu8zNsYmnwHIEpfeB2bl4jpJ03OIPfgAPijhFSsiS5nyOzCPr38GZrANWPDkbfkfbZl8UFQ0gszzdZF55JVEL4NOvzzWlWi/ODfWxQ+Kkm/x/vtINR7zIIXH2yVUYGDN6aHlFaU+uIuLvTEX4gHtT/gY6wg7uLyhHoRnFYBYaCsm5wNZybrTbxdP0yFbC+00Z86GmAQs19mQQ==
I went about the proof in the other direction (induction on vector, case analysis on index). My intention was for this sort of thing to be covered well in CPDT (maybe in the section about how to avoid axioms), so I'll appreciate any suggestions on how I might have missed the requisite ideas.
Lemma fin_case : forall {n} (i : Fin.t n),
match n return Fin.t n -> Prop with
| O => fun _ => False
| S _ => fun i => i = Fin.F1 \/ exists i', i = Fin.FS i'
end i.
Proof.
destruct i; eauto.
Qed.
Lemma replace_fact1 : forall A n (xs : Vector.t A n) i x, (Vector.replace xs i x)[@i] = x.
Proof.
induction xs; intro i; destruct (fin_case i); firstorder (subst; simpl); eauto.
Qed.
On 12/17/2017 07:37 AM, Jasper Hugunin wrote:
Hello Matěj,
The reason you are missing the induction hypothesis is you never performed an induction (or a fixpoint).You can get the induction hypothesis by starting off with something likerefine ((fix inner n (i : Fin.t n) (xs : Vector.t A n) := match i as i' in Fin.t n' ...) n i xs)However, when I tried that route, I got stuck at Qed with a message sayingthe induction hypothesis was not used on a smaller term.
Here is a way to prove that lemma without axioms in pure Gallina:Fixpoint replace_fact1 {A n} (xs : Vector.t A n) i x: (Vector.replace xs i x)[@i] = x:= match i in Fin.t n'return forall (xs : Vector.t A n'), (Vector.replace xs i x)[@i] = xwith| Fin.F1 => fun xs => Vector.caseS' xs(fun xs => (Vector.replace xs Fin.F1 x)[@Fin.F1] = x)(fun a xs' => eq_refl : x = x)| Fin.FS i' => fun xs => Vector.caseS' xs(fun xs => (Vector.replace xs (Fin.FS i') x)[@Fin.FS i'] = x)(fun a xs' => replace_fact1 xs' i' x: (Vector.replace xs' i' x)[@i'] = x)end xs.
I don't use Ltac, so I can't help translating the above into tactics,but hopefully the above is useful in understanding what is going on behind the scenes.Perhaps just writing the outer fix+match (the fix is embedded in the Fixpoint command)as your refine would be enough to get started.
- Jasper Hugunin
On Sun, Dec 17, 2017 at 8:34 PM, Matěj Grabovský <matej.grabovsky AT gmail.com> wrote:
Hello.
I'm trying to prove the following, apparently simple statement about
the Vector.replace function from the standard library (the full code
is at http://lpaste.net/360859):
forall {A n} (xs : Vector.t A n) i x, (Vector.replace xs i x)[@i] = x
Although I can prove this just fine using Program, I'd also like to
perform the proof without it, without assuming additional axioms.
However, I can't quite wrap my head around what's going on with all
the type dependencies.
I can destruct the with an intricate matching trick, but I'm unable to
proceed in the latter branch as I need more information for the proof
to progress.
What is the Coq canonical/recommended approach to dependent induction
without on inductives indexed by types with decidable equality? Is
there a general approach to this? If not, how would I go about this in
the Vector case?
Note that I'm not looking for alternatives to stdlib Vector or
specialised libraries as of now. I'd very much like to understand the
concept in vanilla Coq first.
Best regards,
Matěj
- Re: [Coq-Club] Trouble with dependent induction, (continued)
- Re: [Coq-Club] Trouble with dependent induction, Jasper Hugunin, 12/17/2017
- Re: [Coq-Club] Trouble with dependent induction, Adam Chlipala, 12/17/2017
- [Coq-Club] Vector in Coq [Was: Re: Trouble with dependent induction], Emilio Jesús Gallego Arias, 12/17/2017
- Re: [Coq-Club] Vector in Coq [Was: Re: Trouble with dependent induction], Adam Chlipala, 12/17/2017
- Re: [Coq-Club] Vector in Coq [Was: Re: Trouble with dependent induction], Robby Findler, 12/17/2017
- Re: [Coq-Club] Vector in Coq [Was: Re: Trouble with dependent induction], Emilio Jesús Gallego Arias, 12/17/2017
- Re: [Coq-Club] Vector in Coq [Was: Re: Trouble with dependent induction], Emilio Jesús Gallego Arias, 12/17/2017
- Re: [Coq-Club] Vector in Coq [Was: Re: Trouble with dependent induction], Xavier Leroy, 12/17/2017
- Re: [Coq-Club] Vector in Coq [Was: Re: Trouble with dependent induction], Emilio Jesús Gallego Arias, 12/20/2017
- Re: [Coq-Club] Vector in Coq [Was: Re: Trouble with dependent induction], Emilio Jesús Gallego Arias, 12/17/2017
- Re: [Coq-Club] Vector in Coq [Was: Re: Trouble with dependent induction], Adam Chlipala, 12/18/2017
- Re: [Coq-Club] Vector in Coq [Was: Re: Trouble with dependent induction], Adam Chlipala, 12/17/2017
- [Coq-Club] Vector in Coq [Was: Re: Trouble with dependent induction], Emilio Jesús Gallego Arias, 12/17/2017
- Re: [Coq-Club] Trouble with dependent induction, Matthieu Sozeau, 12/17/2017
- Re: [Coq-Club] Trouble with dependent induction, Matěj Grabovský, 12/19/2017
- Re: [Coq-Club] Trouble with dependent induction, Adam Chlipala, 12/17/2017
- Re: [Coq-Club] Trouble with dependent induction, Jasper Hugunin, 12/17/2017
Archive powered by MHonArc 2.6.18.