reserve w, w1, w2 for Element of ExtREAL;
reserve c, c1, c2 for Complex;
reserve A, B, C, D for complex-membered set;
reserve F, G, H, I for ext-real-membered set;
reserve a, b, s, t, z for Complex;
reserve f, g, h, i, j for ExtReal;
reserve r for Real;
reserve e for set;

theorem Th24:
  (F /\ G)"" c= (F"") /\ (G"")
proof
  let i;
  assume i in (F/\G)"";
  then consider w such that
A1: i = w" and
A2: w in F /\ G;
  w in G by A2,XBOOLE_0:def 4;
  then
A3: w" in G"";
  w in F by A2,XBOOLE_0:def 4;
  then w" in F"";
  hence thesis by A1,A3,XBOOLE_0:def 4;
end;
