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 A3 by multiplying the matrix A by itself three times.
Generating Function for Walks
- To find the number of n-step walks from node i to node j, compute An.
- 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 i to j.
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 M, use Cramer's rule:
M−1=(−1)i+jextdet(M)extdet(M<em>ij)
where M</em>ij is formed by removing the i-th row and j-th column from M.
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.