* [[Start|Home]] * [[Possible Outlines]] * [[playground:Playground]] * [[Needs Review]] * [[sidebar|Edit The Sidebar]]
* [[Start|Home]] * [[Possible Outlines]] * [[playground:Playground]] * [[Needs Review]] * [[sidebar|Edit The Sidebar]]
This is an old revision of the document!
Problem. Consider the graph $\mathcal{G} = (V,E)$ drawn below. The vertex set is $V$ and the (symmetric) relation giving adjacency is $E$. Specifically, $V = \{1,2,3,4\}$, and \[E = \{(1,2),(2,1),(2,3),(3,2),(3,4),(4,3),(1,4),(4,1)\}.\] Write down all elements of $\aut(\mathcal{G})$; view these as the elements of $S_4$ that preserve $E$. Also, determine if the following statements are true or false; explain your answers.
%%%%%%%%%%
% DEPENDENCIES
% RequiredPackages: \usepackage{tikz}
% RequiredMacros: \DeclareMathOperator{\aut}{Aut}
%%%%%%%%%%
\begin{problem}
Consider the graph $\mathcal{G} = (V,E)$ drawn below. The vertex set is $V$ and the (symmetric) relation giving adjacency is $E$. Specifically, $V = \{1,2,3,4\}$, and \[E = \{(1,2),(2,1),(2,3),(3,2),(3,4),(4,3),(1,4),(4,1)\}.\]
Write down all elements of $\aut(\mathcal{G})$; view these as the elements of $S_4$ that preserve $E$. Also, determine if the following statements are true or false; explain your answers.
\begin{enumerate}
\item There some $a\in \aut(\mathcal{G})$ such that $a^2$ is the identity.
\item There some $a\in \aut(\mathcal{G})$ such that $a^3$ is the identity.
\item There some $a\in \aut(\mathcal{G})$ such that every other $b\in \aut(\mathcal{G})$ is of the form $b=a^n$ for some $n$.
\item For every $a,b\in \aut(\mathcal{G})$, $ab = ba$.
\end{enumerate}
\begin{center}
\begin{tikzpicture}[vertex/.style={circle,draw=black,fill=blue!15,thick,inner sep=1.5pt}, line width = 2]
\draw (0,0) node[vertex] {\footnotesize$1$} -- (0,1) node[vertex] {\footnotesize$2$} -- (1,1) node[vertex] {\footnotesize$3$} -- (1,0) node[vertex] {\footnotesize$4$} -- cycle;
\end{tikzpicture}
\end{center}
\end{problem}
problem needsreview rjosh