Checking if a Graph is Planar - v, e & f

  • Context: Undergrad 
  • Thread starter Thread starter kljoki
  • Start date Start date
  • Tags Tags
    Graph
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
2 replies · 2K views
kljoki
Messages
5
Reaction score
0
Hi
I have this graph
Drawing1 (2).jpg


now i should check if this graph can be planar.

v - number of vertices
e - number of edges
f - number of faces

to be planar it should hold v - e + f = 2 from here f = 2 - v + e = 2 - 9 + 15 = 8
so f = 8 now my question is how to easily count faces (regions bounded by edges, including the outer, infinitely large region) of the graph??
thanks
 
Physics news on Phys.org
couldnt you start with point a and then compile a list of connections that come back to a

a-b-e

a-b-f-i

and continue to point b, c, d ... making sure not to count the same loop again

as an example b-e-a is the same as a-b-e
 
kljoki said:
Hi
I have this graph
View attachment 50059

now i should check if this graph can be planar.

v - number of vertices
e - number of edges
f - number of faces

to be planar it should hold v - e + f = 2 from here f = 2 - v + e = 2 - 9 + 15 = 8
so f = 8 now my question is how to easily count faces (regions bounded by edges, including the outer, infinitely large region) of the graph??
thanks

How about arguing that your graph contains neither a K3,3 nor a K5

as a subgraph? it seems there are not that many cases to consider...