Lattice: Exercises
Try these exercises to test your knowledge of lattices.
Distributivity
Does the lattice meet operator distribute over joins? In other words, for all lattices \(L\) and all \(p, q, r \in L\), is it necessarily true that \(p \wedge (q \vee r) = (p \wedge q) \vee (p \wedge r)\)? Prove your answer.
<div><div>
digraph G { node = 0.1, height = 0.1 edge = “none”
rankdir = BT; t → p t → q t → r p → s q → s r → s } <div>%%
In the above lattice, \(p \wedge (q \vee r) = p \neq t = (p \wedge q) \vee (p \wedge r)\). %%
Common elements
Let \(L\) be a lattice, and let \(J\) and \(K\) be two finite subsets of \(L\) with a non-empty intersection. Prove that \(\bigwedge J \leq \bigvee K\).
Another inequality
Let \(L\) be a lattice, and let \(J\) and \(K\) be two finite subsets of \(L\) such that for all \(j \in J\) and \(k \in K\), \(j \leq k\). Prove that \(\bigvee J \leq \bigwedge K\).
The minimax theorem
Let \(L\) be a lattice and \(A\) an \(m \times n\) matrix of elements of \(L\). Prove the following inequality: \($\bigvee_{i=1}^m \bigwedge_{j=1}^n A_{ij} \leq \bigwedge_{j=1}^n \bigvee_{i=1}^m A_{ij}\)$.
Notice that each parenthesized expression on the left hand side of the inequality shares an element with each parenthesized expression on the right hand side of the inequality.This is true because the parenthesized expressions on the left hand side correspond to rows and the parenthesized expressions on the right hand side correspond to columns; each row of a matrix shares an element with each of its columns. The theorem proven in the Common elements exercise above then tells us that each parenthesized expression on the left hand side is less than or equal to each parenthesized expression on the right hand side.
Let \(J = \{ a \wedge b \wedge c, d \wedge e \wedge f, g \wedge h \wedge i \}\) and \(K = \{ a \vee d \vee g, b \vee e \vee h, c \vee f \vee i \}\). Then the hypothesis for the theorem proven in the Another inequality exercise holds, giving us \(\bigvee J \leq \bigwedge K\), which is exactly what we wanted to prove. Extending this approach to the general case is straightforward. <div><div>
Parents:
- Lattice (Order Theory)
A poset that is closed under binary joins and meets.