
theorem
  for f,g be Function of REAL,REAL st
    f is continuous & g is continuous holds
    min(f,g) is continuous
proof
 let f,g be Function of REAL,REAL;
 assume A1: f is continuous;
 assume A2: g is continuous;
 for x be Real holds min(f,g).x = min(f.x, g.x)
 proof
  let x be Real;
  reconsider x as Element of REAL by XREAL_0:def 1;
  min(f,g).x= min(f.x, g.x) by COUSIN2:def 1;
  hence thesis;
 end;
 hence thesis by FUZZY_5:15,A1,A2;
end;
