Mahesh Parahar has Published 253 Articles

Finding the simple non-isomorphic graphs with n vertices in a graph

Mahesh Parahar

Mahesh Parahar

Updated on 23-Aug-2019 07:28:28

4K+ Views

Problem StatementHow many simple non-isomorphic graphs are possible with 3 vertices?SolutionThere are 4 non-isomorphic graphs possible with 3 vertices. They are shown below.

Finding the matching number of a graph

Mahesh Parahar

Mahesh Parahar

Updated on 23-Aug-2019 07:27:07

766 Views

Problem StatementWhat is the matching number for the following graph?SolutionNumber of vertices = 9We can match only 8 vertices.Matching number is 4.

Finding the line covering number of a graph

Mahesh Parahar

Mahesh Parahar

Updated on 23-Aug-2019 07:25:32

406 Views

Problem StatementWhat is the line covering number for the following graph?SolutionNumber of vertices = |V| = n = 7Line covering number = (α1) ≥ ⌈ n / 2 ⌉ = 3α1 ≥ 3By using 3 edges, we can cover all the vertices.Hence, the line covering number is 3.

Finding the chromatic number of complete graph

Mahesh Parahar

Mahesh Parahar

Updated on 23-Aug-2019 07:23:37

4K+ Views

Problem StatementWhat is the chromatic number of complete graph Kn?SolutionIn a complete graph, each vertex is adjacent to is remaining (n–1) vertices. Hence, each vertex requires a new color. Hence the chromatic number Kn = n.

Euler and Hamiltonian Paths

Mahesh Parahar

Mahesh Parahar

Updated on 23-Aug-2019 07:21:53

7K+ Views

A graph is traversable if you can draw a path between all the vertices without retracing the same path. Based on this path, there are some categories like Euler’s path and Euler’s circuit which are described in this chapter.Euler’s PathAn Euler’s path contains each edge of ‘G’ exactly once and ... Read More

Edges and Vertices of Graph

Mahesh Parahar

Mahesh Parahar

Updated on 23-Aug-2019 07:19:16

23K+ Views

A graph is a set of points, called nodes or vertices, which are interconnected by a set of lines called edges. The study of graphs, or graph theory is an important part of a number of disciplines in the fields of mathematics, engineering and computer science.Graph TheoryDefinition − A graph ... Read More

Distance between Vertices and Eccentricity

Mahesh Parahar

Mahesh Parahar

Updated on 23-Aug-2019 07:16:52

3K+ Views

Distance between Two VerticesIt is number of edges in a shortest path between Vertex U and Vertex V. If there are multiple paths connecting two vertices, then the shortest path is considered as the distance between the two vertices.Notation − d(U, V)There can be any number of paths present from ... Read More

Connectivity of Graph

Mahesh Parahar

Mahesh Parahar

Updated on 23-Aug-2019 07:09:03

367 Views

Whether it is possible to traverse a graph from one vertex to another is determined by how a graph is connected. Connectivity is a basic concept in Graph Theory. Connectivity defines whether a graph is connected or disconnected. It has subtopics based on edge and vertex, known as edge connectivity ... Read More

Connected vs Disconnected Graphs

Mahesh Parahar

Mahesh Parahar

Updated on 23-Aug-2019 07:05:54

18K+ Views

Connected GraphA graph is connected if any two vertices of the graph are connected by a path.Vertex 1Vertex 2PATHaba baca b c, a cada b c d, a c dbcb a c , b ccdc dDisconnected GraphA graph is disconnected if at least two vertices of the graph are not ... Read More

Tree or Connected acyclic graph

Mahesh Parahar

Mahesh Parahar

Updated on 23-Aug-2019 07:03:13

2K+ Views

Trees are graphs that do not contain even a single cycle. They represent hierarchical structure in a graphical form. Trees belong to the simplest class of graphs. Despite their simplicity, they have a rich structure.Trees provide a range of useful applications as simple as a family tree to as complex ... Read More

Advertisements