
theorem
  for i, k being Nat holds i+1 <= k implies 1 <= k-'i
proof
  let i, k be Nat;
  assume i+1 <= k;
  then i+1 -' i <= k -' i by NAT_D:42;
  hence thesis by NAT_D:34;
end;
