A Boolean Algebra is a mathematical structure consisting of (1) a set together with (2) operations and distinguished elements:
$\land$), disjunction $\lor$ ($\lor$), and negation/inversion $\neg$ ($\neg$).
Example: \( 1 \land 0 = 0 \), and \( 1 \lor 0 = 1 \). Also, \( \neg 1 = 0 \), and \( \neg 0 = 1 \). Formally, a Boolean Algebra can be written as \( (B, \lor, \land, \neg, 0, 1) \).
Interesting observation: we can substitute \( \land \) with $\cdot$ (
$\cdot$) (multiplication) and \( \lor \) with $+$ (addition), and have these operations work almost completely fine as with integer arithmetics: $0 \cdot 0 = 0$, $0 \cdot 1 = 0$, $1 \cdot 0 = 0$, $1 \cdot 1 = 1$, $0 + 0 = 0$, $0 + 1 = 1$, $1 + 0 = 1$, but $1 + 1 = 1$.