1

I have $A=\{a,b,c,d\}$ and we have the two-member relationship :

$R=\{(a,a),(a,c),(c,c),(c,b),(b,b),(a,d),(d,d),(b,d)\}$

is it $R$ partial order?

is any way that I can solve it and give me the right answer?

ek.Sek
  • 497

1 Answers1

0

A partial order has to satisfy (1) $aRa$ for all $a$; (2) if $aRb$ and $bRc$, then $aRc$; (3) for $a\ne b$, at most one of $aRb$ and $bRa$ holds.

Your R has $aRc$ and $cRb$ but not $aRb$, so it is not a partial order (in the jargon, it is not transitive).

almagest
  • 18,380
  • is any software ,or calculator that I can do alone that? – ek.Sek Jan 16 '21 at 20:12
  • Not that I know of. But why do you need it? You just check (1): do we have all of $aRa,bRb,cRc,dRd$? Answer: yes. So the relation is reflexive. Do we have both $xRy$ and $yRx$ for any pair $x\ne y$. Answer: no. So the relation is anti-symmetric. But then when we check whether it is transitive, we find that it isn't. So even worst case where you find the flaw on your last check, the whole process only takes a couple of minutes. – almagest Jan 16 '21 at 20:23