
theorem Th100:
  for G1 being _Graph, G2 being GraphComplement of G1, e1,e2,v,w being object
  holds e1 Joins v,w,G1 implies not e2 Joins v,w,G2
proof
  let G1 be _Graph, G2 be GraphComplement of G1, e1,e2,v,w be object;
  assume A1: e1 Joins v,w,G1;
  per cases;
  suppose A2: v <> w;
    v in the_Vertices_of G1 & w in the_Vertices_of G1 by A1, GLIB_000:13;
    hence thesis by A1, A2, Th98;
  end;
  suppose v = w;
    hence thesis by GLIB_000:18;
  end;
end;
