Key Points from the Graph Theory Presentation

Graph G

  • Nodes: Dots on the graph.
  • Edges: Lines connecting the nodes.
  • Walk: Path from one node to another, defined by the edges traversed.
  • Number of Steps: Count of edges in a walk.

Adjacency Matrix A

  • Describes the number of one-step walks between nodes.
  • Entry Examples:
    • Entry (1,1): number of walks from node 1 to itself (0 for no loop).
    • Entry (1,2): number of walks from node 1 to node 2 (1 for a single edge).
    • Entry (2,3): number of walks from node 2 to node 3 (2 for two edges connecting them).
  • For three-step walks, compute A3A^3 by multiplying the matrix A by itself three times.

Generating Function for Walks

  • To find the number of nn-step walks from node ii to node jj, compute AnA^n.
  • Scalar Coefficient Z: If edges are broken into segments, multiply every entry in A by that number.
  • Geometric Series: When converting the matrix into a generating function, this function determines walks from node ii to jj.

Inverse of Matrix

  • Identity Matrix (I): Analogous to the number 1 in matrix operations (multiplying by I returns the original matrix).
  • To find the inverse of matrix MM, use Cramer's rule:
    M1=(1)i+jextdet(M<em>ij)extdet(M)M^{-1} = (-1)^{i+j} \frac{ ext{det}(M<em>{ij})}{ ext{det}(M)} where M</em>ijM</em>{ij} is formed by removing the ii-th row and jj-th column from MM.

Maclaurin Series

  • Turn functions into polynomials for easier computation.
  • Requires finding derivatives and evaluating at zero.
  • The term's coefficient in the polynomial gives the number of specific step walks.

Homeopathically Irreducible Trees

  • A tree is a type of graph without cycles.
  • A tree is homeopathically irreducible if no nodes have degree two.
  • Examples analyzed with degrees of nodes and construction of valid trees with 10 nodes capturing desired properties.

Conclusions

  • The problems presented were manageable with a clear understanding of concepts applied from discrete math and calculus.
  • Further exploration of graph theory revealed efficient methods for counting walks in a graph without extensive computation.