![]() Fall 2003 |
|
| In the movie "Good Will Hunting", the main character Will Hunting (Matt Damon) solves a blackboard problem, which had been assigned as a challenge to a linear algebra class. |
|
| The adjacency matrix L encodes the graph. The entry Lij is equal to k if there are k connections between node i and j. Otherwise, the entry is zero. Problem 2 asks to find the matrix which encodes all possible paths of length 3. |
Generating function. To a graph one can assign for
pair of nodes i,j a series
,
where an(ij) is the number of walks from i to j with n steps.
Problem 3) asks for a formula for f(z) and in
problem 4) an explicit expression in the case i=1,j=3.
|
| Solution to 1). The adjacency matrix L is |
|
| Solution to 2). [L2]ij is by definition of the matrix product the sum Li 1 L1 j + Li 2 L2 j +... + Li n Ln j. Each term Li 1 L1 j is not 0 if and only if there is at least one path of length 2 going from i to j passing through k. Therefore [L2]ij is the number of paths of length 2 leading from node i to j. Similarly, [Ln]ij is the number of paths of length n going from i to j. The answer is |
|
Solution to 3). The
for the summation of a geometric series holds also for matrices:
.
Cramer's rule for the inverse of a matrix
is A-1 = det(Adj(A)ij)/det(A) leads
to det( Adj(1-z L)ij)/det(1-z L) which can also be written as
det( Adj(L-z)ij)/det(L-z).
| |
| Solution to 4). Especially, when i=1 and j=3, we get det( Adj(A)13 = 2 z2 + 2 z3 and det(L-z) = 1-7 z2 - 2 z3+4 z4. The result can be written as (2 z3+2z3)/(1-7 z2 - 2 z3+4 z4) | |
Here is some Mathematica code to check this:
L={{0,1,0,1}, {1,0,2,1}, {0,2,0,0}, {1,1,0,0}}
K[z_]:=IdentityMatrix[4] -z*L;
Adj[A_,i_,j_]:=Module[{B=A},B=Delete[B,i];B=Transpose[B];B=Delete[B,j];B];
Det[Adj[K[z],1,3]]/Det[K[z]]
(* check with Inverse[K[z]][[1,3]] *)
|
|
|