|
Method and examples
|
Select Operation
|
|
(Cartesian product) Cross product two sets
|
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
|
|
(Cartesian product) Cross product two sets 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}, B = {3,4}, Find A cross B ...
Solution: Here `A={1,2,3},B={3,4}`
`A × B = {1,2,3} × {3,4}`
`= { (1,3), (1,4), (2,3), (2,4), (3,3), (3,4)}`
|
|
|
|
|