Problem: Let $G$ be an eulerian graph.
$(a)$ Explain in detail how to construct a closed trail starting at a given vertex $x$ of $G$. Prove that such a trail exists for every $x \in V (G)$ (the vertice set of $G$).
My attempt:
a) First order the vertices of the graph, say $\{v_1,...,v_n\}$. Next I would proceed in order so that if there is an edge connecting $v_i, v_j$ where $j=i+1, 1\leq i \leq n$ then add it to the trail, otherwise continue for $j=i+2$, etc. until you have a path to the $v_n$, and then return backwards doing the same thing but for edges not added to the path where now $v_i, v_j$ form an edge with
$j=i-1$ for $i-j I am not sure how to show that such a trail exists however. Any hints appreciated. Edit: My definitions from my notes: An Euler trail in a graph is a trail that contains every edge of the graph.
An Euler tour is a closed Euler trail. A graph is called eulerian is it has an Euler tour