[Math] Given two non-isomorphic graphs with the same number of edges, vertices and degree, what is the most efficient way of proving they are not isomorphic

graph theory

After being given the following two graphs with the same number of edges, vertices and degree, I'm trying to show that they are not isomorphic. At least they seem to be non-isomorphic from the time I spent playing with them on graphcreator. Is there an efficient way of solving this problem, or is this likely one of those problems I'm just not expected to solve conclusively?

First graph
enter image description here

Best Answer

In this case, you can check whether the complementary graphs are isomorphic. The complement to the first graph is two disjoint $4$-cycles. The complement to the second graph is an $8$-cycle. Since these graphs are clearly not isomorphic, the original graphs aren't either.