reserve x,y for set;
reserve C,C9,D,D9,E for non empty set;
reserve c for Element of C;
reserve c9 for Element of C9;
reserve d,d1,d2,d3,d4,e for Element of D;
reserve d9 for Element of D9;
reserve i,j for natural Number;
reserve F for Function of [:D,D9:],E;
reserve p,q for FinSequence of D,
  p9,q9 for FinSequence of D9;
reserve f,f9 for Function of C,D,
  h for Function of D,E;
reserve T,T1,T2,T3 for Tuple of i,D;
reserve T9 for Tuple of i, D9;
reserve S for Tuple of j, D;
reserve S9 for Tuple of j, D9;
reserve F,G for BinOp of D;
reserve u for UnOp of D;
reserve H for BinOp of E;

theorem Th37:
  (for d1,d2 holds h.(F.(d1,d2)) = H.(h.d1,h.d2)) implies
    h*(F.:(f,f9)) = H.:(h*f,h*f9)
proof
  assume
A1: for d1,d2 holds h.(F.(d1,d2)) = H.(h.d1,h.d2);
  now
    let c;
    thus (h*(F.:(f,f9))).c = h.((F.:(f,f9)).c) by FUNCT_2:15
      .= h.(F.(f.c,f9.c)) by FUNCOP_1:37
      .= H.(h.(f.c),h.(f9.c)) by A1
      .= H.((h*f).c,h.(f9.c)) by FUNCT_2:15
      .= H.((h*f).c,(h*f9).c) by FUNCT_2:15
      .= (H.:(h*f,h*f9)).c by FUNCOP_1:37;
  end;
  hence thesis by FUNCT_2:63;
end;
