2

$R$ is a ring, containing more than one element, such that
$\forall 0\ne a\in R \exists ! b\in R; aba=a$.

Here's what I did in the very first place:
$(aba)a^{-1}=aa^-1 \text{ and } a^{-1}(aba)=a^{-1}a\Longrightarrow \left\{ \begin{array}{rl} ab=1 & \forall0\ne a\in R \exists !b\in R \\ ba=1 & \forall0\ne a\in R \exists !b\in R \end{array} \right.$
Therefore, since $ab\in R\Longrightarrow 1\in R$. So $R$ is a ring with identity.

But then I realized, how one can say $aa^{-1}=1$ when one doesn't know whether $R$ is a ring with identity.

Thomas Andrews
  • 177,126
Mill
  • 917

3 Answers3

6

Try to first show $R$ has no zero divisors (see below), and having that, it follows that $bab=b$.

With this in hand, let $c\in R$. Then $aba=a$ implies $caba=ca$, so cancelling the nonzero $a$, $cab=c$.

On the other hand, $bab=b$ implies $bc=babc$, so cancelling the nonzero $b$ yields $c=abc=cab$. That is, $c=(ab)c=c(ab)$ for any $c\in R$. So $ab$ satisfies the properties of $1$, so $ab=1$.


To see there are no zero divisors, assume $a\neq 0$. Let $b$ be the unique $b$ such that $aba=a$. Suppose $c$ is such that either $ca=0$ or $ac=0$. Then $a(b+c)a=aba+aca=a$ so by uniqueness, $b=b+c$, or $c=0$.

Ben West
  • 12,366
  • Any reason for the downvote? – Ben West May 07 '14 at 22:11
  • 1
    I can see no reason. – egreg May 07 '14 at 23:22
  • I'm a bit confused here @BenWest . In the second line, how can we cancel the element $a$ when we don't know whether a $1_R$ exists such that $caba=ca\Rightarrow caba(a^{-1})=ca(a^{-1}) \Rightarrow cab(1)=c(1)$. Do I miss anything? – Mill May 08 '14 at 08:38
  • 1
    @Milad You're cancelling by the fact that $R$ has no zero divisors, not by assuming an inverse of $a$. The reasoning is $caba=ca$ implies $caba-ca=0$ implies $(cab-c)a=0$. Since $a\neq 0$ and there are no zero divisors, necessarily $cab-c=0$, so $c=cab$. – Ben West May 08 '14 at 18:01
  • 1
    That's right, @BenWest . $R$'s being an integral domain is what I miss. Problem solved and thank you. – Mill May 09 '14 at 06:54
  • @BenWest In proving that there are no zero divisors, correct this: $a(b+c)a=aba+aca$ – Mill May 13 '14 at 12:16
0

$a = aba = abababa = ... = (ab)^n a \quad \forall n$

Therefore $a=(ab)a$ and $a=a(bab)a$.

But $\exists ! b$. So $b=bab$. So if $a\mapsto b$ by that rule, $b\mapsto a$.

Now $ab$=$abab$=$(ab)^n \forall n$

So $\forall c \in R, \quad ab c=(ab)^2c=(ab)^n c$

If $c \neq (ab)c$, then since $(ab)\neq 0$

$(ab)c\neq (ab)^2 c$. But this is false, so $c=(ab)c$ for all $c$, therefore $ab=1$

0

aba = a

aba - a = a - a

aba - a = 0

EDIT:

aba - aba = 0

baba - baba = 0

baba - ba = 0

a(bab - b) = 0

b = bab

Now since b = bab let c be any element in R

since bc = babc we see that c = (ab)c

we also have ca = caba

thus c = c(ab)

Therefore ab must be a an identity in R

meh
  • 267
  • 1
  • 4
  • Where does $c$ comes from? – egreg May 07 '14 at 23:21
  • when you factor out the a its quite obvious that the c has to be 1 but for generality I'm assuming that some ac = a there. – meh May 07 '14 at 23:51
  • I can't see what you mean with $aba-a=a(ba-c)$: you are assuming the existence of $1$, in order to do it. Where are you using the uniqueness of the pseudoinverse $b$, which is necessary for concluding the existence of $1$? There are examples of von Neumann regular rings without $1$. – egreg May 07 '14 at 23:53
  • I'm not assuming the existence of 1. I will edit my post for clarity. – meh May 07 '14 at 23:57
  • Yes, you are; think about it. The only $c$ you are allowed to use there, unless you prove other facts, is $c=ba$, which doesn't help much, does it? – egreg May 08 '14 at 00:01
  • Fixed it for ya. – meh May 08 '14 at 01:01
  • How do you go from $a(bab-b)=0$ to $bab=b$? – Ben West May 08 '14 at 01:28
  • How do you see from the equation $bc = babc$, the equation $c = (ab)c$? We don't know whether $1_R$ exists, so, can we move on saying: $bc=babc\Rightarrow (b^{-1})bc=(b^{-1})babc \Rightarrow (1)c=1(abc) \Rightarrow c=abc.$ – Mill May 08 '14 at 09:08
  • @Ben West: a(bab - b) = 0 goes to bab = b because since a != 0 we must have that bab - b = 0 Hence bab = b. – meh May 09 '14 at 02:28
  • 1
    @Milad It comes from the fact that there are no Zero divisors. Since a != 0 and c != 0 we have the equation bc = babc which is equivalent to saying b(abc - c) = 0. This shows that abc = c and hence why (ab) = 1. – meh May 09 '14 at 02:33
  • Yes, I agree, but nowhere in your answer have you proven there are no zero divisors. – Ben West May 09 '14 at 02:45