reserve x,X,Y for set;
reserve g,r,r1,r2,p,p1,p2 for Real;
reserve R for Subset of REAL;
reserve seq,seq1,seq2,seq3 for Real_Sequence;
reserve Ns for increasing sequence of NAT;
reserve n for Nat;
reserve W for non empty set;
reserve h,h1,h2 for PartFunc of W,REAL;
reserve e1,e2 for ExtReal;
reserve h,h1,h2 for PartFunc of REAL,REAL;

theorem
  h|{x} is non-increasing
proof
  now
    let r1,r2;
    assume that
A1: r1 in {x} /\ dom h and
A2: r2 in {x} /\ dom h and
    r1<r2;
    r1 in {x} by A1,XBOOLE_0:def 4;
    then
A3: r1 = x by TARSKI:def 1;
    r2 in {x} by A2,XBOOLE_0:def 4;
    hence h.r2 <= h.r1 by A3,TARSKI:def 1;
  end;
  hence thesis by Th23;
end;
