Open In App

What is Complete Graph

A complete graph is an undirected graph in which every pair of distinct vertices is connected by a unique edge. In other words, every vertex in a complete graph is adjacent to all other vertices. A complete graph is denoted by the symbol K_n, where n is the number of vertices in the graph.

Characteristics of Complete Graph:

The main characteristics of a complete graph are:



  1. Connectedness: A complete graph is a connected graph, which means that there exists a path between any two vertices in the graph.
  2. Count of edges: Every vertex in a complete graph has a degree (n-1), where n is the number of vertices in the graph. So total edges are n*(n-1)/2.
  3. Symmetry: Every edge in a complete graph is symmetric with each other, meaning that it is un-directed and connects two vertices in the same way.
  4. Transitivity: A complete graph is a transitive graph, which means that if vertex A is connected to vertex B and vertex B is connected to vertex C, then vertex A is also connected to vertex C.
  5. Regularity: A complete graph is a regular graph, meaning that every vertex has the same degree.

How to Identify Complete Graph?

To identify a complete graph, you need to check if every vertex in the graph is connected to every other vertex. Here are two methods for identifying a complete graph:

Note: These methods are effective if it s ensured that the graph does not have any cycle.



Applications of Complete Graph :

Complete graphs have many applications in various fields, including:

Article Tags :