reserve X for non empty set,
  S for SigmaField of X,
  M for sigma_Measure of S,
  E for Element of S,
  F for Functional_Sequence of X,REAL,

  f for PartFunc of X,REAL,
  seq for Real_Sequence,
  n,m for Nat,
  x for Element of X,
  z,D for set;
reserve i for Element of NAT;

theorem Th7:
  Partial_Sums R_EAL F = R_EAL(Partial_Sums F)
proof
  defpred P[Nat] means (Partial_Sums(R_EAL F)).$1 = (R_EAL
  Partial_Sums F).$1;
A1: for k be Nat st P[k] holds P[k+1]
  proof
    let k be Nat;
    assume P[k];
    then
    (Partial_Sums(R_EAL F)).(k+1) =R_EAL((Partial_Sums F).k) +R_EAL(F.(k+1
    )) by MESFUNC9:def 4
      .=R_EAL((Partial_Sums F).k + F.(k+1)) by MESFUNC6:23;
    hence thesis by Def2;
  end;
  (Partial_Sums(R_EAL F)).0 = (R_EAL F).0 by MESFUNC9:def 4
    .= R_EAL(Partial_Sums(F).0) by Def2;
  then
A2: P[ 0 ];
  for i being Nat holds P[i] from NAT_1:sch 2(A2,A1);
  hence thesis;
end;
