Analyzing the Setup
We are working with the set A={0,3,4,6,7,8,9,10} and a relation R defined by the condition that x−y is an odd positive integer or x−y=2. Our objective is to determine the minimum number of elements required to make this relation symmetric.
The definition states that (x,y)∈R if x−y∈{1,3,5,7,9} or x−y=2. Note that in all these cases, x−y>0, which implies x>y.
This indicates that every pair (x,y) currently in R lies strictly below the line y=x. Consequently, the relation is currently asymmetric.
The Systematic Count
To find the total number of elements in R, we iterate through each x∈A and identify all y∈A such that x−y∈{1,2,3,5,7,9}.
For x=10:
10−9=1, 10−8=2, 10−7=3, 10−3=7.
This yields 4 pairs: (10,9),(10,8),(10,7),(10,3).
For x=9:
9−8=1, 9−7=2, 9−6=3, 9−4=5, 9−0=9.
This yields 5 pairs: (9,8),(9,7),(9,6),(9,4),(9,0).
For x=8:
8−7=1, 8−6=2, 8−3=5.
This yields 3 pairs: (8,7),(8,6),(8,3).
For x=7:
7−6=1, 7−4=3, 7−0=7.
This yields 3 pairs: (7,6),(7,4),(7,0).
For x=6:
6−4=2, 6−3=3.
This yields 2 pairs: (6,4),(6,3).
For x=4:
4−3=1.
This yields 1 pair: (4,3).
For x=3:
3−0=3.
This yields 1 pair: (3,0).
Summing these values, the total number of elements in
R is:
4+5+3+3+2+1+1=19
The Symmetry Requirement
A relation is symmetric if, for every (x,y)∈R, the pair (y,x) is also in R. Since all 19 pairs in our current relation satisfy x>y, their symmetric counterparts (y,x) satisfy y>x.
Because our original relation R contains only pairs where the first element is greater than the second, none of the reverse pairs (y,x) are currently present in R.
To achieve symmetry, we must add the reverse of every existing pair. Since there are 19 such pairs and none of their inverses are already in the set, we must add exactly 19 new elements.
The minimum number of elements to add to make the relation symmetric is 19.