Network Stuff Flashcards
err idk just stuff
How can you test if two graphs are isomorphic?
1) Count nodes
2) Count edges
3) Check degrees
if one doesn’t match you can ignore the rest, the graphs are not isomorphic
Draw a K5 graph (complete graph with 5 vertices)?
It looks like a pentagon with a star in the middle (one point at each corner where the nodes are)
What is stated by Euler’s handshaking lemma?
In any undirected graph, the sum of the degrees of the verticies is equal to 2*the number of edges
What is one way to check for a Hamiltonian cycle?
Count the edges. To connect n nodes takes (n-1) edges and returning to the beginning takes one extra so a Hamiltonian cycle must have the same number of edges and verticies
What is the equation for number of distinct cycles for Kn graph?
(n-1)! / 2
what is the equation for sum of the order of allnverticies of a Kn graph?
n(n-1)
What is the equation for edge count of a Kn graph?
n(n-1) / 2