I'm trying to find the idempotent elements of the ring ($\Bbb Z_{36} $, +, $ \cdot $) so I "split" it into $ \operatorname{Idemp}(\Bbb Z_4 \times \Bbb Z_9) $, meaning $\operatorname{Idemp}(\Bbb Z_4) \times \operatorname{Idemp}(\Bbb Z_9) $.
I know the idempotent elements of $\Bbb Z_4$ and $\Bbb Z_9$, but I don't understand how to "transform" them back to $\Bbb Z_{36}$. For example, I know that pair $(\widetilde{0}, \bar{1})$ in $\Bbb Z_4 \times \Bbb Z_9$ corresponds to $\widehat{28}$ in $\Bbb Z_{36}$, and that $(\widetilde{1}, \bar{0})$ corresponds to $\widehat{9}$, but why?
If there are other ways to find the idempotents for a large $n$, it's OK, but I wish to understand this particular case I just asked. Thanks!
It's easier to transform $28$ from $\Bbb Z_{36}$ to $\Bbb Z_4\times \Bbb Z_9$: Then we just reduce the normal way for modular arithmetic:
Translating the other way (from $(0,1)$ to $28$) is a bit more tricky, and for small examples, I usually brute force it. In this case:
This is the second approach suggested by the Wikipedia article on the Chinese remainder theorem. The third approach uses the actual proof of the theorem to find the correct remainder, and it's more constructive, albeit somewhat longer for this small example:
The idea of this third approach is that from $4\cdot (-2) + 9\cdot 1 = 1$, we get that $4\cdot (-2)\in \Bbb Z_{36}$ corresponds to $(0,1)\in \Bbb Z_4\times\Bbb Z_9$ and $9\cdot 1\in \Bbb Z_{36}$ corresponds to $(1,0)$. So we just add however many we need of each, and we get our answer.