[step:Verify that $T - x$ is a tree on $n$ vertices]We show $T' := T - x$ is a tree with $|V(T')| = n$. We verify (i) the vertex count, (ii) acyclicity, (iii) connectedness.
**(i) Vertex count.** $V(T') = V(T) \setminus \{x\}$, so $|V(T')| = (n + 1) - 1 = n$.
**(ii) Acyclicity of $T'$.** Any cycle in $T'$ would be, by the definition of the vertex-deletion operation, a sequence of vertices in $V(T) \setminus \{x\}$ with consecutive pairs in $E(T') \subseteq E(T)$. Such a sequence is also a cycle in $T$. But $T$ is acyclic. Hence $T'$ is acyclic.
**(iii) Connectedness of $T'$.** Let $u, v \in V(T')$ with $u \neq v$. Since $T$ is connected and $u, v \in V(T)$, there is a $u$–$v$ walk in $T$, and by [Walk Contains Path](/theorems/2007) there is a $u$–$v$ path
\begin{align*}
P = u = p_0, p_1, \ldots, p_\ell = v
\end{align*}
in $T$ with pairwise distinct $p_i$ and each $p_{i-1} p_i \in E(T)$.
We claim $x \notin \{p_0, p_1, \ldots, p_\ell\}$. Indeed, $p_0 = u \neq x$ and $p_\ell = v \neq x$ because $u, v \in V(T')$. If $x = p_j$ for some $1 \le j \le \ell - 1$ (an internal vertex), then both $p_{j-1} x = p_{j-1} p_j$ and $x p_{j+1} = p_j p_{j+1}$ are edges of $T$ incident to $x$, exhibiting two distinct neighbours of $x$ in $T$ — namely $p_{j-1}$ and $p_{j+1}$, which are distinct since $P$ is a path. This contradicts $\deg_T(x) = 1$. Hence $x$ does not appear on $P$.
Therefore every vertex of $P$ lies in $V(T) \setminus \{x\} = V(T')$, and every edge $p_{i-1} p_i$ lies in $E(T)$ between vertices of $V(T')$, hence in $E(T - x) = E(T')$ (deleting a vertex removes only edges incident to it, and no edge of $P$ is incident to $x$). So $P$ is a $u$–$v$ walk in $T'$.
Since $u, v \in V(T')$ were arbitrary, $T'$ is connected.
By (ii) and (iii), $T'$ is connected and acyclic, so $T'$ is a tree. Together with (i), $T'$ is a tree on $n$ vertices.[/step]