The document summarizes Kruskal's algorithm for finding a minimum cost spanning tree in a graph. Kruskal's algorithm works by sorting the edges by cost and building the spanning tree by adding edges in order of increasing cost, skipping edges that would create cycles. An example graph is provided and the minimum cost spanning tree obtained using Kruskal's algorithm on that graph is shown.