|
|
|
|
|
by marcosdumay
557 days ago
|
|
In programing, you can always rewrite that first rule as "all" and "some" must compose over set union. So, "all (A ∪ B) == all A && all B", and "some (A ∪ B) == some A || some B". That lets you discover the answer for the empty set. |
|