What is the square root of #3# ?
2 Answers
Explanation:
3 is not a perfect square, so does not have an exact square root.
Using a calculator gives:
Give your answer rounded to a reasonable number of decimal places.
The square root of
#sqrt(3) ~~ 18817/10864 ~~ 1.7320508#
Explanation:
"The" square root of
It can be expressed by a (non terminating) continued fraction:
#sqrt(3) = [1;bar(1,2)] = 1+1/(1+1/(2+1/(1+1/(2+1/(1+1/(2+1/(1+...)))))))#
This positive square root is also known as the principal square root of
We can get rational approximations to
For example:
#sqrt(3) ~~ [1;1,2,1] = 1+1/(1+1/(2+1/1)) = 7/4 = 1.75#
#sqrt(3) ~~ [1;1,2,1,2,1] = 1+1/(1+1/(2+1/(1+1/(2+1/1)))) = 26/15 = 1.7bar(3)#
#sqrt(3) ~~ [1;1,2,1,2,1,2,1] = 1+1/(1+1/(2+1/(1+1/(2+1/(1+1/(2+1/1)))))) = 97/56 = 1.732bar(142857)#
Another method to find approximations to
#{ (p_(i+1) = p_i^2 + n q_i^2), (q_(i+1) = 2 p_i q_i) :}#
Let us start with
Then:
#{ (p_1 = p_0^2+n q_0^2 = 2^2+3*1^2 = 4+3=7), (q_1 = 2 p_0 q_0 = 2*2*1 = 4) :}#
#{ (p_2 = p_1^2 + n q_1^2 = 7^2+3*4^2 = 49+48 = 97), (q_2 = 2 p_1 q_1 = 2*7*4 = 56) :}#
#{ (p_3 = p_2^2 + n q_2^2 = 97^2+3*56^2 = 9409+9408 = 18817), (q_3 = 2 p_2 q_2 = 2*97*56 = 10864) :}#
Stopping here, we get:
#sqrt(3) ~~ 18817/10864 ~~ 1.7320508#
As you may notice, this method is exponentially faster than the continued fraction method, effectively doubling the number of terms each time.