Discrete Math Tutor

Graphs / Basic Graphs

Least You Need to Know: Basic Graphs

Graphs model objects as **vertices** and connections as **edges**. Most beginner mistakes come from miscounting degree or confusing paths with edges.

The least you need to know

Key notation

V vertex set
E edge set
deg(v) degree of vertex v

Tiny worked example

  • Graph with edges {ab, ac, bc, cd}.
  • deg(c)=3 because c touches ac, bc, and cd.
  • The graph has 4 edges, so the total degree sum is 8.

Common mistakes

How to recognize this kind of problem

Start practice