Skip to Content.
Sympa Menu

coq-club - [Coq-Club] Using already proved theorems to prove new theorems.

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

[Coq-Club] Using already proved theorems to prove new theorems.


chronological Thread 
  • From: satrajit AT attbi.com
  • To: coq-club AT pauillac.inria.fr
  • Subject: [Coq-Club] Using already proved theorems to prove new theorems.
  • Date: Tue, 14 Jan 2003 04:52:42 +0000
  • List-archive: <http://pauillac.inria.fr/pipermail/coq-club/>

Say I have proved theorems a and b and have to prove theorem c using a and b, 
something like:

Section mySection.

Theorem a:...
Proof.
.
.
Qed.

Theorem b:...
Proof.
.
.
Qed.

Theorem c:....
Proof.
.
.
Need to use theorems a and b here so that at the appropriate stage in the  
proof, Auto would simply make use of theorems a and b that have been proved 
already.
.
.
Qed.

End mySection.

Is this possible in Coq?
If yes, what is the general procedure to accomplish this in Coq 7.3?

Thanks in anticipation.




Archive powered by MhonArc 2.6.16.

Top of Page