theorem
  dom f in S & dom g in S implies dom(f+g) in S
proof
  assume dom f in S & dom g in S;
  then reconsider E1 = dom f, E2 = dom g as Element of S;
  dom(f+g) = E1 /\ E2 by VALUED_1:def 1;
  hence thesis;
end;
