Simple graph theory concepts

0.0(0)
studied byStudied by 16 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/31

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.

32 Terms

1
New cards

graph

a collection of points called vertices or nodes and line segments or curves called edges that connect the vertices.

<p>a collection of points called vertices or nodes and line segments or curves called edges that connect the vertices.</p>
2
New cards

vertices/nodes

collection of points

3
New cards

edges

line segments or curves

4
New cards

loop

an edge connecting a vertex to itself.

5
New cards

complete graph

a graph that has an edge connecting every pair of vertices.

<p>a graph that has an edge connecting every pair of vertices.</p>
6
New cards

adjacent

there is an edge joining them.

<p>there is an edge joining them.</p>
7
New cards

equivalent

same vertices connected in the same way.

<p>same vertices connected in the same way.</p>
8
New cards

path

alternating sequence of vertices and edges.

<p>alternating sequence of vertices and edges.</p>
9
New cards

circuit

a path that begins and ends with the same vertex

10
New cards

A graph is ______ if for any two vertices, there is at

least one path that joins them.

connected

11
New cards

bridge

edge that when you remove makes the graph disconnected.

<p>edge that when you remove makes the graph disconnected.</p>
12
New cards

degree

the number of edges attached to a vertex

13
New cards

graph coloring

The idea is to color the vertices or edges of a graph in such a way that adjacent vertices or concurrent edges are given different colors.

14
New cards

chromatic number of the graph

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

15
New cards

2- Colorable Graph Theorem

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

16
New cards

Four-Color Theorem

The chromatic number of a planar graph is at most 4.

17
New cards

adjacent

if they share part of their boundaries.

18
New cards

Euler path

  • a path that passes through every edge exactly once only

  • a path that contains all the edges of the graph

  • begin and end with the odd-degree vertices

  • if and only if no more than two of its vertices have odd degree.

19
New cards

Euler circuit

a closed path that contains all the edges of the graph.

20
New cards

Eulerian

A graph that has an Euler circuit

21
New cards

A ____ is Eulerian if and only if each vertex

has even degree.

Connected graph

22
New cards

if all vertices are ______ the graph has at least one Euler

circuit

even

23
New cards

exactly two vertices are ___, the graph has no Euler circuits but at least one Euler path.

odd

24
New cards

If there are more than ___ vertices, the graph

has no Euler path and no Euler circuits.

two odd

25
New cards

Hamiltonian path

a path passing through each vertex of the graph exactly once.

26
New cards

Hamiltonian cycle

If the hamiltonian path is closed

27
New cards

Hamiltonian

If a graph has a Hamiltonian cycle, it is called Hamiltonian.

28
New cards

tree

a graph in which any two vertices are connected by exactly one path.

<p>a graph in which any two vertices are connected by exactly one path.</p>
29
New cards

forest

an undirected, disconnected, acyclic graph. In other words, a disjoint collection of trees is known as forest.

30
New cards

spanning tree

a tree that results from the removal of as many edges as possible from the original graph without making it disconnected.

31
New cards

minimum spanning tree

  • the spanning tree for the graph that has the smallest possible sum of the weights.

  • must have one fewer edge than the number of vertices.

32
New cards

Prim's algorithm

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