%%🖋 Edit in Excalidraw, and the dark exported image%%

Problem Description(s)

Decision Version:

Given a plane separated into discrete contiguous\ regions, can each region be assigned an element from a discrete set (equivalently, coloured) such that adjacent regions have different ’s (different colours)

  • Contiguous: A connected, open subset of the plane (#tosee why open?):
    • Contiguous here means that we cannot call two non-connecting regions to be the same region. If they connect, they must be the same region.
  • Adjacent: Sharing non-isolated boundary points
    • This is to prevent regions that only share a single point to be considered as ‘adjacent’. If we did not have this restriction, a pie-chart could have infinitely many connected regions.

Proved true by the Four Colour Theorem

Optimisation Version:

Given a plane separated into discrete contiguous regions, where each region is assigned an element from a discrete set (equivalently, coloured) such that adjacent regions have different ’s (different colours), what is the minimum size of (i.e. no. of colours) required?

Four Colour Theorem