Digraphs

Digraphs (Directed Graphs)

Definition: A Digraph (or directed graph) $D$ is a type of graph containing a set of vertices, and a set of arcs (or directed edges), where each arc joins two vertices in a specific direction. $V(D)$ is a set containing elements known as Vertices, while $E(D) \subseteq (V x V)$ such that $V x V = \left\{(a, b) : a, b \in V \right\}$ is the set where the elements are ordered pairs called Arcs.

For example, let's look at the following directed graph. Arrows on the arcs indicate the direction of the arc:

Screen%20Shot%202014-02-19%20at%204.20.49%20AM.png

This digraph contains $4$ vertices and $4$ arcs.

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License