Index

Conjunction

The conjunction of a set of subformulas is true if all of the subformulas are true. The symbol we use for conjunction is . The conjunction of zero subformulas is trivially true. The conjunction of a single subformula is equivalent to that subformula.

Examples

	A 
	
	A ∧ ~A
	
	A ∧ B ∧ C
	

Truth Table

The truth table below shows all possible combinations for a binary conjunction. Here t stands for true, and f stands for false.

 A  B  A ∧ B 
fff
ftf
tff
ttt

References

Doets, Kees. From Logic to Logic Programming. MIT Press, 1994.

Index