Skip to Content.
Sympa Menu

coq-club - Re: [Coq-Club] How to use [functional induction using]?

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

Re: [Coq-Club] How to use [functional induction using]?


Chronological Thread 
  • From: Pierre Courtieu <pierre.courtieu AT gmail.com>
  • To: Coq Club <coq-club AT inria.fr>
  • Subject: Re: [Coq-Club] How to use [functional induction using]?
  • Date: Sat, 11 Oct 2014 11:04:59 +0200

Hi,

if you want to use "induction with", you actually can but functional
induction is a wrapper easier to write (it also performs some
rewriting):

intros x ls H.
induction Prop, Prop, and, x , ls, (fold_right and x ls) using
fold_right_rect.
assumption.
apply IHt.
tauto.

Best regards,
Pierre

2014-10-10 21:22 GMT+02:00 Jonathan
<jonikelee AT gmail.com>:
> apply IHt.
> tauto.



Archive powered by MHonArc 2.6.18.

Top of Page