Section 1: Fundamentals Flashcards
Graph
A pair (V, E), where V is any finite set, and E is a set whose elements are pairs of elements from V
Vertex set
The set V in (V, E), sometimes written V(G)
Edge set
The set E in (V, E), sometimes written E(G)
Adjacent vertices
there is an edge between them
Endpoints of an edge
the vertices connected by the edge
incident
If e = uv is an edge of G, we say that u and v are
incident with e, and if two edges e and f have a common endpoint we
say that e and f are incident.
Adjacency matrix
an n × n matrix in which , the entry in the column labelled u and the row labelled v is 1 if and only if uv is an edge.
Multigraphs
Graphs with loops and/or multiple edges
Directed graph/ Digraph
A graph where all the edges are directed from
one vertex to another.
Formally, a digraph G is a pair (V, E), where V is any finite set, and E is a set whose elements are …
ordered pairs of elements from V.
Weighted graph
each edge is given a weighting indicating the
strength of the interaction the edge represents
Subgraph
a graph H obtained from G by deleting vertices and/or edges
Induced subgraph
a subgraph H of G obtained by deleting only vertices (and the edges incident with the deleted vertices).
Thus, if U is a subset of the vertices, we can refer to the subgraph induced by U: this is the graph
with …..
vertex-set U and edge-set {vw ∈ E : v, w ∈ U}.
Spanning subgraph
a subgraph of G obtained by deleting only edges.
Walk from u to v
a sequence of vertices w1, . . . , wp (for some natural number p ≥ 2), with w1 = u and wp = v, such that wiwi+1 is an edge for every 1 ≤ i ≤ p − 1.