|
Method and examples
|
Select Operation
|
|
Is Subset of a set
|
A =
,
x `in` ,
x is
|
|
|
|
|
|
- A = {x<=5; x in N}; B = {2<=x<=8; x in N}; C = {x<=3; x in N}
- A = {x^2<10; x in N}; B = {x<=1; x in N}; C = {1<=x<5; x in N}
- A = {1,2,3,4}; B = {3,4,5}; C = {1,3,5}
- A = {1,2,3,4}; B = {3,4,9,11}; C = {2,11,18,22}
- A = {2,3,6}; B = {3,5,6}; U = {1,2,3,4,5,6}
- A = {x<=9; x in N}; B = {3<=x<=7; x is odd}; C = {1<x<7; x is even}
- A = {1,2,3}; B = {2,3}
- A = {|x^3-2|<=25;x in N}; B = {1<x<5; x in N}; C = {x^4=81;x in N}
- A = {x^2-1 < 10;x in Z}; B = {|x-1|<2; x in N}; C = {|x|<=1;x in Z}
- A = {x^2<10; x in N}; B = {2,4,6}; C = {x^3-3x^2-4x=0}; U = {x<=10;x in N}
|
|
|
Solution
|
Solution provided by AtoZmath.com
|
|
Is Subset of a set calculator
|
1. A = {x<=5; x in N}; B = {2<=x<=8; x in N}; C = {x<=3; x in N}
2. A = {x^2<10; x in N}; B = {x<=1; x in N}; C = {1<=x<5; x in N}
3. A = {1,2,3,4}; B = {3,4,5}; C = {1,3,5}
4. A = {2,3,6}; B = {3,5,6}; U = {1,2,3,4,5,6}
5. A = {x<=9; x in N}; B = {3<=x<=7; x is odd}; C = {1< x<7; x is even}
6. A = {|x^3-2|<=25;x in N}; B = {1< x<5; x in N}; C = {x^4=81;x in N}
|
Example1. A = {1,2,3,4}, B = {3,4,5}, Find B subset A ...
Solution: Here `A={1,2,3,4}`,`B={3,4,5}`
is `B sub A ?`
If A and B are sets and if every element of A is an element of B, then we can say that A is a subset of B.
Here `5inB` but `5!inA`, so we can say that `B` is not subset of `A.`
|
|
|
|
|