If you want to enumerate all elements of the following set:
All $x$ that are prime factors of the number 3528.
If you just write $$ A = \{2, 2, 2, 3, 3, 7, 7\} $$ it is not correct because each element should be unique.
How can you solve this?
Thanks a lot in advance
How shall I put it? It should be possible to describe any set, either in an enumerative or in an descriptive way. I want to have a very special set. My set is: "All numbers that are the result of my prime factor framentation".
Given any number N and then factorise it. We will get N=a^2*b^2*c^2.. where a, b and c are the prime factors of the number N.After factorising the number then write the set as { a,b,c,.. } which consist of all prime factors of N. Hope it helps.