reserve n,m,k for Nat,
  x,X for set,
  A for Subset of X,
  A1,A2 for SetSequence of X;

theorem Th36:
  Intersection (A1 (\) A) = Intersection A1 \ A
proof
  thus Intersection (A1 (\) A) c= Intersection A1 \ A
  proof
    let x be object;
    assume
A1: x in Intersection (A1 (\) A);
A2: now
      let k;
      x in (A1 (\) A).k by A1,PROB_1:13;
      then x in (A1.k \ A) by Def8;
      hence x in A1.k & not x in A by XBOOLE_0:def 5;
    end;
    then x in Intersection A1 by PROB_1:13;
    hence thesis by A2,XBOOLE_0:def 5;
  end;
  let x be object;
  assume
A3: x in Intersection A1 \ A;
  then
A4: x in Intersection A1 by XBOOLE_0:def 5;
  now
    let k;
    x in A1.k & not x in A by A3,A4,PROB_1:13,XBOOLE_0:def 5;
    then x in A1.k \ A by XBOOLE_0:def 5;
    hence x in (A1 (\) A).k by Def8;
  end;
  hence thesis by PROB_1:13;
end;
