| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> comp.databases.theory -> Re: Is {{}} a valid construct?
On Feb 6, 3:18 pm, "Neo" <neo55..._at_hotmail.com> wrote:
> Please ignore prior example, the following is more accurate as apple
> and orange are infact sets (and so are red, stem, orange, pulp, etc
> recursively)
>
> U = {{}, {red, stem}, {orange, pulp}} [1]
> NOT {red, stem} => {{}, {orange, pulp}} [2]
> NOT {orange, pulp} => {{}, {red, stem}} [3]
> NOT {} => {{red, stem}, {orange, pulp}} [4]
> -or-
> {{}, {red, stem}, {orange, pulp}}
Syntax errors again. Lines 2 and 3 attempt to complement sets
that do not appear in U. For example, in line 2, you attempt to
complement a set that contains red. However red is not an element of
U.
Lines 2 and 3 are malformed and meaningless. Your confusion
about them leads directly to your thinking that there is some
problem with 4.
U = {{}, {red, stem}, {orange, pulp}}
NOT {{red, stem}} = {{}, {orange, pulp}}
NOT {{orange, pulp}} = {{}, {red, stem}}
NOT {} = {{},{red, stem}, {orange, pulp}}
NOT {{}} = {{red, stem}, {orange, pulp}}
Marshall Received on Tue Feb 06 2007 - 17:40:24 CST
![]() |
![]() |