General Flashcards
What is a Graph?
A finite, nonempty set V, the vertex set along with set E, the edge set, whose elements e in E are pairs (a,b) with a,b in V
What is an Undirected Graph?
An undirected graph is a graph which the edge set consists of unordered pairs
What is a Directed Graph?
A Digraph/Directed graph is a graph in which pairs are ordered
A bipartile graph?
A graph is bipartile if it is a non empty edge set, and it’s vertex set can be decomposed into two disjoint nonempty subsets
Define the degree of a vertex in an undirected graph
The degree of a vertex is the no of edges that include the vertex
Define a neighbour of vertex v
In a graph a vertex u is a neighbour of a vertex v if (u,v)eE
Define a successor of a vertex V
In a directed graph a successor of a vertex v is a vertex u such that (v,u)eE
Define a predecessor for vertex v
In a directed graph a predecessor of a vertex v is a vertex u such that (u,v)eE
What does it mean for two graphs to be isomorphic?
Two graphs are said to be isomorphic if there exists a bijection a(v)-> v_2 such that (u,v)eE if and only if (a(u),a(v))eE
What is a Chromatic number?
The smallest K which G has been a K colouring
Define the floor and ceiling of X
Floor is the largest integer that is equal or smaller than X
The ceiling is the largest integer that is equal or larger than X
Define a walk and it’s length?
A set of edges is a walk if there exists a corresponding sequence of vertices
Its length is the number of edges in the sequence
Define a trail
A trail is a walk where all the edges are distinct
Define a path
A path is a trail in which all the vertices are distinct
Define a cycle
A cycle is a path that includes 3 or more edges
Define what it means for two verticies to be connected
In a graph two vertices are said to be connected if there is a walk between them
Define what it means for a graph to be connected
A graph is connected in which every pair of vertices is connected
Define what it means for a to be strongly connected to b
A and b in a digraph are strongly connected if there is a walk from a to b AND a walk from b to a