Conjunction
Learn to join two or more propositions using the conjunction operation.
We'll cover the following
What is a conjunction?
A conjunction is a binary operation in the sense that it requires two operands. When two propositions are connected using a conjunction operation, it becomes a new proposition whose value depends on the truth values of the operands. Another name for the conjunction operator is the AND operator.
Example
Consider the following propositions:
- : Joseph is taking a discrete mathematics course.
- : Joseph is taking a calculus course.
Let’s make a new proposition by taking the conjunction of and .
- : “Joseph is taking a discrete mathematics course” and “Joseph is taking a calculus course.”
We can simplify without changing the meaning.
- : Joseph is taking both discrete mathematics and calculus courses.
We use the symbol to represent the conjunction operation. So,
The truth value of is true only when and both are true and false otherwise.
It is intuitive to think of conjunction as an “and” in everyday language. In fact, that is the reason conjunction is also called a logical AND.
Truth table
Let and be arbitrary propositions. The exact definition of conjunction is given by defining the truth value of in all possible cases. This is done by specifying a truth table. Let’s use T to represent true and F to represent false. A truth table enumerates all possible cases of the truth values of and and describes what the truth value will be for .
The truth table defining conjunction is given below:
T | T | T |
T | F | F |
F | T | F |
F | F | F |
In computer science, the truth values are often represented by and . Where represents false, and represents true. We call this the -notation. In this notation, is defined by the following table:
A keen observer must have realized that each entry in the last column can be obtained by multiplying the corresponding entries in the first two columns. For this reason is sometimes denoted by , where the symbol of multiplication is normally skipped.
Circuit diagram
Now, let’s illustrate the concept of conjunction through circuit diagrams. Here is the key that will help you in understanding them:
When both and are false, both switches are off, and no electricity reaches the bulb in the following circuit diagram. Therefore, the bulb is off, indicating that is false.
When is true and is false, the circuit is not complete and the bulb is off. This indicates that is false.
Similarly, when is false and is true, the circuit is not complete and the bulb is off. This indicates that is false.
Finally, when both and are true, both switches are on, and the circuit is complete. The bulb is on, indicating that is true.
Quiz
Test your understanding of conjunction.
If is a conjunction of two propositions and , then is true if
is true and is false.
Both and are false.
Both and are true.
is false and is true.