How to find cartesian product of two sets?
Answers
Answered by
0
U can find out the Cartesian product of 2 sets by mapping their elements
for example
A = { 1 ,2 }
B = { 5 ,8}
Cartesian product = {( 1,5) , ( 1,8 ) ,( 2 , 5 ) (2,8) }
hope it helps
for example
A = { 1 ,2 }
B = { 5 ,8}
Cartesian product = {( 1,5) , ( 1,8 ) ,( 2 , 5 ) (2,8) }
hope it helps
Answered by
0
Answer:
let A and B be two sets consider the pair (a ,b) in which the first element is from A and the second from B . Then (a, b) is called an ordered pair .
In an ordered pair the order in which the two elements are written is important .
Thus (a ,b) and (b, a) are different ordered pairs.
Two ordered pairs( a, b) and (c,d) are said to be equal or same if a is equals to c and b is equals to d.
Step-by-step explanation:
Hope this helps you
Attachments:
Similar questions