Chapter 2 - Graphs and networks

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/29

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

30 Terms

1
New cards

graph

consists of points (called vertices or nodes) which are connected by lines (edges or arcs).

2
New cards

weighted graph or network

f a graph has a number associated with each edge (usually called its weight)

3
New cards

vertex

point on graph, vertices are soemtimes called nodes

4
New cards

edge

line segment joining vertices soemtimes called arcs

5
New cards

subgraph

graph, each of whose vertices belongs to the original graph and each of whose edges belongs to the original graph. It is part of the original graph.

6
New cards

degree/valency/order

number of edges incident to a vertex

7
New cards

even degree

If the degree of a vertex is even

8
New cards
9
New cards

walk

route through a graph along edges from one vertex to the next.

10
New cards

path

walk in which no vertex is visited more than once.

11
New cards

trail

walk in which no edge is visited more than once

12
New cards

cycle 

walk in which the end vertex is the same as the start vertex and no other vertex is visited more than once.

13
New cards

hamiltonian cycle

cycle that includes every vertex.

14
New cards

when are 2 vertices connected

if there is a path between them.

15
New cards

when is a graph connected 

all its vertices are connected.

16
New cards

loop

an edge that starts and finishes at the same vertex.

17
New cards

simple graph

one in which there are no loops and there is at most one edge connecting any pair of vertices.

18
New cards

directed edge 

If the edges of a graph have a direction associated with them

19
New cards

directed graph

f the edges of a graph have a direction associated with them

20
New cards
21
New cards

eulers handshaling lemma 

In any undirected graph, the sum of the degrees of the vertices is equal to 2 x the number of edges. As a consequence, the number of odd nodes must be even.

22
New cards

tree

connected graph with no cycles.

23
New cards

spannin tree of a graph

subgraph which includes all the vertices of the original graph and is also a tree

24
New cards

complete graph

raph in which every vertex is directly connected by a single edge to each of the other vertices

25
New cards

Isomorphic graphs

graphs which show the same information but may be drawn differently.

26
New cards

what do entries represent in adjacency matrix

describes the number of arcs joining the corresponding vertices.

27
New cards

what do entries represent in distance matrix 

entries represent the weight of each arc, not the number of arcs.

28
New cards

planar graph

ne that can be drawn in a plane such that no two edges meet except at vertex

29
New cards

what can planarity alogrith m be used for

The planarity algorithm may be applied to any graph that contains a Hamiltonian cycle. It provides a method of redrawing the graph in such a way that it becomes clear whether or not it is planar.

30
New cards

planarity algorithm

1 Identify a Hamiltonian cycle.

2 Draw a polygon with vertices labelled to match the ones in the Hamiltonian cycle.

3 Draw edges inside the polygon to match the edges of the original graph not already represented by the polygon itself.

4.маkе а list of all edges inside the olygon in any order. 5.Choose any unlabelled edge in your list and label it 'l'. If all edges are now labelled then the graph is planar.

6.Look at any unlabelled edges that cross the edge(s) just labelled: . If there are none, then go back to step 5  If any of these edges cross each other, then the graph is non-planar. • If none of these edges cross each other, give them the opposite label to the edge(s) just labelled. If all edges are now labelled, the graph is planar. Otherwise, go back to the start of step