in - membership operator for sets or lists
|
Calling Sequence
|
|
element in objs
|
|
element in SetOf( type )
|
|
|
|
|
|
Parameters
|
|
element
|
-
|
expression
|
objs
|
-
|
set or list
|
type
|
-
|
valid type expression
|
|
|
|
|
Description
|
|
•
|
The in operator tests for set or list membership. The given container, objs, is searched for element. Evaluating an in expression in a boolean context, or via evalb, returns true if element is in objs, it returns false if element is not in objs. If the input contains symbolic components and the answer cannot be determined, a symbolic answer is returned. The default evaluator always returns in expressions unevaluated.
|
•
|
You can enter the command in using either the 1-D or 2-D calling sequence. For example, 1 in {1,2,3,4} is equivalent to .
|
•
|
When using the SetOf abstract set constructor, sets can be constructed from types. For example, the set of all integers can be created using SetOf( integer ). The SetOf constructor takes only one argument. More complex sets can be constructed using union, intersect and minus.
|
•
|
If obj is a complex expression involving union, intersect or minus, it may be more efficient to pass obj as an unevaluated expression. Using an unevaluated expression allows in to use its own rules for set membership across these functions.
|
•
|
The assume facility accepts the in operator.
|
|
|
Examples
|
|
>
|
|
| (1) |
>
|
|
| (2) |
>
|
|
| (3) |
>
|
|
| (4) |
>
|
|
| (5) |
>
|
|
| (6) |
>
|
|
| (7) |
>
|
|
| (8) |
>
|
|
| (9) |
>
|
|
| (10) |
>
|
|
| (11) |
>
|
|
| (12) |
>
|
|
| (13) |
>
|
|
| (14) |
>
|
|
Originally x, renamed x~:
is assumed to be: real
| |
The command in also works with lists.
>
|
|
| (15) |
>
|
|
| (16) |
>
|
|
| (17) |
|
|
See Also
|
|
add, assume, do, intersect, list, minus, mul, seq, set, type, uneval, union
|
|
Download Help Document
Was this information helpful?