theorem Th39:
  for G,H,I being unital non empty multMagma,
      h being multiplicative Function of G,H,
      h1 being multiplicative Function of H,I holds
  h1 * h is multiplicative
proof
  let G,H,I be unital non empty multMagma,
  h be multiplicative Function of G,H,
  h1 be multiplicative Function of H,I;
  set f = h1 * h;
  let a,b be Element of G;
  thus f.(a * b) = h1.(h.(a * b)) by FUNCT_2:15
  .= h1.(h.a * h.b) by Def6
  .= (h1.(h.a)) * (h1.(h.b)) by Def6
  .= f.a * (h1.(h.b)) by FUNCT_2:15
  .= f.a * f.b by FUNCT_2:15;
end;
