Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Comments on Endomorphisms on an entropic structure whose pointwise product is the identity automorphism - entropic idempotent structure?

Parent

Endomorphisms on an entropic structure whose pointwise product is the identity automorphism - entropic idempotent structure?

+7
−0

Context: self-study from Warner's "Modern Algebra (1965): Exercise 16.27.

Let $\alpha$ and $\beta$ be endomorphisms of an entropic structure $(S, \odot)$ such that $\alpha \odot \beta$ is the identity automorphism, and let $\otimes$ be the operation on $S$ defined by: $$x \otimes y = \alpha (x) \odot \beta (y)$$ for all $x, y \in S$. Then $(S, \otimes)$ is an entropic idempotent algebraic structure.

An entropic structure is an algebraic structure $(S, \circ)$ such that $\circ$ is an entropic operation, that is:

$$\forall a, b, c, d \in S: (a \circ b) \circ (c \circ d) = (a \circ c) \circ (b \circ d)$$

Idempotence is trivial, but I'm having trouble proving entropicness.

Here is my attempt:

$(w \otimes x) \otimes (y \otimes z)$

$= (\alpha (w \otimes x) ) \odot (\beta (y \otimes z) )$

$= (\alpha (\alpha (w) \odot \beta (x))) \odot (\beta (\alpha (y) \odot \beta (z)))$

$= (\alpha (\alpha (w) ) \odot \alpha (\beta (x))) \odot (\beta (\alpha (y)) \odot \beta (\beta (z)))$ (justified by homomorphism)

$= (\alpha (\alpha (w) ) \odot \beta (\alpha (y))) \odot (\alpha (\beta (x)) \odot \beta (\beta (z)))$ (as $\odot$ is entropic)

$= (\alpha (w) \otimes \alpha (y)) \odot (\beta (x) \otimes \beta (z))$

If we can say that $\alpha (w) \otimes \alpha (y) = \alpha (w \otimes y)$ then we are home and dry, but I can't see why we can make that leap, as it is far from obvious that $\alpha$ and $\beta$ are endomorphisms on $(S, \otimes)$ in the same way that they are on $(S, \odot)$. Or are they? And why?

What is it I'm missing here?

History
Why does this post require attention from curators or moderators?
You might want to add some details to your flag.
Why should this post be closed?

2 comment threads

I don't know and right now can't see the answer, but the obvious point (which has probably already oc... (1 comment)
Could you please add the definition of an entropic structure? (2 comments)
Post
+1
−1

$(S,\otimes)$ is not entropic. The following is an example, that is, a counterexample, to the claim of the exercise.

$(\mathbb Z_3,\odot)$ where $\odot$ is defined as $x\odot y=x+2y$, is entropic: $$\begin{align} (x\odot y)\odot(z\odot w) & = (x+2y)+2(z+2w) \\ & = x+2y+2z+4w \\ & = (x+2z)+2(y+2w) \\ & = (x\odot z)\odot(y\odot w). \end{align}$$

Define $\alpha(x):=x^2$ and $\beta(x):=2(x-x^2)$. Then $$\begin{align} (\alpha\odot\beta)(x) & = \alpha(x)+2\beta(x) \\ & = x^2+4(x-x^2) \\ & = x^2+x-x^2 \\ & = x. \end{align}$$

Construe $\otimes$ as $x\otimes y:=\alpha(x)\odot\beta(x)$. Given $x,y,z,w\in \mathbb Z_3$, $$\begin{align} & (x\otimes y)\otimes(z\otimes w) \\ & = \alpha(\alpha(x)+2\beta (y))+2\beta(\alpha(z)+2\beta(w)) \\ & = 2w^4+2w^3+2w^2z^2+w^2+wz^2+w+x^4+x^2y^2+2x^2y+y^4+y^3+y^2+2z^4+z^2 \\ & = 2w^2+2w^2+2w^2z^2+w^2+wz^2+w+x^2+x^2y^2+2x^2y+y^2+y^2+y^2+2z^2+z^2 \\ & = 2w^2+2w^2z^2+wz^2+w+x^2+x^2y^2+2x^2. \end{align}$$

In conclusion, $(\mathbb Z_3,\otimes)$ is not entropic. For example, $$(1\otimes2)\otimes(0\otimes0)=0 \neq 1=(1\otimes0)\otimes(2\otimes0).$$

History
Why does this post require attention from curators or moderators?
You might want to add some details to your flag.

1 comment thread

$\alpha$ and $\beta$ are required to be homomorphisms of the entropic structure. (2 comments)
$\alpha$ and $\beta$ are required to be homomorphisms of the entropic structure.
Derek Elkins‭ wrote 5 months ago

$\alpha$ and $\beta$ need to be homomorphisms of the entropic structure. Presumably, this means $\alpha(x \odot y) = \alpha(x) \odot \alpha(y)$. $x^2$ doesn't seem like a homomorphism for the entropic structure you defined. That is, $(x + 2y)^2 = x^2 + 4xy + 4y^2 \neq x^2 + 2y^2$ even mod $3$.

JohnnyJohn‭ wrote 5 months ago

I absolutely forgot to check that property. I did now and $\alpha$ is a homomorphism but $\beta$ is not. I'm new to the site, should I delete the answer or should I edit it saying where it's wrong in case the rest of it be of some help for someone?