Terminologies Flashcards

1
Q

Size of Graph

A

Cardinality of Edge set

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

Order of Graph

A

Cardinality of Vertex Set

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

Adjacent Edges

A

Two edges are adjacent if they have are incident on a common vertex

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

Subgraph

A

H is a subgraph of G if
V(H) is a subset of V(G)
and E(H) is a subset of E(G)

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

Improper Subgraph

A

Every graph is a subgraph of itself, and since it is equal, it is an improper subgraph

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

Proper Subgraph

A

A graph H that is a subgraph of graph G, and H!=G is called a proper subgraph

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

Spanning Subgraph

A

A subgraph H is a spanning subgraph of G is if V(H)=V(G) and E(H) is a subset of E(G)

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

Vertex induced subgraph

A

a subgraph of a given graph that contains a subset of the vertices of the original graph and all the edges that are present between those vertices.

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

Edge induced subgraph

A

A subgraph of a given graph that contains a subset of the edges of the original graph and the vertices incident to those edges

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

Walk

A

A walk in a graph is a sequence of vertices where consecutive vertices in the sequence are adjacent.
A walk can repeat vertices and edges

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

Path

A

If a walk does not repeat any edges and vertices, it’s called a path.

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

Trail

A

A walk in which you cannot repeat edges.

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

Closed Walk, Path or Trail

A

If a walk, path or trail that starts and ends at same vertex is a closed walk/path/trail

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

Circuit

A

A closed trail

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

Cycle or simple cycle

A

A cycle, often referred to as a simple cycle, is a closed path where no vertex (except for the starting and ending vertex) and no edge are repeated.

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

Connected Vertices

A

Vertices within a graph that are connected to each other by some path

17
Q

Component of a graph

A

A component of a graph is a maximal subgraph in which every pair of vertices is connected by a path, and which is not connected to any additional vertices outside of the subgraph.

18
Q

Distance between two vertices

A

Length of the shortest path between two vertices.

19
Q

Geodesic

A

Shortest path between two vertices in the graph

20
Q

Diameter

A

Largest distance in a graph

21
Q
A