edited by
3,716 views
0 votes
0 votes
31 Explain why A X B X C and ( A X B ) X C are not same.
edited by

2 Answers

Best answer
6 votes
6 votes

Well you can not say $( (a,b),c)$ == $(a,b,c)$, These are not same. I am taking $ * = \times $

$A * B * C$ will generate the set of type $(a,b,c)$ element.

$(A * B)  * C$ will generate the set of type $((a,b),c)$ element.

And the biggest difference is that $A * B * C$ is a triplet cartesion product while $(A * B) * C$ is a binary cartesion product

Hence both are not same.

selected by
1 votes
1 votes

Let A={1,2} , B=$\phi$, C={3,4}

$(A \times B ) \times C= \phi \times C=\phi$

$A \times (B \times C)= A \times \phi=\phi$

$(A \times B)\times C= A \times (B \times C)$

Now let's take another Example

A={1} , B={2} , C={3}

$(A \times B ) \times C=$ { ((1,2),3) }

$A \times( B \times C)=${ (1,(2,3) ) }

$A \times( B \times C)$ ≠ $(A \times B ) \times C$

Hence we can conclude

The Cartesian product is not associative unless one of the involved sets is empty.

$A \times( B \times C)$ ≠ $(A \times B ) \times C$

"Hence Proved".

Related questions

0 votes
0 votes
1 answer
1
0 votes
0 votes
1 answer
3
BharathiCH asked Dec 22, 2018
258 views
Determine whether these statements are true or false. ∅ ∈ {∅} ∅ ∈ {∅, {∅}}{∅} ∈ {∅}{∅} ∈ {{∅}}{∅} ⊂ {∅, {∅}} {{∅}} ⊂ {∅, {∅}}{{�...
2 votes
2 votes
1 answer
4