let G1, G2 be _Graph; :: thesis: for v being set st G1 == G2 & ( G1 is _trivial or not v in the_Vertices_of G1 ) holds
G2 is removeVertex of G1,v

let v be set ; :: thesis: ( G1 == G2 & ( G1 is _trivial or not v in the_Vertices_of G1 ) implies G2 is removeVertex of G1,v )
assume that
A1: G1 == G2 and
A2: ( G1 is _trivial or not v in the_Vertices_of G1 ) ; :: thesis: G2 is removeVertex of G1,v
A3: G2 is Subgraph of G1 by A1, Th87;
set V = (the_Vertices_of G1) \ {v};
per cases ( G1 is _trivial or not v in the_Vertices_of G1 ) by A2;
end;