You are asked to find all ordered pairs (m,n) of elements of A such that m² - n > 2 :
It's clearly impossible when m = 0 or 1.
If m = 2, then 4 - n > 2 turns to n < 2 :
(2,0), (2,1)
If m = 3, then the condition on n is n < 7 :
(3,0), (3,1), (3,2), (3,3), (3,4)
If m = 4, then, just as before, every n in A satisfies the equation :
(4,0), (4,1), (4,2), (4,3), (4,4)
"Expressed as a set" :
R = { (2,0), (2,1), (3,0), (3,1), (3,2), (3,3), (3,4), (4,0), (4,1), (4,2), (4,3), (4,4) }