Given group $\mathbb{Z}\backslash\{1\}$ with operation $a \otimes b = a + b − a · b$. Here $+, ·$ denote the normal operations of addition and multiplication in $\mathbb{Z}$. Which of the group axioms are satisfied.
First request code for typing $\otimes$.
Next, there are four group axioms / properties.
Closure. Results always in a number in set $\mathbb{Z}$.
Identity: Let $e$ be identity, then for all elements $a$ in $\mathbb{Z}$, have $$a \otimes e = a + e − a · e = a$$ $$\implies e(1 − a) = 0$$ $$\implies e(1 − a) = e$$ This implies $a=1$. So, how to find identity?
If take $e\ne 0$, then: $$\implies e(1 − a) = 0$$ $$\implies e = \frac0{(1-a)}=0$$ Then get below:
- Inverse wrt operation $\otimes$: let, $b$. But, $$a \otimes (b) = a +b -a · b = e$$ $$a +b -a · b = e$$ Leads nowhere.
Edit
In view of need for changes to domain, as pointed below; want to add that it is taken varbatim from the Q.3 of Chapter 20 of book titled: Abstract algebra- an Inquiry-Based based, by Jonathan Hodge, Ted Sundstorm.
a \otimes b
: $a\otimes b$. – Arthur May 26 '22 at 03:57You note in the final statement of your original post that your attempt to compute the inverse leads nowhere. This should be expected, as it is a bit unwieldy to attempt to compute an inverse without knowing what the identity is! If you do not know what the identity is, you will not be able to compute an inverse, and as such, any computations you attempt for an inverse should not contain an arbitrary element like e, but should be instead an element of the group that you already know about!
– JJ Hoo May 26 '22 at 04:21