Graphs Flashcards

1
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
2
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
3
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
4
Q

Complete graph K_n

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
5
Q

Cycle Graph C_n

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
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
7
Q

Complete bipartite graph K_m,n

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
8
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
9
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
10
Q

How to calculate the degree of a vertex

A

The degree is the total number of edges connected to the vertex, with loops counted twice

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

Degree-Sum formula

A

∑v∈V deg(v)=2∣E∣, where each edge contributes twice to the sum of degrees

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

A walk in graph theory

A

A sequence of edges connecting a sequence of vertices in a graph

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

A circuit in a graph

A

A closed walk where the start and end vertices are the same

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

Euler circuit

A

A circuit that uses each edge of the graph exactly once

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

A path

A

A walk where no vertices are repeated

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

A cycle path

A

A path except that start and end can be the same in a cycle

17
Q

Subgraph

A

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