reserve l, m, n for Nat;
reserve a,b for Int-Location,
  f for FinSeq-Location,
  s,s1,s2 for State of SCM+FSA;
reserve L for finite Subset of Int-Locations;
reserve L for finite Subset of FinSeq-Locations;

theorem
  not First*NotIn L in L
proof
  set FNI = First*NotIn L;
  consider sn being non empty Subset of NAT such that
A1: FNI = fsloc min sn and
A2: sn = {k where k is Element of NAT : not fsloc k in L} by Def4;
  min sn in sn by XXREAL_2:def 7;
  then ex k being Element of NAT st k = min sn & not fsloc k in L by A2;
  hence thesis by A1;
end;
