I have a potential solution for this problem, though I am unsure it is entirely correct and am positive it is inelegantly stated and could use some help tidying it up (if it is indeed the correct logic):
I started by identifying the definitions of relative primality and the congruence class of $a$ modulo $n$
- $a$ and $n$ relatively prime means: $\exists$$s,t \in \mathbb{Z}$ $|$ $as + nt = 1$
- $[a] = \{b \in \mathbb{Z} \mid a \equiv b \pmod n\} = \{a + kn\mid k \in \mathbb{Z}\}$
We can say, if we take $s = 1$ then we have the form $a + tn = 1$ where we can identify the $t$ with the $k$ in def $2.$ since they are both integers and the $1$ with the $[a]$ which tells us that there exists $s,t$ such that $[a] = 1$ or, equivalently, there exists an element $[b] \in \mathbb{Z}_n$ such that $[a]$ is invertible. A couple questions:
- Is this the correct logic?
- If so, how can I state this in a more "mathematically sophisticated" way? I find it difficult, thus far, to contain my proofs to math symbolism and sparse english (when necessary). I feel like I'm writing an argument rather than a proof. Any general advice on improving proof-writing in that regard is also welcome.
\pmod n
included. – Michael Hardy Dec 16 '21 at 02:59