I know this question has already been asked, for example Choice of $q$ in Baby Rudin's Example 1.1, but I can't understand any of the methods. The possibilities seem to be:
- Quadratic formula
- Secant method
- Drawing a chord between $(p,p^2 - 2)$ and $(2, 2)$ and taking the intersection of that chord with the $x$-axis
or just saying we want $n$ so large that $(p + 1/n)^2 < 2$, which makes the most sense.
I was hoping someone could walk me through an intuitive explanation of why Rudin's choice of $q$ in proving analytic incompleteness of the rationals is "natural" and where I can learn more. I haven't learned much about where Newton's method and the secant method come from, so I don't have a good idea. of how those formulas could be used to write $q$ as a function of $p$.
Update: Using a helpful suggestion in the comments:
Say $p \in A$, so $p^2 - 2 < 0$. We seek to find an $h > 0$ so that $q = p + h > 0$ but $(p + h)^2 < 2$. Then $$ p^2 + 2ph + h^2 < 2, $$ so $$ h(2p + h) < 2 - p^2. $$ I can then get $$ h < \frac{2-p^2}{2p + h}, $$ but then I've written $h$ in terms of itself; I need to get rid of $h$ somehow.