|
|
|
|
|
by criloz2
1757 days ago
|
|
It is possible to make a set that contains all the set except itself, operationally this pretty simple, I am working on creating a language programming based on set theory, so this will be an easy way to define some notion of universal set. fn contain(u0:(universal, set), u1:(universal, set)){
return false
} fn contain(u:(universal, set), s:set){
return true
} but don't how much logical sense it will make |
|
[1] https://en.m.wikipedia.org/wiki/Russell's_paradox