I was solving questions from a book and it had a question :
Find all two digit numbers such that the sum of digits constituting the number is not less than 7; the sum of squares of digits is not greater than 30; the number written in reverse order is not larger than half the numbers ".
I proceeded like this: Let the no be $10x+y$. So from the questions we have :
$$x+y \ge 7 \tag{1}$$ $$x^2 + y^2 \le 30\tag{2}$$ $$10y+x \le \frac{1}{2}(10x+y)\tag{3}$$
where $x \in [1,9]$ and $y\in[0,9]$. Now I am stuck up. How to proceed now?