This question originates from Pinter's Abstract Algebra Chapter 24 Exercise B7.
There are rings such as $P_3$ in which every element $\ne 0,1$ is a divisor of zero. Explain why this cannot happen in any ring of polynomials $R[x]$, even when $R$ is not an integral domain.
Note: $P_3$ is the power set of three elements with the group operation $X*Y=(X\cup Y) - (X\cap Y)$.
First (Incorrect) Attempt:
McCoy's theorem: Let $F\in R[x]$ be a polynomial over a commutative ring $R$.
If $F$ is a zero-divisor then $rF=0$ for some nonzero $r\in R$.
Suppose $F$ is a zero-divisor such that $rF=0$ for some nonzero $r\in R$. Then $F+1$ has no divisor of zero, for $r(F+1)=r\ne 0$. Hence not every element $\ne 0,1$ in a commutative ring of polynomials is a divisor of zero.
Questions:
- Is this correct ?
- This proof relies on a theorem that specifically applies to polynomial over commutative ring. How do we prove when the ring is not commutative?
Second attempt:
Suppose the opposite, that every element in a ring of polynomial R[x] $\ne 0,1$ is a divisor of zero.
This implies $x\in R[x]$ is a zero-divisor such that $x\cdot b(x)=0$ for some nonzero $b(x)\in R[x]$. Suppose $b(x) = b_0 + b_1x + \cdots b_nx^n$ where $b_0,\cdots,b_n \in R$, $n \ge 0$, and $b_n\ne 0$.
Then $x\cdot b(x) = b_0x + b_1x^2 + \cdots + b_nx^{n+1}=0$. But this is absurd, as $b_n\ne 0\implies b_n x^{n+1}\ne 0$ and therefore $x\cdot b(x)$ cannot possibly be zero.
This proves the contradiction, as required. Correct?