LESSWRONG
LW

Wikitags
Main
2
Exercises
1
Examples

Lattice: Exercises

Edited by Kevin Clancy last updated 25th Apr 2017

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∈L, is it necessarily true that p∧(q∨r)=(p∧q)∨(p∧r)? Prove your answer.

Solution

The following counterexample shows that lattice meets do not necessarily distribute over joins.

A non-distributive lattice called as M3

In the above lattice, p∧(q∨r)=p≠t=(p∧q)∨(p∧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 ⋀J≤⋁K.

Solution

If J and K have a non-empty intersection, then there exists some lattice element p such that p∈J and p∈K. Since ⋀J is a lower bound of J, we have ⋀J≤p. Since ⋁K is an upper bound of K, we have p≤⋁K. By transitivity, we have ⋀J≤p≤⋁K.

Another inequality

Let L be a lattice, and let J and K be two finite subsets of L such that for all j∈J and k∈K, j≤k. Prove that ⋁J≤⋀K.

Solution

Rephrasing the problem statement, we have that every element of J is a lower bound of K and that every element of K is an upper bound of J. It the follows that for j∈J, j≤⋀K. Hence, ⋀K is an upper bound of J, and therefore it is greater than or equal to the least upper bound of J: ⋁J≤⋀K.

The minimax theorem

Let L be a lattice and A an m×n matrix of elements of L. Prove the following inequality: m⋁i=1n⋀j=1Aij≤n⋀j=1m⋁i=1Aij.

Solution

To get an intuitive feel for this theorem, it helps to first consider a small concrete instantiation. Consider the 3×3 matrix depicted below, with elements a,b,c,d,e,f,g,h, and i. The inequality instantiates to (a∧b∧c)∨(d∧e∧f)∨(g∧h∧i)≤(a∨d∨g)∧(b∨e∨h)∧(c∨f∨i). Why would this inequality hold?

⎡⎢⎣abcdefghi⎤⎥⎦

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∧b∧c,d∧e∧f,g∧h∧i} and K={a∨d∨g,b∨e∨h,c∨f∨i}. Then the hypothesis for the theorem proven in the Another inequality exercise holds, giving us ⋁J≤⋀K, which is exactly what we wanted to prove. Extending this approach to the general case is straightforward.

Parents:
Lattice (Order Theory)
1
1
Discussion0
Discussion0