Graph Theory Vocab

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

1/20

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.

21 Terms

1
New cards

what is Euler’s Rule and what graphs follow it?

V + F - E = 2. Followed by eulerian and semi-eulerian graph. Is the same as being traversable

2
New cards

Simple graph

has no multiple edges and/or loops

3
New cards

multiple edges

when two or more edges are connecting adjacent vertices

4
New cards

planar graph

all the edges must be drawn without crossing each other

5
New cards

complete graph

every vertex is connected to each of the other vertices. repesented with Kn

6
New cards

complete graph formula

E =[ n x (n-1)] / 2

7
New cards

degree of vertex in complete graph

n - 1

8
New cards

bridge

an edge which connects two parts of the graph together

9
New cards

weighted graph/ network

numbers that represent some quantiity that can be measured

10
New cards

semi-eulerian graph

needs to have exactly two odd vertices. must start at odd vertex and end up at other odd vertex (and follow euler’s rule)

11
New cards

eulerian graph

all vertices are even (and follow euler’s rule)

12
New cards

isolated vertex

a vertex that is not connected to the graph

13
New cards

multiple edges

when two or more edges connect adjacent vertices

14
New cards

subgraph

all vertices chosen must be connected. note the original graph is a subgraph of itself.

15
New cards

bipartite graph

Vertices must be separated into two distinctive categories and adjacent vertices must not be gained

16
New cards

walk

any route through a graph from vertex to vertex along the connecting edges

17
New cards

graph

any diagram that consists of nodes/vertices and edges/arcs

18
New cards

regular graph

all vertices have the same degree

19
New cards

what powers of adjacency matrix represent:

no power - eg. if A to B is 1, there is a walk of length 1 connecting A and B

squared -eg. 2 walks of length 2 connecting A to itself with one stopover

20
New cards

what does N= M + M² represent

This shows total number of walks with at most 1 stop over and 2 stop overs.

21
New cards

hamiltonian graph

starts and finishes at same vertex and includes every other vertex only once