How can one justify if the graph is planar from adjacency matrix

combinatoricsdiscrete mathematicseulerian-pathgraph theoryplanar-graphs

Given an adjacency matrix of a graph $G$, I was asked to do the following without drawing the graph:

A) Find the vertex of largest degree.

B) Does the graph have an Euler Circuit?

C) Is the graph Planar?


I did A and B. How can one justify if the graph is planar from adjacency matrix?

Best Answer

There are some simple conditions which, if transgressed, would mean that the graph is non-planar but in general there is nothing which could easily determine whether the graph is planar.

Since you said 'without drawing the graph' can we assume that the matrix is fairly small?

For a small number of vertices (e.g. $6$) it is easy to check whether or not the graph contains $K_{3,3}$ or a subgraph homeomorphic to $K_5$.

The reference you have already been given

https://en.wikipedia.org/wiki/Planar_graph

should be useful for the simple conditions.