-1

I would like to prove the following statement:

If $(a,b)$ ~ $(A,B)$ and $(c,d)$ ~ $(C,D)$, where all pairs are pairs of whole numbers, prove that $(a,b)*(c,d)$ ~ $(A,B)*(C,D)$.

Note: Whole numbers are defined as the following:

<p>$(a,b)$ ~ $(c,d)$ iff $a+d=b+c$</p>

<p>$(a,b) + (c,d) = (a+c,b+d)$</p>

<p>$(a,b)*(c,d) = (ac+bd,ad+bc)$</p>

My half-finished proof:

Given $(a,b)$ ~ $(A,B)$ and this means that $a+B = b+A$

Given $(c,d)$ ~ $(C,D)$ and this means that $c+D = d+C$

Prove $(a,b)*(c,d)$ ~ $(A,B)*(C,D)$ and this means that $(ac+bd,ad+bc)$ ~ $(AC+BD,AD+BC)$ which according to the definition is $((ac+bd)+(AD+BC))=((ad+bc)+(AC+BD))$

I do not know where to go from here. please help me!

socrates
  • 793

2 Answers2

3

First note that by transitivity we only need to show that $$(a,b)(c,d)=(A,B)(c,d)$$ as we can go $$(a,b)(c,d)=(A,B)(c,d)=(A,B)(C,D)$$ So we have then that $$ac+bd+Bc+Ad=(a+B)c+(b+A)d=(A+b)c+(B+a)d=Ac+bc+Bd+ad$$ at which the equality follows.

Zelos Malum
  • 6,666
  • 2
  • 16
  • 34
0

Given that $a + B = b + A$, you have that $b-a=B-A$.

Likewise, from $c+D=d+C$, we know that $d-c=D-C$.

So, $(d-c)(b-a)= (D-C)(B-A)$

So, $bd-bc-ad+ac=BD-BC-AD+AC$

And so, $ac + bd+AD+BC=ad+bc+AC+BD$

Bram28
  • 103,721
  • But I do not have the definition for subtraction. – socrates Dec 10 '16 at 03:10
  • @socrates I thought you said you were working with whole numbers? So it is just subtraction for whole numbers, just as the other operations are defined in terms of addition and multiplication of whole numbers. – Bram28 Dec 10 '16 at 03:12
  • 1
    I think he means natural numbers and is trying to construct the integers. – Zelos Malum Dec 10 '16 at 04:22
  • @ZelosMalum Oh! OK, that makes sense. I took 'whole numbers' to be integers. OK, then your approach is much better! – Bram28 Dec 10 '16 at 12:43