Show by finding an orientation on each that the complete gra
Solution
A strongly connected orientation can be found using the depth-first search tree. Orient each edge in the tree from smaller label to larger label, and each edge not in the tree from larger label to smaller label.
A complete graph Kn has both Hamiltonian path and Hamiltonian cycle. Any Hamiltonian graph is orientable. If a graph is Hamiltonian, and the Hamiltonian cycle is oriented consistently in one direction, then there is a directed path from any vertex to any other vertex around the Hamiltonian cycle. (Alternately, a Hamiltonian graph must be connected, and have no bridges.)
As for the simple orientation, If you let the vertices be {u1,u2,...,ur} and {v1,v2,...,vs}.
Then a simple orientation would just be \"Let the direction of uivjuivj start from uiui and end with vj for all 1ir,1js\".
For a strong orientation case, a valid solution would be \"Let the direction of uivjuivj start from ui and end with vj for all 1ir,1js, where i+j is even and start from vj and end with ui where i+j is odd.\".
To show this is a valid solution,
(1) Consider two arbitrary vertices from different components, ui,vj , if i+j is even then uivj would be a path from ui to vj, if i+j is odd then uivj+1ui+1vj (If i=r change i+1 to i1 and if j=s change j+1 to j1) would be a path from ui to vj. Similarly, if i+j is even then vjui is a path from vj to ui and if i+j is odd then vjui+1vj+1ui (change the +1 to 1 for i=r or j=s) would be a path from vj to ui.
(2) Consider two arbitrary vertices from the same component, say ui,uk. Then from the previous case we know there exist a path p1 from ui to v1 and a path p2 from v1 to uk so p1p2 would be a path from ui to uk.

