A choice function draws values from a collection of nonempty sets, taking one value from each set.
Often the plan is to get all possible combinations.
A={1,3,5}
B={2,4}
- (1,2)
- (1,4)
- (3,2)
- (3,4)
- (5,2)
- (5,4)
Mockingbird Academy Student
A choice function draws values from a collection of nonempty sets, taking one value from each set.
Often the plan is to get all possible combinations.
A={1,3,5}
B={2,4}