Eroxl's Notes
Connectivity (Discrete Mathematics)

Connectivity describes whether vertices in a graph can reach each other through a sequence of edges.

Connected Graph

A graph is connected if there exists a path between every pair of vertices. In other words, you can travel from any vertex to any other vertex by following edges.

Formally, a graph is connected if for every pair of vertices , there exists a path from to .

Weakly Connected

In a directed graph, a graph is weakly connected if replacing all of its directed edges with undirected edges produces a connected (undirected) graph.

Strongly Connected

In a directed graph, a graph is strongly connected if there is a directed path from every vertex to every other vertex.