Euler's Formula

Overview
Important

Euler's formula is a special relationship between the number of vertices (VV), edges (EE), and faces (FF) in any connected planar graph. It states that:

VE+F=2.V - E + F = 2.

This means that if you draw a connected graph on a plane without any edges crossing, count the number of vertices, edges, and regions (faces, including the outside), then this formula will always hold.

Important properties

  • Applies to any connected planar graph (no edge crossings).

  • Faces include the outer (infinite) region.

  • If the graph is not connected, the formula generalizes to VE+F=1+cV - E + F = 1 + c, where cc is the number of connected components.

  • Useful for checking if a graph can be drawn in the plane without crossings.

  • Leads to important bounds on the number of edges in planar graphs.