nvictor
- 9
- 0
hello all,
i'm trying to prove the [STRIKE]cartesian product[/STRIKE] cardinality property of the cartesian product.
on a first attempt i used this:
and on a second attempt this:
i would like your criticism and comments. i don't have much math backgrounds.
thanks
i'm trying to prove the [STRIKE]cartesian product[/STRIKE] cardinality property of the cartesian product.
on a first attempt i used this:
19. |A X B| = |A|*|B|.
Proof by induction for finite sets.
Assume |B| = 0. Then B is the empty set and A X B = A X {} = {} by
definition. Thus on the left hand side we have |A| * 0 = 0 and on the right we
have |{}| = 0 (zero property of multiplication)
Assume these statements true |B| = k and |A X B| = |A| * |B| = |A| * k.
With Peano(1889) axiom for multiplication:
a * 0 = 0; a * S(b) = a + (a*b) with S being the successor function,
we prove that the statement remains true for |B| + 1 = k + 1.
For |B| + 1 = k + 1,
|A| * (|B| + 1) = |A| * (k + 1) = |A| * k + |A| = |A| * |B| + |A| = |A X B| + |A|
(because multiplication is distributive over addition of natural numbers)
Thus |A| * |B| + |A| = |A X B| + |A| eq. |A| * |B| = |A X B| (QED)
(by elimination)
and on a second attempt this:
this is the first of many small exercises I'm doing for building a strong theoretical computer science background.20. |A X B| = |A|*|B|.
Proof using the principle of multiplication. (haffe @ #math).
By definition, A X B = all ordered pairs (a,b) with a in A and b in B.
The number of ways of choosing an element from A X B, is the number of ways of
choosing one element from A, which is |A| times the number of ways of choosing
one from B, which is |B|. Thus the number of elements in |A X B| = |A| * |B|
(QED).
i would like your criticism and comments. i don't have much math backgrounds.
thanks
Last edited: