1,078 views
5 votes
5 votes

A binary relation $R ⊆ (S ×S)$ is said to be Euclidean if for every $a, b, c ∈ S, (a, b) ∈ R$ and $(a, c) ∈ R$ implies $(b, c) ∈ R$. Which of the following statements is valid?

  1. If $R$ is Euclidean, $(b, a) ∈ R$ and $(c, a) ∈ R$, then $(b, c) ∈ R$, for every $a, b, c ∈ S$
  2. If $R$ is reflexive and Euclidean, $(a, b) ∈ R$ implies $(b, a) ∈ R$, for every $a, b ∈ S$
  3. If $R$ is Euclidean, $(a, b) ∈ R$ and $(b, c) ∈ R$, then $(a, c) ∈ R$, for every $a, b, c ∈ S$
  4. None of the above.

2 Answers

Best answer
6 votes
6 votes
Lets see option $B$

If $R$ is reflexive then $(a,a)$ belongs to $R$

It is given that $(a,b)$ belongs to $R$

So, $(a,b) ∈ R$ and $(a,a)$ ∈ $R$ that implies $(b,a) ∈ R$ for all $a,b ∈ S$ [ since $R$ is euclidean]

Thus option $B$ is the correct answer.
edited by
Answer:

Related questions

13 votes
13 votes
5 answers
4
go_editor asked May 27, 2016
5,618 views
How many times is the comparison $i \geq n$ performed in the following program?int i=85, n=5; main() { while (i >= n) { i=i-1; n=n+1; } }$40$$41$$42$$43$