Network Stuff Flashcards

err idk just stuff

1
Q

How can you test if two graphs are isomorphic?

A

1) Count nodes
2) Count edges
3) Check degrees

if one doesn’t match you can ignore the rest, the graphs are not isomorphic

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Draw a K5 graph (complete graph with 5 vertices)?

A

It looks like a pentagon with a star in the middle (one point at each corner where the nodes are)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is stated by Euler’s handshaking lemma?

A

In any undirected graph, the sum of the degrees of the verticies is equal to 2*the number of edges

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is one way to check for a Hamiltonian cycle?

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the equation for number of distinct cycles for Kn graph?

A

(n-1)! / 2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

what is the equation for sum of the order of allnverticies of a Kn graph?

A

n(n-1)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the equation for edge count of a Kn graph?

A

n(n-1) / 2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly