MMW Lesson 5: Simple Graph

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/43

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.

44 Terms

1
New cards

A ____________ is a collection of points called vertices or nodes, and line segments or curves called edges that connect the vertices

Graph

2
New cards

A Graph is a collection of points called _________ or ________, and line segments or curves called ________ that connect the vertices

vertices
nodes
edges

3
New cards

A ____________ is an edge connecting a vertex to itself

loop

4
New cards

A _________________ is a graph that has an edge connecting every pair of vertices

complete graph

5
New cards

Two vertices are ___________ if there is an edge joining them

adjacent

6
New cards

Graphs are considered as _____________ if they have same vertices connected in the same way

equivalent

7
New cards

A ____________ is an alternating sequence of vertices and edges. it can be seen as a trip from one vertex to another using the edges of a graph

path

8
New cards

If a path begins and ends with the same vertex, it is a CLOSED PATH or a __________ or __________

circuit
cycle

9
New cards

A graph is _____________ if for any two vertices, there is AT LEAST ONE PATH THAT JOINS THEM

connected

10
New cards

A _____________ is an edge that when you remove makes the graph disconnected

bridge

11
New cards

The _____________ of a vertex is the number of EDGES attached to it

degree

12
New cards

__________ or ______________ is when the degree of each vertex is ZERO

Null or Disconnected Graph

13
New cards

__________________ is when the loop connects vertex A to itself. The degree of the loop is 2

Graph with a loop

14
New cards

One of the subjects studied by mathematicians is _______________. The idea is to color the vertices or edges of a graph in such a way that adjacent vertices or concurrent edges are different colors.

graph coloring

15
New cards

The smallest number of colors required to color the vertices of a graph is the ________________ of the graph

chromatic number

16
New cards

______________________ - a graph that is 2-colorable if and only if it has no circuits that consist of odd number of vertices

2-colorable graph theorem

17
New cards

___________________ - the chromatic number of a PLANAR GRAPH is at most 4

Four-color theorem

18
New cards

____________________ is a way of coloring the vertices of a graph that no two adjacent VERTICES share the same color

Vertex coloring

19
New cards

An _________________ assigns a color to each EDGE so that no two adjacent EDGES share the same color

edge coloring

20
New cards

A ___________________ of a planar graph assigns a color to each FACE or REGION so that no two faces that share a boundary have the same color

Face coloring

21
New cards

A _________ can be represented by a graph with the different regions as VERTICES. Two regions are ___________ if they share part of their boundaries

map
adjacent

22
New cards

The graph representing a map is __________. Hence, it needs ONLY 4 COLORS

planar

23
New cards

_______________ is a path that passes through every edge EXACTLY ONCE ONLY. A path that contains ALL THE EDGES of the graph. It begins and ends with the ODD-DEGREE VERTICES

Euler path

24
New cards

A graph has an ______________ if and only if no more than two of its vertices have odd degree

Euler path

25
New cards

An _____________ of a graph is a closed path that contains all the edges of the graph

Euler circuit

26
New cards

A graph that has an Euler circuit is called an ___________

Eulerian

27
New cards

A ______________ is Eulerian if and only if EACH VERTEX HAS AN EVEN DEGREE

connected graph

28
New cards

If _________________, the graph has at least ONE EULER CIRCUIT (which is by definition also as Euler path). An Euler circuit can start at ANY VERTEX.

all vertices are even

29
New cards

If ___________________, the graph has NO EULER CIRCUITS but at least ONE EULER PATH. The path must begin at ONE ODD VERTEX and end at the other ODD VERTEX.

exactly two vertices are odd

30
New cards

If there are __________________, the graph has NO EULER PATH and NO EULER CIRCUITS

more than two odd vertices

31
New cards

Before using _________________, make sure you’ve used Euler’s Theorem to confirm that the graph has an Euler path or Euler circuit

Fleury’s Algorithm

32
New cards

A ________________ of a graph is a path passing through each VERTEX of the graph exactly once. If the path is closed, it is called a ____________________. If a graph has a Hamiltonian cycle, it is called ________________.

Hamiltonian path
Hamiltonian cycle
Hamiltonian

33
New cards

Every COMPLETE GRAPH with more than TWO VERTICES has a _________________. Furthermore, the number of Hamiltonian circuits in a complete graph with n vertices is (n-1)!

Hamiltonian circuit

34
New cards

_______________________ are the same if they pass through the SAME VERTICES in the SAME ORDER, regardless of the vertex where they begin and end

Two Hamiltonian circuits

35
New cards

A  _______________ is a graph in which ANY TWO VERTICES are connected by EXACTLY ONE PATH

Tree

36
New cards

A tree has no ___________
Trees are _________ graphs
Every edge in a tree is a __________

A tree with n vertices has exactly n-1 edges

circuits
connected
bridge

37
New cards

A ________________ is an undirected, disconnected, acrylic graph. IN other words, a disjoint collection of trees.

Forest

38
New cards

A disjoin collection of trees is known as ___________

forest

39
New cards

Each component of a forest is _________

Tree

40
New cards

A __________________ for a graph is a tree that results from the removal of as many edges as possible from the original graph without making it disconnected

spanning tree

41
New cards

A __________________ for a weighted graph is the spanning tree for the graph that has the SMALLEST POSSIBLE SUM OF THE WEIGHTS

minimum spanning tree

42
New cards

A ____________________ must have ONE FEWER EDGE than the NUMBER OF VERTICES

minimum spanning tree

43
New cards

________________ is a minimum spanning tree algorithm that takes a graph as input and finds the subset of the edges of that graph which

  1. form a tree that includes every vertex

  2. has the minimum sum of weights among all the trees that can be formed from the graph

Prim’s algorithm

44
New cards

A graph is ______________ if it can be drawn is such a way that no edges cross. This means that any two edges can meet only at an endpoint. 

planar