Exam Flashcards

1
Q

Graph

A

Graph is a triple (V, E and g) where V is a finite nonempty set called the vertices. E is a finite set called the set of edges and g is a function called an incedence functions that assign to each edges e element of E, a one element subset {x} or a two element{v, w} where V and w are vertices.

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

simple graph,

A

there is at most one edge between any two vertices, and there are no self-loops or multiple edges.

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

complete graph

A

is a simple graph in which every pair of distinct vertices is connected by an edge.

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

bipartite graph

A

is a graph whose vertices can be divided into two disjoint sets such that there are no edges between vertices within the same set.

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

directed graph

A

, also known as a digraph, is a graph in which each edge has a direction associated with it.

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

regular graph

A

is a graph in which each vertex has the same number of edges.

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

walk

A

is a sequence of vertices and edges in a graph, where each edge connects two consecutive vertices in the sequence. The walk can traverse the same edge or vertex multiple times.

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

directed walk

A

is a walk in a directed graph, where each edge has a specific direction associated with it.

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

closed walk

A

is a walk that starts and ends at the same vertex.

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

closed directed walk

A

is a closed walk in a directed graph, where the walk starts and ends at the same vertex and follows the direction of the edges.

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

open walk

A

is a walk that starts and ends at different vertices. It can traverse the same edge or vertex multiple times but does not need to return to the starting vertex.

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

open directed walk

A

is an open walk in a directed graph, where the walk starts and ends at different vertices and follows the direction of the edges.

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

Trail:

A

is a walk in which no edge is repeated. It visits each vertex at most once but may revisit vertices.

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

Path:

A

is a trail in which no vertex is repeated. It visits each vertex exactly once, except for the starting and ending vertices.

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

Circuit:

A

is a closed trail in which no edge is repeated, except for the starting and ending vertex, which are the same.

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

Cycle:

A

is a closed path in which no vertex is repeated, except for the starting and ending vertex, which are the same.

17
Q

subgraph

A

is a graph that is formed by selecting a subset of vertices and edges from a larger graph.

18
Q

Adjacent edges

A

In a graph, two edges are said to be adjacent if they share a common vertex.

19
Q

isolated vertex

A

is a vertex in a graph that has no edges connecting it to any other vertex in the graph.

20
Q

Hamiltonian path

A

is a path in a graph that visits every vertex exactly once.it does not have to start and end at the same vertex.

21
Q

Hamiltonian cycle

A

, also known as a Hamiltonian circuit, is a cycle in a graph that visits every vertex exactly once and returns to the starting vertex.

22
Q

Hamiltonian circuit

A

is another term for a Hamiltonian cycle. It refers to a cycle in a graph that visits every vertex exactly once and returns to the starting vertex.

23
Q

Hamiltonian graph

A

is a graph that contains a Hamiltonian cycle. It is a graph in which there exists a cycle that visits every vertex exactly once.