1) Consider the complete tripartite graph $K_2,_3,_n$ for $n \ge 3$. Determine for what values of n the graph $K_2,_3,_n$ has a Hamilton path, and for what values of n the graph has a Hamilton cycle.
2) Consider the complete tripartite graph $K_2,_m,_n$ for $m \ge 2$ and $n \ge m$. Determine when $K_2,_m,_n$ has a Hamilton and when it has a Hamilton cycle.
I need help on how to go about it. I tried countless number to times on how to set the problem right but to no avail. I would be glad someone offers me assistance on how to answer this problem.
For (1), let's use Ore's Theorem. It states if for every $u, v \in V(G)$ are not adjacent and $d(u) + d(v) \geq n$, then $G$ has a Hamiltonian Circuit. So since $K_{2, 3, m}$ is complete, the only non-adjacent vertices are in each partition. This gives us:
$2(3 + m) \geq 5 + m$, for the elements in the partition of two vertices.
$2(2 + m) \geq 5 + m$, for the elements in the partition of three vertices.
$2(5) \geq 5 + m$ for the elements in the new partition of $m$ vertices.
And so we get $m \geq -1$, $m \geq 1$, and $m \leq 5$ when solving. So $m \in \{1, 2, 3, 4\}$ will answer your question.
Now for a Hamiltonian Path, you want to determine if adding an extra vertex incident to all other vertices will create a Hamiltonian cycle. So $G$ has a Hamiltonian path if and only if $G + K_{1}$ has a Hamiltonian Circuit.
This should get you going in a good direction.