yeah true, i was introduced to this method in a number proof question: Prove that the second digit after the decimal point of √2 is 1 without a calculator.
and the working out started with this:
1.41 < √2 < 1.42
then it squared everything.
then it evaluated 1.41^2 and 1.42^2 and showed that the inequality was true.
is there an alternate method possible for this question?
but yeah some questions seem to just be unlocked with this method, kind of like reverse engineering the question
This method is valid as, for any positive reals,
![](https://latex.codecogs.com/png.latex?\bg_white 0 < a < b \implies 0 < a^2 < b^2)
because
![](https://latex.codecogs.com/png.latex?\bg_white b^2 - a^2 = (b + a)(b - a) > 0 \implies b - a > 0)
.
It suffices as a method to establish that the decimal expansion begins
![](https://latex.codecogs.com/png.latex?\bg_white \sqrt{2} = 1.41 ...)
as the function
![](https://latex.codecogs.com/png.latex?\bg_white f(x) = x^2 - 2)
is continuous throughout its domain and changes sign on the open interval
![](https://latex.codecogs.com/png.latex?\bg_white x \in (1.41,\,1.42))
, and so there must be at least one solution of
![](https://latex.codecogs.com/png.latex?\bg_white f(x) = 0)
within that interval - and since there are only two solutions,
![](https://latex.codecogs.com/png.latex?\bg_white x = \pm\sqrt{2})
, it must be the positive value that satisfies
![](https://latex.codecogs.com/png.latex?\bg_white 1.41 < \sqrt{2} < 1.42)
Note, however, that you would need to show that the root is within
![](https://latex.codecogs.com/png.latex?\bg_white x \in (1.41,\,1.415))
to establish that
![](https://latex.codecogs.com/png.latex?\bg_white \sqrt{2} \approx 1.41)
to three significant figures.
A method for finding roots called Newton's method would provide an alternative approach to this problem, but is no longer included in the MX1 or MX2 syllabi.
For example, starting with an initial approximation of
![](https://latex.codecogs.com/png.latex?\bg_white x_0 = 1.5)
, the sequence of approximations
![](https://latex.codecogs.com/png.latex?\bg_white \{x_n\})
would be:
![](https://latex.codecogs.com/png.latex?\bg_white \begin{align*} \text{The exact decimal} \qquad \qquad \sqrt{2} &= 1.414\ 213\ 562... \\ \\ \text{The first approximation} \qquad \qquad x_0 &= \frac{3}{2} = 1.5 \qquad \qquad \qquad \qquad \qquad \qquad \qquad \qquad \text{is correct to 0 decimal places} \\ \text{The second approximation} \qquad \qquad x_1 &= \frac{3}{2} - \cfrac{\left(\frac{3}{2}\right)^2 - 2}{2\times\frac{3}{2}} = \frac{17}{12} = 1.416\ 666\ 666... \qquad \qquad \text{is correct to 2 decimal places} \\ \text{The third approximation} \qquad \qquad x_2 &= \frac{17}{12} - \cfrac{\left(\frac{17}{12}\right)^2 - 2}{2\times\frac{17}{12}} = \frac{577}{408} = 1.414\ 215\ 686... \qquad \qquad \text{is correct to 5 decimal places} \end{align*})
Starting from a better first approximation,
![](https://latex.codecogs.com/png.latex?\bg_white x_0 = 1.45)
, the approximations converge to
![](https://latex.codecogs.com/png.latex?\bg_white \sqrt{2})
more rapidly:
![](https://latex.codecogs.com/png.latex?\bg_white \begin{align*} \text{The exact decimal} \qquad \qquad \sqrt{2} &= 1.414\ 213\ 562... \\ \\ \text{The first approximation} \qquad \qquad x_0 &= \frac{29}{20} = 1.45 \qquad \qquad \qquad \qquad \text{is correct to 1 decimal place} \\ \text{The second approximation} \qquad \qquad x_1 &= \frac{1641}{1160} = 1.414\ 655\ 17... \qquad \qquad \text{is correct to 3 decimal places} \\ \text{The third approximation} \qquad \qquad x_2 &= \frac{5\ 384\ 081}{3\ 807\ 120} = 1.414\ 213\ 63... \qquad \qquad \text{is correct to 5 decimal places} \end{align*})
... though I do admit that calculating the decimal form of some of these fractions isn't easy without a calculator!
Under the old syllabus, there was a final question on an MX2 paper (1988, if I recall correctly) that showed that using Newton's Method and starting from the first approximation
![](https://latex.codecogs.com/png.latex?\bg_white \sqrt[3]{2} \approx 2)
, the 12th approximation to
![](https://latex.codecogs.com/png.latex?\bg_white \sqrt[3]{2})
was correct to at least 267 decimal places.