Conjunction
Given two Proposition and , their conjunction is the proposition and .
It math it's denoted as: .
Latex symbol: \land
.
In programming, it would be the statement condition AND condition2
.
Example:
p: The temperature is above 30℃. q: The weather is humid.
Their conjunction is given by:
: The temperature is above 30℃ and the weather is humid.
Only when both and are true is the proposition considered true.
Truth table:
T | T | T |
T | F | F |
F | T | F |
F | F | F |