And Finite Number of Edges
And Finite Number of Edges
Trivial Graph: A graph is said to be trivial if a finite graph contains only one
vertex and no edge.
Simple Graph: A simple graph is a graph which does not contains more than
one edge between the pair of vertices. A simple railway tracks connecting
different cities is an example of simple graph.
Multi Graph: Any graph which contain some parallel edges but doesn’t
contain any self-loop is called multi graph. For example A Road Map.
Parallel Edges: If two vertices are connected with more than one edge
than such edges are called parallel edges that is many roots but one
destination.
Loop: An edge of a graph which join a vertex to itself is called loop or a
self-loop.
Null Graph: A graph of order n and size zero that is a graph which contain n
number of vertices but do not contain any edge.
Regular Graph: A simple graph is said to be regular if all vertices of a graph
G are of equal degree. All complete graphs are regular but vice versa is not
possible.
Labelled Graph: If the vertices and edges of a graph are labelled with name,
data or weight then it is called labelled graph. It is also called Weighted
Graph.
Digraph: A graph G = (V, E) with a mapping f such that every edge maps
onto some ordered pair of vertices (Vi, Vj) is called Digraph. It is also
called Directed Graph. Ordered pair (Vi, Vj) means an edge between Vi and
Vj with an arrow directed from Vi to Vj.
Here in the figure:
e1 = (V1, V2)
e2 = (V2, V3)
e4 = (V2, V4)
Types of Subgraph:
Vertex disjoint subgraph: Any two graph G1 = (V1, E1) and G2 =
(V2, E2) are said to be vertex disjoint of a graph G = (V, E) if V1(G1)
intersection V2(G2) = null. In figure there is no common vertex between
G1 and G2.
Edge disjoint subgraph: A subgraph is said to be edge disjoint if
E1(G1) intersection E2(G2) = null. In figure there is no common edge
between G1 and G2.
Note: Edge disjoint subgraph may have vertices in common but vertex disjoint
graph cannot have common edge, so vertex disjoint subgraph will always be an
edge disjoint subgraph.
G1(V)={V2,V3,V4} G1(E)={E2,E3,E4}
G2(V)={V4,V5} G2(E)={E5}
G1(V) INTERSECT G2(V)= {V4 }
G1(E) INTERSECT G2(E) = { }
Connected or Disconnected Graph: A graph G is said to be connected if for
any pair of vertices (Vi, Vj) of a graph G are reachable from one another. Or a
graph is said to be connected if there exist atleast one path between each and
every pair of vertices in graph G, otherwise it is disconnected. A null graph
with n vertices is disconnected graph consisting of n components. Each
component consist of one vertex and no edge.
Cyclic Graph: A graph G consisting of n vertices and n> = 3 that is V1, V2,
V3- – – – – – – – Vn and edges (V1, V2), (V2, V3), (V3, V4)- – – – – – – – — -
(Vn, V1) are called cyclic graph.
Application of Graphs:
Computer Science: In computer science, graph is used to
represent networks of communication, data organization,
computational devices etc.
Physics and Chemistry: Graph theory is also used to study
molecules in chemistry and physics.
Social Science: Graph theory is also widely used in sociology.
Mathematics: In this, graphs are useful in geometry and certain
parts of topology such as knot theory.
Biology: Graph theory is useful in biology and conservation
efforts.