Conjunction

Given two Proposition pp and qq, their conjunction is the proposition pp and qq.

It math it's denoted as: pqp \land q.

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:

pqp \land q: The temperature is above 30℃ and the weather is humid.

Only when both pp and qq are true is the proposition pqp \land q considered true.

Truth table:

pp qq pqp \land q
T T T
T F F
F T F
F F F