A topic in the Open Knowledge Graph — a free, open map of 15,290 topics and the order to learn them in.

Connectivity and Connected Components

College Depth 66 in the knowledge graph I know this Set as goal
14topics build on this
283prerequisites beneath it
See this on the map →
Introduction to Graph TheoryTrees, Forests, and Spanning TreesWalks, Trails, Paths, and Cycles in Graphs
graph-theory connectivity

Core Idea

A graph is connected if there exists a path between every pair of vertices. Connected components are maximal connected subgraphs. Vertex connectivity and edge connectivity measure how many vertices or edges must be removed to disconnect a graph.

Explainer

You already know that a graph is a collection of vertices (nodes) and edges (connections between them). Connectivity is about asking a deceptively simple question: can you get from any vertex to any other vertex by traveling along edges? If yes, the graph is connected. If some pairs of vertices have no path between them — think of islands with no bridges — the graph is disconnected.

The useful structure inside a disconnected graph is its connected components: the maximal chunks that are internally connected. "Maximal" means you've included every vertex you can reach — you can't expand the component any further without leaving the connected region. Think of a social network where some people know each other and others are completely unaware of each other's existence. Each isolated social circle is a connected component. Every vertex belongs to exactly one component, and the components partition the graph.

Once you understand what connectivity means, the natural follow-up is: how *robust* is it? Two key measures capture this. Edge connectivity κ'(G) is the minimum number of edges you'd need to remove to disconnect the graph (or isolate a vertex). Vertex connectivity κ(G) is the minimum number of vertices whose removal disconnects the graph. Intuitively, a graph where you can sever it by removing just one edge (called a bridge) is fragile; a graph where you'd need to remove many edges is robust. These measures matter in network design — an internet router network needs high connectivity so that no single cable failure splits the network.

There's a useful inequality relating these measures: κ(G) ≤ κ'(G) ≤ δ(G), where δ(G) is the minimum vertex degree. This says vertex connectivity is the hardest to achieve: removing vertices is strictly more powerful than removing edges (because removing a vertex also removes all its incident edges). A graph achieving κ(G) = δ(G), like the complete graph Kₙ, is as connected as theoretically possible given its minimum degree. These ideas feed directly into the study of Euler paths, which require specific connectivity conditions to exist.

Practice Questions 5 questions

Prerequisite Chain

Understanding ZeroThe Number ZeroCounting to FiveCounting to 10Counting to 20Counting a Set of Objects Up to 20Cardinality: The Last Number CountedMatching Numerals to QuantitiesSubitizing Small QuantitiesAddition Within 10Making 10 as an Addition StrategyAddition Within 20Doubles and Near DoublesDoubles Facts Within 10Near Doubles Facts Within 20Mental Math Strategies for AdditionMental Math: Adding and Subtracting TensAddition Within 100Repeated Addition as MultiplicationMultiplication as Equal GroupsMultiplication: ArraysBasic Multiplication Facts Through 10Multiplication Facts Within 100Division as Equal SharingDivision as Grouping (Measurement Division)Division: Grouping (Repeated Subtraction) ModelDivision: Fair Sharing ModelDivision as Equal SharingDivision as GroupingBasic Division FactsDivision Facts Within 100Multiplication and Division Fact FamiliesRelationship Between Multiplication and DivisionDivision Facts as Inverse of MultiplicationRemainders and Quotients in DivisionDivision Word ProblemsMulti-Step Word ProblemsSolving Multi-Step Word ProblemsMultiplication Word ProblemsDivision Word ProblemsIntroduction to Long DivisionFactors and MultiplesPrime and Composite NumbersEquivalent FractionsRelating Fractions and DecimalsDecimal Place ValueIntegers and the Number LineOpposites and Additive InversesAbsolute ValueAdding IntegersSubtracting IntegersMultiplying IntegersIntroduction to ExponentsOrder of OperationsInteger Order of OperationsVariable ExpressionsThe Distributive PropertyVariables and Expressions ReviewIntroduction to PolynomialsAdding and Subtracting PolynomialsMultiplying PolynomialsFactorialPermutationsCombinationsCounting Principles: Addition and Multiplication RulesIntroduction to Graph TheoryConnectivity and Connected Components

Longest path: 67 steps · 283 total prerequisite topics

Prerequisites (1)

Leads To (2)