I am trying to solve an exercise in which I must decide whether the following sentences are true:
$\forall b \; \exists a \; \forall x \; (x^2 + ax + b > 0)$
$\exists b \; \forall a \; \exists x \; (x^2 + ax + b = 0)$
$\exists a \; \forall b \; \exists x \; (x^2 + ax + b = 0)$
But I don't know how to parse them to check if they are indeed true. I guess I know how to parse two quantifiers easily but this is kinda confusing to me.
For the first one, it reads as follows:
Perhaps by graphing this you can see this statement is most certainly false for $b \le 0$. However, to show the statement is false, we can show that its negation is true.
So, it suffices to show that the negation is true. Take $b=0$ and for any $a$ choose $x=0$. Then $x^2 + ax = x(x+a) = 0 \le 0$.
Hopefully you can see now how to do the other two.