Ordered Pairs
an ordering of objects such that order of the objects matter
(1,2)=(2,1)
Ordered n-Tuple
(x1,x2,x3,⋯,xn)=(y1,y2,y3,⋯,yn) if x1=y1
(a,b) : ordered 2-Tuple
(a,b,c) : ordered 3-Tuple
Cartesian Product
Given sets A and B, the Cartesian Product of A and B, denoted A×B and read "A cross B", is the set of all ordered pairs (a,b), where b is in A and b is in B
A×B={(a,b) ∣ a∈A and b∈B}
e.g.A=(a,b),B=(1,2), then A×B={(a,1),(b,1),(a,2),(b,2)}
make sure that A×B=B×A
because it has orders
A×B×C={(a,b,c) ∣ a∈A, b∈B and c∈C}
e.g.A=(a,b),B=(1,2), C=(x,y)
thenA×B×C={(a,1,x),(a,1,y),(b,1,x),(b,1,y),(a,2,x),(a,2,y),(b,2,x),(b,2,y)}
make sure that A×B×C=(A×B)×C
(A×B)×C={((a,1),x),((a,1),y),((b,1),x),((b,1),y),((a,2),x),((a,2),y),((b,2),x),((b,2),y)}
nested tuples are made
Cartesian Plane
Cartesian Plane (=Coordinate Plane) (named after Rene Decartes)
R×R → 2D Cartesian Plane
R×R×R → 3D Cartesian Plane