[Math] Does a simple graph which consists of one vertex satisfy any edge or vertex connectivity

graph theory

I'm curious whether a simple graph which contains just one vertex is edge k-connected or vertex k-connected.

Edge-k-connectivity: We theoretically can remove any number of edges and it stays connected. The same with vertexes.

Graph satisfies is edge-k-connectivity: IF we remove any k edges -> Graph still satisfies connectivity.

In this case, the left side of implication is never satisfied so it is False. It the left side is False, then the whole implication is True.

EDIT:
Graph -> simple graph

Best Answer

According to conventions that I have seen, edge and vertex connectivity for a single vertex graph is undefined.

If you try to say that the graph is vertex 1-connected or edge 1-connected, you run into an issue.

For example, if a graph is vertex 1-connected, than we can remove one vertex and disconnect the graph. However, if we remove one vertex from the graph, we get the empty graph, which is connected by convention.

Similarly, if we say that the graph is edge 1-connected, then this means that we can disconnect the graph by removing one edge. However, there are no edges to remove, so this doesn't make sense.

Related Question