reserve S for IncStruct;
reserve A,B,C,D for POINT of S;
reserve L for LINE of S;
reserve P for PLANE of S;
reserve F,G for Subset of the Points of S;
reserve a,b,c for Element of {0,1,2,3};
reserve S for IncSpace;
reserve A,B,C,D,E for POINT of S;
reserve K,L,L1,L2 for LINE of S;
reserve P,P1,P2,Q for PLANE of S;
reserve F for Subset of the Points of S;

theorem Th18:
  A <> B & {A,B} on L & not C on L implies not {A,B,C} is linear
proof
  assume that
A1: A <> B & {A,B} on L and
A2: not C on L;
  given K such that
A3: {A,B,C} on K;
  {A,B} \/ {C} on K by A3,ENUMSET1:3;
  then {A,B} on K by Th10;
  then L = K by A1,Def10;
  hence contradiction by A2,A3,Th2;
end;
