This calculates the Boolean Equation:
x . y = s
xy = s
x x (multiplication sign) y =s
x ∧ y = s
(In C Syntax):
x && y = s
The left switch represents the Boolean Variable, x; the right switch represents the Boolean variable, y; and the lamp represents the Boolean result. When it comes to Boolean And, the result is sometimes termed: 'the logical product.'
And Gate Truth Table:
0 ∧ 0 = 0
0 ∧ 1 = 0
1 ∧ 0 = 0
1 ∧ 1 = 1