Graphs Flashcards

1
Q

Vertices

A

Is the points

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Edges

A

Is the line connecting to the points

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Degrees

A

Number of edges connected to that vertex (loops are double counted)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Multigraph with loops

A

A graph where multiple edges between the same pair of vertices are allowed, and vertices can have loops

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Simple graph with loops

A

A simple graph that allows loops (edges connecting a vertex to itself) but has at most one edge between any pair of distinct vertices

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Simple graph without loops

A

A graph with no loops and at most one edge between each pair of vertices

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Complete graph

A

A simple graph without loops where every distinct vertex is connected with other vertices
n x (n-1) / 2 edges

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Cycle graph

A

A simple graph without loops in which each vertex connects to exactly two distinct vertices, forming a closed loop
has n edges

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Bipartite graph

A

A simple graph without loops whose vertices can be divided into two disjoint sets such that every edge connects a vertex in one set(V_1) to vertex in the other set (V_2)
E ⊆ {{x_1, x_2} | x_1 ∈ V_1, x_2 ∈ V_2}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Complete bipartite graph

A

A bipartite graph where each vertex in one set is connected to every vertex in the other set, with m * n edges

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Directed multigraph with loops

A

Consists of a set of vertices, a set of directed edges (arrows) and two function that assign a source vertex and a target vertex to each arrow, allowing multiple arrows between the same vertices and including loops

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Adjacent vertices

A

Two vertices that are connected by an edge in an undirected graph

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Degree-Sum formula

A

Number of degrees = 2 * edges
(Sum of degrees of all vertices = 2 * number of edges)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Walk

A

A walk allows traversal through any sequence of edges, and both vertices and edges can be revisited multiple times.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Euler circuit

A

Is a circuit which uses each edge of the graph precisely once

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Path

A

A walk where no vertices are repeated

17
Q

Cycle

A

A path that starts and end at the same vertices

18
Q

Subgraph

A

A graph derived from another graph by deleting some edges or vertices

19
Q

Circuit

A

A cycle but vertices can be repeated