I have the following code:
\documentclass[12pt, openany]{memoir}
\usepackage{amsmath}
\usepackage{tikz}
\begin{document}
\[
\begin{tikzpicture}[node distance=2cm,auto]
\node (A) {$Q(\sqrt[6]{2}\:)$};
\node (B) [below of=A]{$Q(\sqrt{2}\:)$};
\node (C) [below of=B] {$Q$};
\draw[-] (A) to node {3; $x^3-2=Irr(\sqrt[6]{2},Q(\sqrt{2},x)$} (B);
\draw[-] (B) to node {2; $x^2-2=Irr(\sqrt{2},Q,x)$} (C);
\end{tikzpicture}
\]
\end{document}
I am wanting an arc (or whatever term should be used) from node A to node C without passing through node B; however, all of my attempts have been futile.
The third line that I've been drawing is a straight line from node A to node C; how can I change it so that it instead curves around node B, preferably to the left?


\documentclass) and any macro definitions that are necessary. In this case, for example, the\Qis undefined, but you could actually take it out of the code completely, because it is unrelated to the problem. – Jake Jul 18 '13 at 13:49{}button in the question editor. Also, as @Jake points out, you should make sure that we can compile the code by just copying and pasting it into our own editors. This is called a Minimal Working Example (MWE). Can you update the code so we can compile it? – Adam Liter Jul 18 '13 at 13:52