Sec 7.2 – Definitions

Networks & GraphsName:

In the previous problems you were using visual graphs of problems.

Now we need to define some common terms that will be helpful.

VERTICES are the points on the graph and the lines connecting the vertices are called EDGES.

  1. The DEGREE of a vertex is defined by the number of edges that have that vertex as an endpoint. Find the degree of each vertex.

Vertex / Degree / Vertex / Degree
A / 4 / D
B / E
C / F
  1. Two vertices are ADJACENT, if they are connected by an edge.
  1. List all of the vertices adjacent to vertex A:
  2. List all of the vertices adjacent to vertex B:
  3. List all of the vertices adjacent to vertex C:
  1. A LOOP occurs when an edge has both endpoints being the same vertex.
  1. List any vertices that have a loop:
  1. MULTIPLE EDGES occur when 2 adjacent vertices have more than one edge connecting the same 2 vertices.
  1. List any pair of adjacent vertices that have multiple edges:
  1. A WALK is a route you can take from one point to another and you can use multiple edges
  1. List all of the 2 step walks starting from vertex B (a 2 step walk uses 2 edges).

BDB, BDA,

  1. Square the Adjacency Matrix using your calculator and show your answer below. See if the row representing vertex B sums to the same number of walks in #5.
  1. A graph is CONNECTED if at least one path exists between any two points. Circle the graphs below that are connected.
  1. II.III.
  1. A complete graph is a graph in which all vertices are adjacent to one another and they are usually denoted using a capital K. Can you create a K6?
  1. A directional graph is sometimes referred to as a DI-GRAPH. A di-graph is one with edges that are one directional (similar to a one way street). The vertices of di-graphs have an INDEGREE and an OUTDEGREE. The indegree is simply the number of edges coming into the vertex and the outdegree is the number of edges leaving the vertex. A vertex that only has edges coming in to the vertex is called a RECIEVER. A vertex that only has outgoing edges is called a TRANSMITTER.
  1. List the indegree and outdegree of each vertex in the graph shown.

Vertex / Indegree / Outdegree / Total Degree
A / 0 / 4 / 4
B
C
D
E
F
G
  1. List all of the vertices that are TRANSMITTERS:
  1. List all of the vertices that are RECIEVERS: