
theorem
  for L being Lattice,
      a,b being Element of L holds
    b in PseudoComplements a iff b "/\" a = Bottom L
  proof
    let L be Lattice,
        a,b be Element of L;
    hereby assume
      b in PseudoComplements a; then
      consider x being Element of L such that
A1:   b = x & a "/\" x = Bottom L;
      thus b "/\" a = Bottom L by A1;
    end;
    assume b "/\" a = Bottom L;
    hence thesis;
  end;
