Proving Predicate Logic using Coq - Beginner Syntax
Posted
by Alan
on Stack Overflow
See other posts from Stack Overflow
or by Alan
Published on 2010-05-04T16:53:15Z
Indexed on
2010/05/04
16:58 UTC
Read the original article
Hit count: 243
I'm trying to prove the following in Coq:
Goal (forall x:X, P(x) /\ Q(x)) -> ((forall x:X, P (x)) /\ (forall x:X, Q (x))).
Can someone please help? I'm not sure whether to split, make an assumption etc.
My apologies for being a complete noob
© Stack Overflow or respective owner