Induction with associative binary operation

235 Views Asked by At

Let * be an associative binary operation on a set 'A' with identity element e. Let 'B' be a subset of 'A' that is closed under *. Let b1, b2, b3, ... bn ∈ B. Prove that b1 * b2 * b3... bn ∈ B.

We know that b1, b2, b3 and so on are elements of B under an associative binary operation, but how would one prove this with induction?

1

There are 1 best solutions below

1
On BEST ANSWER

We can prove this by induction on $n$.

Base case: $b_1 \in B$ by definition.

Inductive case: we must show that, for all $k$, if $b_1 * \ldots * b_k \in B$ then $b_1 * \ldots * b_k * b_{k+1} \in B$.

Notice that, since $*$ is associative, $b_1 * \ldots * b_k * b_{k+1} = (b_1 * \ldots * b_k) * b_{k+1}$. We know by our inductive hypothesis that $b_1 * \ldots * b_k \in B$, and we know that $B$ is closed under $*$. Therefore, $(b_1 * \ldots * b_k) * b_{k+1} \in B$ and we are done.