Graph Theory

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

1/26

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.

27 Terms

1
New cards

Graph

A nonempty set of connecting vertices and edges connecting vertices

2
New cards

Simple Graph

A graph with no loops and no multiple edges between the same pair of vertices (parallel edges)

3
New cards

Parallel Edges

Edges that have the same end vertices

4
New cards

Pendant Vertice (End Vertice)

A vertice with a degree of 1

5
New cards

Multigraph

A graph that may have multiple edges between the same pair of vertices

6
New cards

Loop

An edge of form (V,V), an edge that connects a vertex to itself

7
New cards

Degree

The number of edges with v as an end vertex. Denoted as d(v).

8
New cards

Adjacent Vertices

Vertices that are connected by an edge

9
New cards

Isolated Vertex

A vertex with a degree of 0

10
New cards

Complete Graph (Kn)

A simple graph where every pair of distinct vertices is connected by an edge.

11
New cards

Cycle Graph

A graph with degree of two for all vertices. Denoted by Cn, where n is vertices; n>=3

12
New cards

Wheel Graph (Wn)

Graph created when adding a vertex to the cycle graph Cn>=3 and connect that vertex to all vertices of Cn.

13
New cards

Path Graph (Pn)

A graph consisting of a sequence of vertices where each vertex is connected by an edge to the next. Denoted by Pn, where n is the number of vertices.

14
New cards

Bipartite

A simple graph whose vertex can be partitioned into two disjointed sets V1 & V2.

15
New cards

Complete Bipartite Graph (Km,n)

A bipartite graph where every vertex in V1 connects to every vertex in set V2.

16
New cards

Subgraph

A graph formed from a subset of vertices and edges of a graph

17
New cards

Induced Subgraph

A subgraph formed from a subset of vertices and all edges connecting them in the original graph

18
New cards

Connected Graph

A graph in which there is a path between every pair of vertices, meaning that all vertices are reachable from one another.

19
New cards

Disconnected Graph

A graph with at least one pair of vertices not connected by a path

20
New cards

Bridge (Cut-Edge)

An edge in a graph whose removal increases the number of connected components

21
New cards

Cut-Vertex

A vertex whose removal increases the number of connected components in a graph.

22
New cards

Walk

A finite sequence of vertices & edges in the Graph G(V,E) from an initial vertex to a terminal vertex

23
New cards

Cycle (Closed Path)

A walk that visits no vertex more than once except for the starting and ending vertex.

24
New cards

Trail

A walk with no repeated edges

25
New cards

Circuit

A closed trail

26
New cards
27
New cards

Path

A walk with no repeated vertices/edges