Soit M = pmatrix 0 & 1 & 0 0 & 0 & 1 1 & 0 & 0 pmatrix la matrice d'adjacence d'un graphe avec 3 sommets. Vérifier si ce graphe est fortement connexe.
Indice : Un graphe est fortement connexe si pour tout couple (i,j), il existe un chemin de i à j ET de j à i. Calcule M + M^2 + M^3 pour obtenir la matrice de connexité.
M^2 = pmatrix 0 & 0 & 1 1 & 0 & 0 0 & 1 & 0 pmatrix, M^3 = pmatrix 1 & 0 & 0 0 & 1 & 0 0 & 0 & 1 pmatrix
C = pmatrix 1 & 1 & 1 1 & 1 & 1 1 & 1 & 1 pmatrix