To answer the question number of paths of length 4 between vertices 1 and 2 in the complete graph $K_n$.
I think there are 3!C(n,3) paths?
because in a complete graph, all vertices are connected, that implies you can travel among any of them without any problem.
Here, a length 4 path has 5 vertices, so it implies n choose 5, however, it requires that all these paths are between vertices 1 and 2, so, 2 of the 5 points are fixed in this case.
Therefore, it is n choose 3, also, then each of the subset of these 3 vertices can permute and form different graph.
So, my conclusion is 3!C(n,3). did I miss anything?
also, do I need to multiple my answer if it is correct? since a path can go both ways.