reserve R for Ring,
  V for RightMod of R,
  a,b for Scalar of R,
  x,y for set,
  p,q ,r for FinSequence,
  i,k for Nat,
  u,v,v1,v2,v3,w for Vector of V,
  F,G,H for FinSequence of V,
  A,B for Subset of V,
  f for Function of V, R,
  S,T for finite Subset of V;

theorem Th12:
  Sum(T \ S) = Sum(T \/ S) - Sum(S)
proof
  (T \ S) misses S by XBOOLE_1:79;
  then
A1: (T \ S) /\ S = {}V;
  (T \ S) \/ S = T \/ S by XBOOLE_1:39;
  then Sum(T \/ S) = Sum(T \ S) + Sum(S) - Sum((T \ S) /\ S) by Th10;
  then Sum(T \/ S) = Sum(T \ S) + Sum(S) - 0.V by A1,Th5
    .= Sum(T \ S) + Sum(S) by VECTSP_1:18;
  hence thesis by RLSUB_2:61;
end;
