Need help with relation properties using logical operators

30 Views Asked by At

I was wondering how should I proceed to determine what will be in the relation and what will not given these properties. Operating with integers:

$R: \{(a, b)|(a= 0∧b= 0)∨ GCD(a, b) = 5\}$

1

There are 1 best solutions below

2
On

R = { (a, b) : (a = 0 ∧ b = 0) ∨ exists coprime j,k with (a = 5j ∧ b = 5k) }

{ x : P(x) or Q(x) } = { x : P(x) } $\cup$ { x : Q(x) }