Adjacent -- let u,v Î V(G). u is adjacent to v iff there is an edge between u and v.
B(n) -- the minimum number of edges in a broadcast graph on n vertices.
Broadcasting -- an information dissemination problem in which one vertex in a graph, called the originator, must distribute a message to all other vertices by placing a series of calls along the edges of the graph. Once informed, other vertices aid the originator in distributing the message. This is assumed to take place in discrete time units.
Broadcast Graph -- a graph in which broadcasting can be accomplished in élog2nù time units.
Cartesian product (´) -- let G1 = (V1, E1) and G2 = (V2, E2), where G1 is a graph on n1 vertices, and G2 is a graph on n2 vertices. Then G1 ´ G2 is a graph on n1n2 vertices, where V(G1 ´ G2) = V(G1) ´ V(G2), and (v1,u1) is connected to (v2,u2) if v1 = v2 and u1 is adjacent to u2, or u1 = u2 and v1 is adjacent to v2.
Degree -- let u Î V(G). The degree of u, denoted deg(u), is the number of vertices to which u is adjacent. The degree of G, denoted deg(G), is max{deg(u) | u Î V(G)}.
Diameter -- the maximum distance between any two vertices in a graph G.
Distance -- let u, v Î V(G). The distance between u and v is the length of the shortest path between u and v.
Graph -- a pair G = (V, E), where G is a set of vertices, and E is a set of pairs of vertices or edges. In broadcasting, the vertices typically represent computers, and the edges wires between computers; however, graphs can be applied to a multitude of other problems as well.
Hypercube -- denoted Qk, is a k-dimensional cube. Formally, Q1 = K2, and Qk = Qk-1 ´ K2 (´ is the Cartesian product operation). Hypercubes are the most famous of the only two known classes of minimum broadcast graphs.
Matching -- a set of edges, in which no two edges have a common vertex.
Minimal broadcast graph -- a broadcast graph of which no spanning proper subset is a broadcast graph.
Minimum broadcast graph -- a broadcast graph having B(n) edges.
Path -- let u, v Î
V(G).
A path between u and v is a sequence of
vertices u
= v0, v1, . . ., vn
=
v, such that vi ¹vj
for all i, j, and vi is adjacent to vi-1,
for 1 £ i £n.