Graph
maths
graph-theory
Graph
A simple undirected graph is tuple $V$ the vertex set and $E \subset V \times V$ an edge set. This is normally referred to as $G = (V, E)$. As this is undirected an edge $e = (x,y)$ is the same as the edge $e = (y,x)$, so if we define an equivalence relation $(x,y) \sim (y,x)$ for all $x,y \in V$ then it is fairer to say $E \subset V \times V / \sim$.
Representations
Visual representation
This is normally represented as a series of points and lines like the simple graph below.
This graph would have formal definition
For representations in computer look at graph representations.