I have a collection of 4 graphs, each with 7 vertices [see figure]. I have to determine if the last 3 of them are isomorphic to the first one.
What I have tried so far:
- looking at the degree list of each graph. However, all of them have the same unordered degree list. But from what I understand, that is not conclusive evidence of isomorphism in itself.
- creating an adjacency matrix. The problem is that it's several 7 x 7 matrices, and then I have to find the permutation and transpose and dot product and string representation and canonical values of them...it's a long procedure and I have limited time in the exam.
So I was wondering if there's something I'm missing. Is there a quick way to tell if these are isomorphic?
Your graphs do not all have the same unordered degree sequences. I count
There are all sorts of other things you can look at to rule out isomorphism. For example, all the graphs have two vertices of degree one. What is the distance between these two vertices?
Once you think that two graphs probably isomorphic, don't go to a matrix; try to label them. Label the points of one graph 1 through 7, and then try to match the labelling to the second graph. For example, graph $4$ has the same degree sequence as graph $1$. There is a unique vertex of degree $4$, so it has to get the same label in both graphs. Then the vertex of degree $4$ has a unique neighbor of degree $2$, and a unique vertex of degree $3$ so those labels are decided. From there everything should fall into place.