In what algebraic structure does repeated addition equal multiplication?

610 Views Asked by At

I'm trying to figure out for which algebraic structure

$$\underbrace{a+a+\cdots+a}_{n \text{-times}} = a * n$$

is true.

Now I know the question 'Is all multiplication repeated addition?' has been asked many times with the answer: NO because you cannot express non-integer (such as fractions or complex numbers) multiples as repeated addition. However I'm pretty sure that the reverse is true; that 'Repeated addition is always multiplication'

So my first thought was that Rings would be the appropriate algebraic structure for this, seeing that they have both addition and multiplication. However, the definition of a ring does not mention this property.

So I was thinking about this property and it seems like it holds for many rings, including the following:

  • Integers
  • Rationals
  • Reals
  • Complex numbers
  • $m\times m$ Matrix Ring
  • Polynomials where multiplication is scaling by a number

But... Then I ran into the Boolean ring where $\lor$ is the addition in the ring, and $\land$ is the multiplication. So...

$$???\,\,\underbrace{a\lor a\lor\cdots\lor a}_{n \text{-times}} = a \land n \,\,???$$

Now the problem is the type of the entity is totally different (true/false values). This doesn't even make sense; or does it? If this isn't true, then I'm not sure where that leaves me then, since it would imply that this property doesn't hold for rings in general. But then what does it hold for?

Any insight would be greatly apprecitated. :)

2

There are 2 best solutions below

2
On BEST ANSWER

A very concise description of what's true here is that when:

  • multiplication distributes over addition
  • addition and multiplication are associative
  • $1$ is the multiplicative identity

then for every positive integer $n$, you have

$$ (\underbrace{1 + 1 + \ldots + 1}_{n \text{ times}}) x = \underbrace{x + x + \ldots + x}_{n \text{ times}} = x (\underbrace{1 + 1 + \ldots + 1}_{n \text{ times}})$$

0
On

Repeated addition is always multiplication

Sort of! What you're talking about is the confluence of two things:

  1. the notion of a power of an element in a group;
  2. the integers acting on an abelian group.

Firstly, the first point says that for an element $a$ in a group $G$, there is the notion of the power of $a$, written as "$a^n$" when we are using multiplicative notation for the group operation and written as $n a$ when using additive notation for the group operation.

Secondly, the first point allows us to think about any Abelian group as a $\mathbb Z$-module, so that there's a bilinear multiplication $\mathbb Z\times M\to M$ satisfying $1m=m$ for all $m$, and therefore by bilinearity $m+m=(1+1)m$, etc.

Given any $R$-module $M$, this $\mathbb Z$ action is always captured by what $1\in R$ does to elements of $M$.

So I think the best answer to your question is an abelian group (aka a $\mathbb Z$-module.)

For any abelian group $M$, repeated addition of $m$ in $M$ is the same as the action of $n\in \mathbb Z$ on $m$.

We could clarify the highlighted statement for rings like this:

For a ring $R$ with identity and a unitary $R$-module $M$, repeated addition in $M$ is the same as multiplying by $n1$ where $1$ is the identity of $R$.


I don't agree with your statements about boolean rings though. $\vee$ and $\wedge$ are not the usual notations for the operations in a boolean ring: they are the usual notations for the lattice operation of a boolean algebra, though.

There is a link between the two: $a+b=(a\wedge\neg b)\vee (b\wedge\neg a)$ and $ab=a\wedge b$.

In that case $a+a+\ldots+a\in\{0,a\}$ depending on the parity of the number of $a$'s. This matches multiplication by $n$, because $n\equiv 0$ or $n\equiv 1$ based on the parity of $n$.