reserve a,a1,a2,a3,b,b1,b2,b3,r,s,t,u for Real;
reserve n for Nat;
reserve x0,x,x1,x2,x3,y0,y,y1,y2,y3 for Element of REAL n;
reserve L,L0,L1,L2 for Element of line_of_REAL n;
reserve P,P0,P1,P2 for Element of plane_of_REAL n;

theorem Th95:
  x1 in P & x2 in P implies Line(x1,x2) c= P
proof
  P in plane_of_REAL n;
  then
A1: ex P9 being Subset of REAL n st P = P9 & ex y1,y2,y3 being Element of
  REAL n st P9 = plane(y1,y2,y3);
  assume x1 in P & x2 in P;
  hence thesis by A1,Th85;
end;
