64
Course “Trees – The Ubiquitous Structure in Computer Science and Mathematics”, JASS’08 The Number of Spanning Trees in a Graph Konstantin Pieper Fakult¨ at f¨ ur Mathematik TU M¨ unchen April 28, 2008 Konstantin Pieper: Counting Spanning Trees 1/ 29

The Number of Spanning Trees in a Graph

  • Upload
    others

  • View
    6

  • Download
    0

Embed Size (px)

Citation preview

Page 1: The Number of Spanning Trees in a Graph

Course “Trees – The Ubiquitous Structure in Computer Scienceand Mathematics”, JASS’08

The Number of Spanning Trees in a Graph

Konstantin Pieper

Fakultat fur MathematikTU Munchen

April 28, 2008

Konstantin Pieper: Counting Spanning Trees 1/ 29

Page 2: The Number of Spanning Trees in a Graph

Preliminaries

Definition 1Let G = (V ,E ) with V = 1, . . . , n and E = e1, . . . , em be adirected graph. Then the incidence matrix SG ∈ M(n,m) of G isdefined as:

(SG )i ,j :=

1 if ej ends in i−1 if ej starts in i0 else

Remark 1For an undirected graph G every SG of some arbitrarily orienteddirected variant G of G can be taken as the incidence matrix.

Konstantin Pieper: Counting Spanning Trees 2/ 29

Page 3: The Number of Spanning Trees in a Graph

Preliminaries

Definition 1Let G = (V ,E ) with V = 1, . . . , n and E = e1, . . . , em be adirected graph. Then the incidence matrix SG ∈ M(n,m) of G isdefined as:

(SG )i ,j :=

1 if ej ends in i−1 if ej starts in i0 else

Remark 1For an undirected graph G every SG of some arbitrarily orienteddirected variant G of G can be taken as the incidence matrix.

Konstantin Pieper: Counting Spanning Trees 2/ 29

Page 4: The Number of Spanning Trees in a Graph

Preliminaries

Example 2

SG =

1 0 0 1 0−1 −1 0 0 10 1 −1 0 00 0 1 −1 −1

Konstantin Pieper: Counting Spanning Trees 3/ 29

Page 5: The Number of Spanning Trees in a Graph

Preliminaries

Theorem 3The rank of the incidence matrix of a graph on n vertices is:

rank(SG ) = n − |“weakly” connected components of G |

Proof.Reorder the edges and vertices so that:

SG =

SG1 . . . 0

SG2

......

. . .

0 . . . SGr

Konstantin Pieper: Counting Spanning Trees 4/ 29

Page 6: The Number of Spanning Trees in a Graph

Preliminaries

Theorem 3The rank of the incidence matrix of a graph on n vertices is:

rank(SG ) = n − |“weakly” connected components of G |

Proof.Reorder the edges and vertices so that:

SG =

SG1 . . . 0

SG2

......

. . .

0 . . . SGr

Konstantin Pieper: Counting Spanning Trees 4/ 29

Page 7: The Number of Spanning Trees in a Graph

Preliminaries

Theorem 3The rank of the incidence matrix of a graph on n vertices is:

rank(SG ) = n − |“weakly” connected components of G |

Proof.Reorder the edges and vertices so that:

SG =

SG1 . . . 0

SG2

......

. . .

0 . . . SGr

Konstantin Pieper: Counting Spanning Trees 4/ 29

Page 8: The Number of Spanning Trees in a Graph

Preliminaries

Remark 2Since (1, . . . , 1) · SG = 0, we can remove an arbitrary row from SG

without losing information.

Definition 4For every A ∈ M(n,m) define A ∈ M(n − 1,m) as A without then-th row.

Konstantin Pieper: Counting Spanning Trees 5/ 29

Page 9: The Number of Spanning Trees in a Graph

Preliminaries

Remark 2Since (1, . . . , 1) · SG = 0, we can remove an arbitrary row from SG

without losing information.

Definition 4For every A ∈ M(n,m) define A ∈ M(n − 1,m) as A without then-th row.

Konstantin Pieper: Counting Spanning Trees 5/ 29

Page 10: The Number of Spanning Trees in a Graph

Example 5

SG · STG =

( −1 0 0 1 01 −1 0 0 10 1 −1 0 0

−1 1 00 −1 10 0 −11 0 00 1 0

=

(2 −1 0−1 3 −10 −1 2

)

Konstantin Pieper: Counting Spanning Trees 6/ 29

Page 11: The Number of Spanning Trees in a Graph

Example 5

SG · STG =

( −1 0 0 1 01 −1 0 0 10 1 −1 0 0

−1 1 00 −1 10 0 −11 0 00 1 0

=

(2 −1 0−1 3 −10 −1 2

)

Konstantin Pieper: Counting Spanning Trees 6/ 29

Page 12: The Number of Spanning Trees in a Graph

Kirchhoff’s theorem

Theorem 6 (Kirchhoff)

The number of spanning trees of a graph G can be calculated as:

det(DG ) where DG = SG · STG

Remark 3

(DG )i ,j =

deg(i) if i = j−1 if i , j ∈ E0 else

Konstantin Pieper: Counting Spanning Trees 7/ 29

Page 13: The Number of Spanning Trees in a Graph

Kirchhoff’s theorem

Theorem 6 (Kirchhoff)

The number of spanning trees of a graph G can be calculated as:

det(DG ) where DG = SG · STG

Remark 3

(DG )i ,j =

deg(i) if i = j−1 if i , j ∈ E0 else

Konstantin Pieper: Counting Spanning Trees 7/ 29

Page 14: The Number of Spanning Trees in a Graph

Kirchhoff’s theorem

Lemma 7Let T = (V ,E ) be a directed tree that is rooted at n. We canorder E so that ei ends in i .

Proof.Take ei := (p(i), i), where p(i) is the parent of i .

Remark 4Every undirected tree on V has exactly one undirected variant thatis rooted at n. So for constructing/counting spanning trees weonly have to consider graphs with i ∈ ei .

Konstantin Pieper: Counting Spanning Trees 8/ 29

Page 15: The Number of Spanning Trees in a Graph

Kirchhoff’s theorem

Lemma 7Let T = (V ,E ) be a directed tree that is rooted at n. We canorder E so that ei ends in i .

Proof.Take ei := (p(i), i), where p(i) is the parent of i .

Remark 4Every undirected tree on V has exactly one undirected variant thatis rooted at n. So for constructing/counting spanning trees weonly have to consider graphs with i ∈ ei .

Konstantin Pieper: Counting Spanning Trees 8/ 29

Page 16: The Number of Spanning Trees in a Graph

Kirchhoff’s theorem

Lemma 7Let T = (V ,E ) be a directed tree that is rooted at n. We canorder E so that ei ends in i .

Proof.Take ei := (p(i), i), where p(i) is the parent of i .

Remark 4Every undirected tree on V has exactly one undirected variant thatis rooted at n. So for constructing/counting spanning trees weonly have to consider graphs with i ∈ ei .

Konstantin Pieper: Counting Spanning Trees 8/ 29

Page 17: The Number of Spanning Trees in a Graph

Kirchhoff’s theorem

Lemma 8Let G = (V ,E ) with |E | = n − 1 be a directed graph which is nota tree.Then det(SG ) = 0.

Proof.Since |E | = n − 1, G is not “weakly” connected.So rank(SG ) = rank(SG ) ≤ n − 2.

Konstantin Pieper: Counting Spanning Trees 9/ 29

Page 18: The Number of Spanning Trees in a Graph

Kirchhoff’s theorem

Lemma 8Let G = (V ,E ) with |E | = n − 1 be a directed graph which is nota tree.Then det(SG ) = 0.

Proof.Since |E | = n − 1, G is not “weakly” connected.So rank(SG ) = rank(SG ) ≤ n − 2.

Konstantin Pieper: Counting Spanning Trees 9/ 29

Page 19: The Number of Spanning Trees in a Graph

Kirchhoff’s theorem

Lemma 9Let T = (V ,E ) be a tree with ei ∈ E ending in i ∈ V .

Then det(ST ) = 1.

Proof.Order the vertices (and edges simultaneously – ei has to end in i)so that p(i) > i . Then,

ST =

1 ∗ . . . ∗

0 1. . .

......

. . .. . . ∗

0 . . . 0 1

Konstantin Pieper: Counting Spanning Trees 10/ 29

Page 20: The Number of Spanning Trees in a Graph

Kirchhoff’s theorem

Lemma 9Let T = (V ,E ) be a tree with ei ∈ E ending in i ∈ V .Then det(ST ) = 1.

Proof.Order the vertices (and edges simultaneously – ei has to end in i)so that p(i) > i . Then,

ST =

1 ∗ . . . ∗

0 1. . .

......

. . .. . . ∗

0 . . . 0 1

Konstantin Pieper: Counting Spanning Trees 10/ 29

Page 21: The Number of Spanning Trees in a Graph

Kirchhoff’s theorem

Lemma 9Let T = (V ,E ) be a tree with ei ∈ E ending in i ∈ V .Then det(ST ) = 1.

Proof.Order the vertices (and edges simultaneously – ei has to end in i)so that p(i) > i . Then,

ST =

1 ∗ . . . ∗

0 1. . .

......

. . .. . . ∗

0 . . . 0 1

Konstantin Pieper: Counting Spanning Trees 10/ 29

Page 22: The Number of Spanning Trees in a Graph

Kirchhoff’s theorem

Proof of Kirchhoff’s theorem.We observe that the i-th column of DG is the sum of “incidencevectors” that correspond to edges in G that have endpoints in thei-th vertex.

Figure: First column of DG

D.,1 =

3−1−1

=

1−10

+

10−1

+

100

Konstantin Pieper: Counting Spanning Trees 11/ 29

Page 23: The Number of Spanning Trees in a Graph

Kirchhoff’s theorem

Proof of Kirchhoff’s theorem.We observe that the i-th column of DG is the sum of “incidencevectors” that correspond to edges in G that have endpoints in thei-th vertex. If we now use the linearity of the determinant in everycolumn we obtain:

Figure: Expansion of the determinant

det(D) =

∣∣∣∣∣ 3 −1 −1−1 4 −1−1 −1 4

∣∣∣∣∣=

∣∣∣∣∣ 1 −1 −1−1 4 −10 −1 4

∣∣∣∣∣+

∣∣∣∣∣ 1 −1 −10 4 −1−1 −1 4

∣∣∣∣∣+

∣∣∣∣∣ 1 −1 −10 4 −10 −1 4

∣∣∣∣∣ = . . .

Konstantin Pieper: Counting Spanning Trees 11/ 29

Page 24: The Number of Spanning Trees in a Graph

Kirchhoff’s theorem

Proof of Kirchhoff’s theorem.We observe that the i-th column of DG is the sum of “incidencevectors” that correspond to edges in G that have endpoints in thei-th vertex. If we now use the linearity of the determinant in everycolumn we obtain:

det(DG ) =∑H∈H

det(SH)

where H is the set of all subgraphs of G which correspond to aselection of n − 1 edges, with ei ending in i .

Konstantin Pieper: Counting Spanning Trees 11/ 29

Page 25: The Number of Spanning Trees in a Graph

Kirchhoff’s theorem

Proof of Kirchhoff’s theorem.We observe that the i-th column of DG is the sum of “incidencevectors” that correspond to edges in G that have endpoints in thei-th vertex. If we now use the linearity of the determinant in everycolumn we obtain:

det(DG ) =∑H∈H

det(SH)

where H is the set of all subgraphs of G which correspond to aselection of n − 1 edges, with ei ending in i .To prove the theorem it is now sufficient to use the precedinglemmata.

Konstantin Pieper: Counting Spanning Trees 11/ 29

Page 26: The Number of Spanning Trees in a Graph

Extension towards MST

Definition 10For a weighted graph G with edge weights wi ,k let SG (x) be theincidence matrix SG with every column corresponding to (i , k) ∈ Erescaled by xwi,k .

(SG (x))i ,j =

xwk,i if ej = (k, i)−xwi,k if ej = (i , k)

0 else

Konstantin Pieper: Counting Spanning Trees 12/ 29

Page 27: The Number of Spanning Trees in a Graph

Extension towards MST

Definition 10For a weighted graph G with edge weights wi ,k let SG (x) be theincidence matrix SG with every column corresponding to (i , k) ∈ Erescaled by xwi,k .

(SG (x))i ,j =

xwk,i if ej = (k, i)−xwi,k if ej = (i , k)

0 else

Konstantin Pieper: Counting Spanning Trees 12/ 29

Page 28: The Number of Spanning Trees in a Graph

Extension towards MST

Example 11 (Toy graph H)

SG (x) =

−x2 −x2 −x4 0 0 0 0x2 0 0 −x −x 0 00 0 0 x 0 −x 00 x2 0 0 x x −x3

0 0 x4 0 0 0 x3

Konstantin Pieper: Counting Spanning Trees 13/ 29

Page 29: The Number of Spanning Trees in a Graph

Extension towards MST

Theorem 12 (Matrix-Tree Theorem for weighted graphs)

The generating function of the number of spanning trees by weightw is the determinant of

DG (x) = SG (x) · STG

where SG (x) and SG are defined as above.

In other words:

det (DG (x)) =∞∑

w=0

|ST by weight w| · xw

Konstantin Pieper: Counting Spanning Trees 14/ 29

Page 30: The Number of Spanning Trees in a Graph

Extension towards MST

Theorem 12 (Matrix-Tree Theorem for weighted graphs)

The generating function of the number of spanning trees by weightw is the determinant of

DG (x) = SG (x) · STG

where SG (x) and SG are defined as above.In other words:

det (DG (x)) =∞∑

w=0

|ST by weight w| · xw

Konstantin Pieper: Counting Spanning Trees 14/ 29

Page 31: The Number of Spanning Trees in a Graph

Extension towards MST

Example 13

DG (x) =

x4 + 2x2 −x2 0 −x2

−x2 x2 + 2x −x −x0 −x 2x −x−x2 −x −x x3 + x2 + 2x

det (DG (x)) = 2x10 + 5x9 + 8x8 + 6x7

Konstantin Pieper: Counting Spanning Trees 15/ 29

Page 32: The Number of Spanning Trees in a Graph

Extension towards MST

Remark 5It is easy to check that we can also write down DG (x) for anygiven graph G directly:

(DG (x))i ,j =

∑i ,k∈E xwi,k if i = j

−xwi,j if i , j ∈ E0 else

Konstantin Pieper: Counting Spanning Trees 16/ 29

Page 33: The Number of Spanning Trees in a Graph

Extension towards MST

Proof.As above.Here each spanning tree by weight w contributes xw to thedeterminant of DG (x).

Konstantin Pieper: Counting Spanning Trees 17/ 29

Page 34: The Number of Spanning Trees in a Graph

Computing the number of MSTs

I Should we try to calculate det(DG (x))?

I Consider the following graph on 2n vertices:

I det(DG (x)) can have Ω(2n) coefficients

Konstantin Pieper: Counting Spanning Trees 18/ 29

Page 35: The Number of Spanning Trees in a Graph

Computing the number of MSTs

I Should we try to calculate det(DG (x))?

I Consider the following graph on 2n vertices:

I det(DG (x)) can have Ω(2n) coefficients

Konstantin Pieper: Counting Spanning Trees 18/ 29

Page 36: The Number of Spanning Trees in a Graph

Computing the number of MSTs

I Should we try to calculate det(DG (x))?

I Consider the following graph on 2n vertices:

I det(DG (x)) can have Ω(2n) coefficients

Konstantin Pieper: Counting Spanning Trees 18/ 29

Page 37: The Number of Spanning Trees in a Graph

Computing the number of MSTs

I Compute only the number of minimal spanning trees (thecoefficient of the minimum degree monomial).

I If wmin is the minimal weight for a spanning tree, clearly xwmin

must divide det(DG (x))

I Try to factor out the minimum degree monomial of eachcolumn and use the linearity of the determinant.

det(DG (x)) =∣∣∣∣∣ x4 + 2x2 −x2 0 −x2

−x2 x2 + 2x −x −x0 −x 2x −x

−x2 −x −x x3 + x2 + 2x

∣∣∣∣∣ = x5·

∣∣∣∣∣ x2 + 2 −x 0 −x−1 x + 2 −1 −10 −1 2 −1

−1 −1 −1 x2 + x + 2

∣∣∣∣∣

Konstantin Pieper: Counting Spanning Trees 19/ 29

Page 38: The Number of Spanning Trees in a Graph

Computing the number of MSTs

I Compute only the number of minimal spanning trees (thecoefficient of the minimum degree monomial).

I If wmin is the minimal weight for a spanning tree, clearly xwmin

must divide det(DG (x))

I Try to factor out the minimum degree monomial of eachcolumn and use the linearity of the determinant.

det(DG (x)) =∣∣∣∣∣ x4 + 2x2 −x2 0 −x2

−x2 x2 + 2x −x −x0 −x 2x −x

−x2 −x −x x3 + x2 + 2x

∣∣∣∣∣ = x5·

∣∣∣∣∣ x2 + 2 −x 0 −x−1 x + 2 −1 −10 −1 2 −1

−1 −1 −1 x2 + x + 2

∣∣∣∣∣

Konstantin Pieper: Counting Spanning Trees 19/ 29

Page 39: The Number of Spanning Trees in a Graph

Computing the number of MSTs

I Compute only the number of minimal spanning trees (thecoefficient of the minimum degree monomial).

I If wmin is the minimal weight for a spanning tree, clearly xwmin

must divide det(DG (x))

I Try to factor out the minimum degree monomial of eachcolumn and use the linearity of the determinant.

det(DG (x)) =∣∣∣∣∣ x4 + 2x2 −x2 0 −x2

−x2 x2 + 2x −x −x0 −x 2x −x

−x2 −x −x x3 + x2 + 2x

∣∣∣∣∣ = x5·

∣∣∣∣∣ x2 + 2 −x 0 −x−1 x + 2 −1 −10 −1 2 −1

−1 −1 −1 x2 + x + 2

∣∣∣∣∣

Konstantin Pieper: Counting Spanning Trees 19/ 29

Page 40: The Number of Spanning Trees in a Graph

Computing the number of MSTs

Example 14 (Factor det (DG (x)))

det(DG (x)) =∣∣∣∣∣ x4 + 2x2 −x2 0 −x2

−x2 x2 + 2x −x −x0 −x 2x −x

−x2 −x −x x3 + x2 + 2x

∣∣∣∣∣ = x5 ·

∣∣∣∣∣ x2 + 2 −x 0 −x−1 x + 2 −1 −10 −1 2 −1

−1 −1 −1 x2 + x + 2

∣∣∣∣∣Konstantin Pieper: Counting Spanning Trees 20/ 29

Page 41: The Number of Spanning Trees in a Graph

Computing the number of MSTs

The entries of the i ’th column of DG (x) correspond to edges in thecut (i ,N (i)):

Change the cuts?

Konstantin Pieper: Counting Spanning Trees 21/ 29

Page 42: The Number of Spanning Trees in a Graph

Computing the number of MSTs

The entries of the i ’th column of DG (x) correspond to edges in thecut (i ,N (i)):

Change the cuts?

Konstantin Pieper: Counting Spanning Trees 21/ 29

Page 43: The Number of Spanning Trees in a Graph

Computing the number of MSTs

Theorem 15If we have a minimal spanning tree T of G , we can modify DG (x)(without changing the determinant) so that the product of theminimum degree monomials of each column is wmin.

Algorithm A: Modify DG (x)

T := mst(G)D ′(x) := DG (x)while T 6= do

i := arbitrary leaf of T with i 6= np := parent of iadd the i-th column in D ′ to the p-th columnT := T \ i

od

Konstantin Pieper: Counting Spanning Trees 22/ 29

Page 44: The Number of Spanning Trees in a Graph

Computing the number of MSTs

Theorem 15If we have a minimal spanning tree T of G , we can modify DG (x)(without changing the determinant) so that the product of theminimum degree monomials of each column is wmin.

Algorithm A: Modify DG (x)

T := mst(G)D ′(x) := DG (x)while T 6= do

i := arbitrary leaf of T with i 6= np := parent of iadd the i-th column in D ′ to the p-th columnT := T \ i

od

Konstantin Pieper: Counting Spanning Trees 22/ 29

Page 45: The Number of Spanning Trees in a Graph

Computing the number of MSTs

Example 16 (MST of H and corresponding σ(i))

det(D ′(x)) =∣∣∣∣∣∣x4 + 2x2 x4 + x2 0 x4

−x2 x −x 00 x 2x 0−x2 −x2 − 2x −x x3

∣∣∣∣∣∣ = x7 ·

∣∣∣∣∣∣x2 + 2 x3 + x 0 x−1 1 −1 00 1 2 0−1 −x − 2 −1 1

∣∣∣∣∣∣Konstantin Pieper: Counting Spanning Trees 23/ 29

Page 46: The Number of Spanning Trees in a Graph

Computing the number of MSTs

Lemma 17The i-th column of D ′(x) contains the sum of the columns inDG (x) corresponding to σ(i).

Writing out the entries of D ′(x) we get:For i /∈ σ(j)

D ′i ,j(x) = −∑

i ,k∈E :k∈σ(j)

xwk,i

For i ∈ σ(j) the above cancels with Di ,i

D ′i ,j(x) =∑

i ,k∈E :k /∈σ(j)

xwk,i

Konstantin Pieper: Counting Spanning Trees 24/ 29

Page 47: The Number of Spanning Trees in a Graph

Computing the number of MSTs

Lemma 17The i-th column of D ′(x) contains the sum of the columns inDG (x) corresponding to σ(i).Writing out the entries of D ′(x) we get:For i /∈ σ(j)

D ′i ,j(x) = −∑

i ,k∈E :k∈σ(j)

xwk,i

For i ∈ σ(j) the above cancels with Di ,i

D ′i ,j(x) =∑

i ,k∈E :k /∈σ(j)

xwk,i

Konstantin Pieper: Counting Spanning Trees 24/ 29

Page 48: The Number of Spanning Trees in a Graph

Computing the number of MSTs

Lemma 17The i-th column of D ′(x) contains the sum of the columns inDG (x) corresponding to σ(i).Writing out the entries of D ′(x) we get:For i /∈ σ(j)

D ′i ,j(x) = −∑

i ,k∈E :k∈σ(j)

xwk,i

For i ∈ σ(j) the above cancels with Di ,i

D ′i ,j(x) =∑

i ,k∈E :k /∈σ(j)

xwk,i

Konstantin Pieper: Counting Spanning Trees 24/ 29

Page 49: The Number of Spanning Trees in a Graph

Computing the number of MSTs

Proof.So the j ’th column of D ′ contains only terms corresponding toedges in the cut (σ(j),V \ σ(j)).

The only edge of T in the j ’th cut is (p(j), j).All the other edges from the cut must have higher weight becauseT is minimal.

n−1∏i=1

wp(i),i = wmin

Konstantin Pieper: Counting Spanning Trees 25/ 29

Page 50: The Number of Spanning Trees in a Graph

Computing the number of MSTs

Proof.So the j ’th column of D ′ contains only terms corresponding toedges in the cut (σ(j),V \ σ(j)).The only edge of T in the j ’th cut is (p(j), j).

All the other edges from the cut must have higher weight becauseT is minimal.

n−1∏i=1

wp(i),i = wmin

Konstantin Pieper: Counting Spanning Trees 25/ 29

Page 51: The Number of Spanning Trees in a Graph

Computing the number of MSTs

Proof.So the j ’th column of D ′ contains only terms corresponding toedges in the cut (σ(j),V \ σ(j)).The only edge of T in the j ’th cut is (p(j), j).All the other edges from the cut must have higher weight becauseT is minimal.

n−1∏i=1

wp(i),i = wmin

Konstantin Pieper: Counting Spanning Trees 25/ 29

Page 52: The Number of Spanning Trees in a Graph

Computing the number of MSTs

Proof.So the j ’th column of D ′ contains only terms corresponding toedges in the cut (σ(j),V \ σ(j)).The only edge of T in the j ’th cut is (p(j), j).All the other edges from the cut must have higher weight becauseT is minimal.

n−1∏i=1

wp(i),i = wmin

Konstantin Pieper: Counting Spanning Trees 25/ 29

Page 53: The Number of Spanning Trees in a Graph

Optimizations

The runtime of our implementation so far is O (mn + M(n)) whereM(n) is the time required to multiply two n × nmatrices.O (M(n)) can be thought of as “O(n2+ε)”.

We can furtheroptimize the O(mn) part by

I only calculating the minimum degree monomials for eachentry.

I calculating the negative and positive entries separately.

In the following E is sorted so that p(j) > j .

Konstantin Pieper: Counting Spanning Trees 26/ 29

Page 54: The Number of Spanning Trees in a Graph

Optimizations

The runtime of our implementation so far is O (mn + M(n)) whereM(n) is the time required to multiply two n × nmatrices.O (M(n)) can be thought of as “O(n2+ε)”. We can furtheroptimize the O(mn) part by

I only calculating the minimum degree monomials for eachentry.

I calculating the negative and positive entries separately.

In the following E is sorted so that p(j) > j .

Konstantin Pieper: Counting Spanning Trees 26/ 29

Page 55: The Number of Spanning Trees in a Graph

Optimizations

The runtime of our implementation so far is O (mn + M(n)) whereM(n) is the time required to multiply two n × nmatrices.O (M(n)) can be thought of as “O(n2+ε)”. We can furtheroptimize the O(mn) part by

I only calculating the minimum degree monomials for eachentry.

I calculating the negative and positive entries separately.

In the following E is sorted so that p(j) > j .

Konstantin Pieper: Counting Spanning Trees 26/ 29

Page 56: The Number of Spanning Trees in a Graph

Optimizations

The runtime of our implementation so far is O (mn + M(n)) whereM(n) is the time required to multiply two n × nmatrices.O (M(n)) can be thought of as “O(n2+ε)”. We can furtheroptimize the O(mn) part by

I only calculating the minimum degree monomials for eachentry.

I calculating the negative and positive entries separately.

In the following E is sorted so that p(j) > j .

Konstantin Pieper: Counting Spanning Trees 26/ 29

Page 57: The Number of Spanning Trees in a Graph

Optimizations

For i /∈ σ(j) no entries cancel – the naive approach works.

Algorithm B1: Negative Entries of D ′

for j = 1 to n − 1 dofor i /∈ σ(j) do

D ′i ,j := min_d(DG (x)i ,j +∑

k child of j in T D ′i ,k)

/* min_d computes the minimum degree monomial */

odod

This is O(n2).

Konstantin Pieper: Counting Spanning Trees 27/ 29

Page 58: The Number of Spanning Trees in a Graph

Optimizations

For i /∈ σ(j) no entries cancel – the naive approach works.

Algorithm B1: Negative Entries of D ′

for j = 1 to n − 1 dofor i /∈ σ(j) do

D ′i ,j := min_d(DG (x)i ,j +∑

k child of j in T D ′i ,k)

/* min_d computes the minimum degree monomial */

odod

This is O(n2).

Konstantin Pieper: Counting Spanning Trees 27/ 29

Page 59: The Number of Spanning Trees in a Graph

Optimizations

For i /∈ σ(j) no entries cancel – the naive approach works.

Algorithm B1: Negative Entries of D ′

for j = 1 to n − 1 dofor i /∈ σ(j) do

D ′i ,j := min_d(DG (x)i ,j +∑

k child of j in T D ′i ,k)

/* min_d computes the minimum degree monomial */

odod

This is O(n2).

Konstantin Pieper: Counting Spanning Trees 27/ 29

Page 60: The Number of Spanning Trees in a Graph

Optimizations

For i ∈ σ(j) we use the explicit formula

D ′i ,j =∑

i ,k∈E :k /∈σ(j)

xwk,i

and run over the rows first.

Algorithm B2: Positive Entries of D ′

for i = 1 to n − 1 doL := sort(N (i))for j = 1 to n − 1, i ∈ σ(j) do

L := L \ σ(j)if L 6=

k := first_element(L)D ′i ,j := xwi,k · |s ∈ L : wi ,k = wi ,s |

fiod

od

This is O(n2 log n).

Konstantin Pieper: Counting Spanning Trees 28/ 29

Page 61: The Number of Spanning Trees in a Graph

Optimizations

For i ∈ σ(j) we use the explicit formula

D ′i ,j =∑

i ,k∈E :k /∈σ(j)

xwk,i

and run over the rows first.

Algorithm B2: Positive Entries of D ′

for i = 1 to n − 1 doL := sort(N (i))for j = 1 to n − 1, i ∈ σ(j) do

L := L \ σ(j)if L 6=

k := first_element(L)D ′i ,j := xwi,k · |s ∈ L : wi ,k = wi ,s |

fiod

od

This is O(n2 log n).

Konstantin Pieper: Counting Spanning Trees 28/ 29

Page 62: The Number of Spanning Trees in a Graph

Optimizations

For i ∈ σ(j) we use the explicit formula

D ′i ,j =∑

i ,k∈E :k /∈σ(j)

xwk,i

and run over the rows first.

Algorithm B2: Positive Entries of D ′

for i = 1 to n − 1 doL := sort(N (i))for j = 1 to n − 1, i ∈ σ(j) do

L := L \ σ(j)if L 6=

k := first_element(L)D ′i ,j := xwi,k · |s ∈ L : wi ,k = wi ,s |

fiod

od

This is O(n2 log n).Konstantin Pieper: Counting Spanning Trees 28/ 29

Page 63: The Number of Spanning Trees in a Graph

Optimizations

Conclusion:

I We could calculate the number of spanning trees by arbitraryweight.

I We can find the number of minimal spanning trees inO(n2 + m log n + M(n)) = O(M(n))

Konstantin Pieper: Counting Spanning Trees 29/ 29

Page 64: The Number of Spanning Trees in a Graph

Optimizations

Conclusion:

I We could calculate the number of spanning trees by arbitraryweight.

I We can find the number of minimal spanning trees inO(n2 + m log n + M(n)) = O(M(n))

Konstantin Pieper: Counting Spanning Trees 29/ 29