I have two sets with different elements For example
let A = {1,2,3,...n}
let B = {a,b,c, ... m}
How can I calculate how many different unordered pairs I can create?
e.g. {1,a} and {a,1} is the same in my case
Any help is appreciated. I'm not sure how to search for it as I confuse the terminology of what I'm looking for and bumping into the wrong questions which all deal with a single set and it's combinations with a sample of two but in my case there are two distinct sets.