Ring isomorphism via $a\oplus b = a + b + 1,\ a\odot b = a\cdot b + a + b$ (transport of structure)

abstract-algebraring-isomorphismring-theory

A question from Herstein's Abstract Algebra book goes-

Let $(R,+,\cdot)$ be a ring with unit element. Using its elements we define a ring $(\tilde R,\oplus,\odot)$ by defining $a\oplus b = a + b + 1$ and $a\odot b = a\cdot b + a + b$ where $a,b\in R$.

  1. Prove that $\tilde R$ is a ring under the operations $\oplus$ and $\odot$.
  2. What is the zero element of $\tilde R$?
  3. What is the unit element of $\tilde R$?
  4. Prove that $R$ is isomorphic to $\tilde R$.

Parts 1,2 and 3 seemed quite easy for me, and the answers I got for 2 and 3 are $-1$ and $0$ respectively.

But, I got stuck with part 4. I understood that I had to construct an isomorphism $\phi:R\to \tilde R$ such that $0\mapsto -1$ and $1\mapsto 0$. But, I couldn't construct the bijection explicitly. A little google search revealed the answer to be $\phi (x)=x-1$ and that works.

My question is, how do we come up with that isomorphism? How do we construct that function when all we know are the two weird sum and product definitions, and $0\mapsto -1$ and $1\mapsto 0$? Some "stacking" showed some similar questions where people have suggested something called "transporting ring structure" which I honestly can't grasp properly. I'm not even sure whether that is really the answer to my question.

I would like to have some help from the experts here.

Also please change the title of the question if you can think of a better one 😐

Best Answer

A side note: this is an exercise. You would expect that whoever made it would make it reasonably easy to solve. In fact, they might have chosen the isomorphism map first (an arbitrary bijection, say, $f(x)=x-1$) and used that to build up the operations ($x\odot y=f(f^{-1}(x)f^{-1}(y))=(x+1)(y+1)-1=xy+x+y$ and similar for $\oplus$). So, with this being an exercise, you can just expect that the rule won't be too complicated. However, the skill you need to have to figure out what the rule is, is universal and applicable to real-life situations. Probably worth a few words about what you could do, in general.


First of all, an isomorphism carries over all algebraic properties of the structure. (All properties expressible via the two operations involved.) It is basically renaming elements but keeping their relationship intact. Thus, if an element in one structure has some sort of unique status, it must map to the element in the other structure with the same status.

Because zero (the neutral for the "addition" operation) is unique, the isomorphism must map the neutral into neutral. So we know $0$ maps to $-1$, and $1$ maps to $0$. However, a lot of other real numbers now have "special" status. For example, $2=1+1$ must map into $0\oplus 0=1$; $3=2+1$ must map into $1\oplus 0=2$ etc. - every natural number $n$ maps to $n-1$.

At this point you may already have a good idea that every real number $x$ maps to $x-1$, but let's say you still don't see the map very clearly. Can we see mapping of other numbers? For example, if $n\in\mathbb N$, $-n$ is the unique inverse of $n$ for $+$, so it needs to map into the unique inverse of $n-1$ for $\oplus$. What is it? Solve for unknown $m$: $(n-1)\oplus m=-1$, i.e. $n+m=-1$ i.e. $m=-n-1$ and so negative numbers $-n$ are also mapped into $-n-1$.

What about fractions? First, $1/2$ is the unique inverse of $2$ for $\cdot$, so it needs to map into the unique inverse of $1$ for $\odot$. More generally, $1/n$ maps to the unique inverse of $n-1$ for $\odot$. Again, solve $(n-1)\odot q=0$ i.e. $(n-1)q+n-1+q=0$ for $q$, and you will get $qn+n=1$ i.e. $q=1/n-1$. So the fraction $1/n$ maps to $1/n-1$.

And so on... I will leave to you to prove that any fraction $p/q$ must map into $p/q-1$. This should be already enough to have a good guess that every $x\in\mathbb R$ maps into $x-1$. If you still cannot see it, you can go even further: in $\mathbb R$, the relation $\le$ is an algebraic property becuse $x\le y\iff (\exists z)(y=x+z^2)$. So let's suppose $x\le y$, so there is $z$ such that $y=x+z^2$. Applying $f$, you conclude that $f(y)=f(x)\oplus(f(z)\odot f(z))$. Let's now see what it means:

$$\begin{array}{rcl}f(y)=f(x)\oplus (f(z)\odot f(z))&\iff&f(y)=f(x)\oplus (f(z)^2+2f(z))\\&\iff&f(y)=f(x)+f(z)^2+2f(z)+1\\&\iff&f(y)=f(x)+(f(z)+1)^2\end{array}$$

which tells you that $f(x)\le f(y)$. The conclusion is: the isomorphism must also preserve the ordering. Thus, if you have proven that $x$ maps to $x-1$ for all rational numbers, simply because irrational numbers are uniquely defined by which rational numbers they are wedged in between, you get that the same formula is valid for all real numbers.


To summarise: all we did to reconstruct the isomorphism was to spot the unique role the original elements of $\mathbb R$ play with respect to the operations $+$ and $\cdot$, and calculate which elements play the same role with respect to the new operations $\oplus$ and $\odot$. In this problem it is easy, because of the second observation: every number in $\mathbb R$ plays a unique role. Thus the isomorphism can be reconstructed fully. (Probably it is an important point for you to try to fully understand how ordering happens to be an algebraic property on $\mathbb R$.) In other cases, you may have ambiguities - sometimes there will be more than one element that satisfies some property, which may give rise to multiple isomorphisms.

Related Question