in
membership operator for sets or lists
Calling Sequence
Parameters
Description
Examples
element in objs
element∈objs
element in SetOf( type )
element∈SetOf⁡type
element
-
expression
objs
set or list
type
valid type expression
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 1∈1,2,3,4.
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.
1in1,2,3,4
1∈1,2,3,4
evalb⁡
true
1inSetOf⁡integer
1∈SetOf⁡integer
1inSetOf⁡polynomminusSetOf⁡integer
1∈SetOf⁡polynom∖SetOf⁡integer
false
1inAunionBunionCminusD
1∈A∪B∪C∖D
1∈Aor1∈Bor1∈Candnot1∈D
1in1,2,3intersect1,2,6minus1,4,7
1∈2
evalb⁡1in1,2,3intersect1,2,6minus1,4,7
is⁡xinSetOf⁡realassumingx::fraction
is⁡xinSetOf⁡integerassumingx::rational
coulditbe⁡xinSetOf⁡integerassumingx::rational
assume⁡xinSetOf⁡real;about⁡x
Originally x, renamed x~: is assumed to be: real
The command in also works with lists.
evalb⁡1in6,7,1,8
s≔op⁡solve⁡a+b=5,b2−a2=25,a,b
s≔a=0,b=5
evalb⁡a=0ins
See Also
add
assume
do
intersect
list
minus
mul
seq
set
uneval
union
Download Help Document