문제

I am searching for a extensional definition for the following set:

E := { m | m subset {a,b,c,d} and |m| = 2}

My idea is

E := {{a,b}, {a,c}, {a,d}, {b,c}, {b,d}, {c,d}, {a,a}, {b,b}, {c,c}, {d,d}}

any ideas?

도움이 되었습니까?

해결책

Most of the time sets are unordered and do not contain duplicate elements. So the answer really depends on how you define sets. If sets cannot contain duplicates, then {a,a} is really {a}, and so |{a,a}| = 1

So my advice to you is look back on the way sets are defined for your particular assignment and whether order and/or duplicates matter for your particular definition. Most of the time they don't but in your case they might.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top