
Types of Graph Connectivity with Examples and Properties
The concept of connectivity plays a key role in mathematics and is widely applicable to both real-life situations and competitive exam scenarios. Understanding connectivity helps students analyze networks, solve graph problems, and apply logical reasoning.
What Is Connectivity?
In mathematics, connectivity refers to the way elements such as points, lines, or vertices are linked within a mathematical structure. Most commonly, it is used in graph theory to describe whether a graph is connected (there is a path between every pair of vertices) or disconnected. Connectivity is vital in fields like networks, topology, and discrete maths.
Key Formula for Connectivity
Here’s the standard formula used for the number of edges in a complete graph (fully connected graph):
\( \text{Number of edges} = \frac{n(n-1)}{2} \), where n is the number of vertices.
Cross-Disciplinary Usage
Connectivity is not only useful in Maths but also plays an important role in Physics (for networks and circuits), Computer Science (data structures, communication networks), transport logistics, and even biology (food chains, neural networks). Students preparing for JEE or Olympiads will encounter connectivity in various problem-solving scenarios. Vedantu often highlights such interdisciplinary connections in live classes.
Step-by-Step Illustration
- Consider a complete graph with 5 vertices.
To find the number of edges, use the formula:
\( \frac{5(5-1)}{2} = \frac{5 \times 4}{2} = 10 \) - If a graph has 40 edges, to find the possible number of vertices (n):
Let \( \frac{n(n-1)}{2} = 40 \)
So, \( n(n-1) = 80 \)
Check for integer n: Try n = 9 → 9 × 8 = 72 (too low); n = 10 → 10 × 9 = 90 (too high).
So, a complete graph cannot exactly have 40 edges with an integer number of vertices; for approximate value, quadratic formula can be used.
Types of Connectivity in Graph Theory
- Connected Graph: Path exists between every pair of vertices.
- Disconnected Graph: Some vertices aren't reachable from others.
- Edge Connectivity (λ(G)): Minimum number of edges to remove to make the graph disconnected.
- Vertex Connectivity (K(G)): Minimum number of vertices to remove to disconnect the graph.
- Cut-Edge (Bridge): Removing this one edge disconnects the graph.
- Cut-Vertex: Removing this vertex disconnects the graph.
Speed Trick or Vedic Shortcut
A quick trick: For a complete graph with n vertices, just multiply n by (n-1) and divide by 2 to get the total edges instantly! For n = 20: 20 × 19 = 380; then 380 ÷ 2 = 190 edges.
Example Trick: This is useful in MCQs—no need to draw large graphs or count edges individually.
Try These Yourself
- Write the formula for the number of edges in a complete graph with 8 vertices.
- What is the edge connectivity of a graph where removing 2 edges disconnects it?
- Give an example of a connected and a disconnected graph.
- Find the minimum number of vertices to remove from a triangle to disconnect it.
Frequent Errors and Misunderstandings
- Confusing edge connectivity with vertex connectivity.
- Assuming a graph with more edges is always more connected.
- Not using the correct formula for complete graphs.
Relation to Other Concepts
The idea of connectivity connects closely with graph theory, topology, and set theory. Mastering this helps you understand network flow, digital circuits, and problem-solving involving logical connections.
Classroom Tip
An easy way to remember connectivity: If you can travel between every pair of dots (vertices) without lifting your pen, the graph is connected. Vedantu teachers often use dot-to-dot puzzles to make this concept visual and memorable.
We explored connectivity—from its definition, formulas, types, unique examples, common errors, and its relation to other maths topics. Continue practicing with Vedantu to become confident in solving graph and network problems using this key concept.
Useful Internal Links
- Graph Theory: Basics and Applications
- Relations and Its Types
- Set Theory Symbols and Operations
- Understanding Topology
FAQs on Connectivity in Graph Theory Explained
1. What is connectivity in graph theory?
Connectivity in graph theory refers to whether every pair of vertices in a graph is joined by a path. A graph is called connected if there exists a path between every two vertices; otherwise, it is disconnected. In a disconnected graph, the graph is divided into separate connected components. Connectivity is a fundamental concept in network theory, trees, and path-related problems.
2. What is a connected graph?
A connected graph is a graph in which there is a path between every pair of vertices. This means:
- For any vertices u and v, at least one path exists between them.
- The graph has exactly one connected component.
3. What is a disconnected graph?
A disconnected graph is a graph that has at least two vertices with no path between them. Such a graph consists of two or more connected components. Each component is internally connected but has no edges linking it to other components. For example, two separate triangles with no edge between them form a disconnected graph.
4. What is vertex connectivity?
Vertex connectivity is the minimum number of vertices that must be removed to make a graph disconnected. It is denoted by κ(G). If removing k vertices disconnects the graph, and no smaller number does, then κ(G) = k. For example, in a complete graph with n vertices, the vertex connectivity is n − 1.
5. What is edge connectivity?
Edge connectivity is the minimum number of edges that must be removed to disconnect a graph. It is denoted by λ(G). If removing λ edges disconnects the graph, then λ(G) equals that minimum value. In a tree with n vertices, the edge connectivity is 1 because removing any single edge disconnects it.
6. What is the difference between vertex connectivity and edge connectivity?
The difference is that vertex connectivity measures removal of vertices, while edge connectivity measures removal of edges. Key distinctions include:
- Vertex connectivity (κ): Minimum vertices removed to disconnect the graph.
- Edge connectivity (λ): Minimum edges removed to disconnect the graph.
- Always, κ(G) ≤ λ(G) ≤ minimum degree of the graph.
7. What does k-connected mean in graph theory?
A graph is k-connected if at least k vertices must be removed to disconnect it. In other words, its vertex connectivity is κ(G) ≥ k. For example:
- A 1-connected graph is simply a connected graph.
- A 2-connected graph has no cut-vertex.
8. What is a cut-vertex in a connected graph?
A cut-vertex is a vertex whose removal increases the number of connected components of a graph. It is also called an articulation point. If removing a vertex disconnects the graph, then that vertex is a cut-vertex. For example, in a simple path graph, all internal vertices are cut-vertices.
9. How do you check if a graph is connected?
A graph is connected if a traversal algorithm visits all vertices starting from any one vertex. To check connectivity:
- Use Depth-First Search (DFS) or Breadth-First Search (BFS).
- Start from any vertex.
- If all vertices are visited, the graph is connected.
- If some vertices remain unvisited, the graph is disconnected.
10. What is connectivity in a complete graph?
In a complete graph with n vertices, the vertex and edge connectivity are both equal to n − 1. A complete graph (Kₙ) has every pair of distinct vertices connected by an edge. Therefore:
- Vertex connectivity κ(Kₙ) = n − 1
- Edge connectivity λ(Kₙ) = n − 1

































