theorem Th45:
  for B, R, t holds B, R |- t iff ex S st t in S & S is (B, R)-derivable
proof
  let B, R, t;
  thus B, R |- t implies ex S st (t in S & S is (B, R)-derivable)
  proof
    assume B, R |- t;
    then consider P such that A1: t in rng P and A2: P is (B, R)-correct;
    take S = rng P;
    thus t in S by A1;
    thus S is (B, R)-derivable by A2;
  end;
  given S such that A10: t in S and A11: S is (B, R)-derivable;
  consider P such that A12: S = rng P and A13: P is (B, R)-correct by A11;
  thus thesis by A10, A12, A13;
end;
