I searched for "path connected connected" and didn't find anything that looked relevant on this site. I also Googled "path connected implies connected" and found a number of proofs that were more or less the same, showing that if we assume a path-connected set is not connected, then $[0, 1]$ is disconnected, which is a contradiction.
I have two questions. The first is whether my $\epsilon$-$\delta$ proof (shown below) that path-connectedness implies connectedness withstands scrutiny (specifically the section in bold). The second question is about trying to understand the proof that path-connectedness implies connectedness in the book I am studying (Elementary Analysis by Kenneth Ross, second edition). The proof in Ross' book is slightly different from the standard one described in the first paragraph above.
My notation is consistent with that from Ross' book throughout.
Theorem to be proven: if $E$ in metric space $(S, d)$ is path-connected, then $E$ is connected.
My proof: Assume that $E$ is disconnected, so that there are open sets $U_1, U_2 \subseteq S$ such that
$(E \cap U_1) \cap (E \cap U_2) = \emptyset$,
$(E \cap U_1) \cup (E \cap U_2) = E$,
$E \cap U_1 \neq \emptyset$, and
$E \cap U_2 \neq \emptyset$.
Consider $s \in E \cap U_1$ and $t \in E \cap U_2$. By path-connectedness there exists a continuous function $\gamma \colon [a, b] \to E$ such that $\gamma (a) = s$ and $\gamma (b) = t$.
Since $(E \cap U_1) \cap (E \cap U_2) = \emptyset$, there must be some minimum distance $\epsilon > 0$ such that for all $\alpha \in E \cap U_1$ and $\beta \in E \cap U_2$, we have $d(\alpha, \beta) \geq \epsilon$.
By continuity of $\gamma$, using $s, t$ and $\epsilon$ as above, there must exist a $\delta > 0$ such that
$\lvert b - a \rvert < \delta$ implies $d \big( \gamma(b), \gamma(a) \big) = d(t, s) < \epsilon$.
This contradicts the bolded section about minimum distance, whence we conclude that $E$ must be connected. $\square$
Question: is the assumption in bold about a minimum distance $\epsilon$ justifiable?
Proof by Ross: the setup is the same as in my proof. The divergence begins where Ross considers $F = \gamma \big( [a, b] \big)$. He claims that substituting $F$ for $E$ in conditions 1-4 above does not affect the veracity of those conditions. In other words, $F$ is disconnected. However, that contradicts the fact that $\gamma$, as a continuous function whose domain is connected (i.e. the interval $[a, b] \in \mathbb{R}$), must have a connected image $F = \gamma \big( [a, b] \big)$. Therefore we conclude that $E$ is in fact connected. $\square$
Question: How do I know that $F \cap U_1$ and $F \cap U_2$ satisfy conditions 1-4?
For condition 1, I can see that each bracketed term becomes no larger when substituting in $F$, so it makes sense that the intersection should still be the empty set. For condition 2, the best I can do is wave my hands and say "well, $U_1$ and $U_2$ 'cover' all of $E$, so they have to cover all of $F$, which is a subset of $E$."
For the third condition, I note that $\gamma (a) = s \in F$, and $s \in E \cap U_1$ by assumption, therefore $s \in F \cap U_1$ which proves that $F \cap U_1 \neq \emptyset$. Verification of the fourth condition is entirely similar.
Thanks for any help, and sorry for the long post.