Lattice: Exercises

https://arbital.com/p/poset_lattice_exercise

by Kevin Clancy Jul 16 2016 updated Apr 25 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,rL, is it necessarily true that p(qr)=(pq)(pr)? Prove your answer.

%%hidden(Solution): The following counterexample shows that lattice meets do not necessarily distribute over joins.

A non-distributive lattice called as M3

%%%comment:
dot source:

digraph G {
  node [width = 0.1, height = 0.1]
  edge [arrowhead = "none"]

  rankdir = BT;
  t -> p
  t -> q
  t -> r
  p -> s
  q -> s
  r -> s
}
%%%

In the above lattice, p(qr)=pt=(pq)(pr). %%

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 JK.

%%hidden(Solution): If J and K have a non-empty intersection, then there exists some lattice element p such that pJ and pK. Since J is a lower bound of J, we have Jp. Since K is an upper bound of K, we have pK. By transitivity, we have JpK. %%

Another inequality

Let L be a lattice, and let J and K be two finite subsets of L such that for all jJ and kK, jk. Prove that JK.

%%hidden(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 jJ, jK. Hence, K is an upper bound of J, and therefore it is greater than or equal to the least upper bound of J: JK. %%

The minimax theorem

Let L be a lattice and A an m×n matrix of elements of L. Prove the following inequality: mi=1nj=1Aijnj=1mi=1Aij.

%%hidden(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 (abc)(def)(ghi)(adg)(beh)(cfi). 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={abc,def,ghi} and K={adg,beh,cfi}. Then the hypothesis for the theorem proven in the Another inequality exercise holds, giving us JK, which is exactly what we wanted to prove. Extending this approach to the general case is straightforward. %%