theorem
  west_halfline p = {q where q is Point of TOP-REAL 2: q`1 <= p`1 & q`2 = p`2}
proof
  set A = {q where q is Point of TOP-REAL 2: q`1 <= p`1 & q`2 = p`2};
  hereby
    let x be object;
    assume
A1: x in west_halfline p;
    then reconsider q = x as Point of TOP-REAL 2;
A2: q`2 = p`2 by A1,Def13;
    q`1 <= p`1 by A1,Def13;
    hence x in A by A2;
  end;
  let x be object;
  assume x in A;
  then ex q being Point of TOP-REAL 2 st x = q & q`1 <= p`1 & q`2 = p`2;
  hence thesis by Def13;
end;
