Jump to content

Square root of 5: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
→‎Relation to the golden ratio and Fibonacci numbers: MOS:OVERLINK, I find it hard to believe that anyone reading this article doesn't know what 1 is
→‎top: for clarification since this follows discussion of the 161/72 fraction approximation
 
(15 intermediate revisions by 13 users not shown)
Line 3: Line 3:
|rationality=Irrational
|rationality=Irrational
|algebraic=<math>\sqrt{5}</math>
|algebraic=<math>\sqrt{5}</math>
|binary={{gaps|10.0011|1100|0110|1110|...}}
|decimal={{gaps|2.23606|79774|99789|69...}}
|decimal={{gaps|2.23606|79774|99789|69...}}
|hexadecimal={{gaps|2.3C6E|F372|FE94|F82C|...}}
|continued_fraction=<math>2 + \cfrac{1}{4 + \cfrac{1}{4 + \cfrac{1}{4 + \cfrac{1}{4 + \ddots}}}}</math>
|continued_fraction=<math>2 + \cfrac{1}{4 + \cfrac{1}{4 + \cfrac{1}{4 + \cfrac{1}{4 + \ddots}}}}</math>
}}
}}
Line 17: Line 15:
:{{gaps|2.23606|79774|99789|69640|91736|68731|27623|54406|18359|61152|57242|7089...}} {{OEIS|id=A002163}}.
:{{gaps|2.23606|79774|99789|69640|91736|68731|27623|54406|18359|61152|57242|7089...}} {{OEIS|id=A002163}}.


which can be rounded down to 2.236 to within 99.99% accuracy. The approximation {{sfrac|161|72}} (≈ 2.23611) for the square root of five can be used. Despite having a [[denominator]] of only 72, it differs from the correct value by less than {{sfrac|1|10,000}} (approx. {{val|4.3e-5}}). As of January 2022, its numerical value in decimal has been computed to at least 2,250,000,000,000 digits.<ref>{{cite web |last1=Yee |first1=Alexander |title=Records Set by y-cruncher |url=http://numberworld.org/y-cruncher/records.html}}</ref>
which can be rounded down to 2.236 to within 99.99% accuracy. The approximation {{sfrac|161|72}} (≈ 2.23611) for the square root of five can be used. Despite having a [[denominator]] of only 72, it differs from the correct value by less than {{sfrac|1|10,000}} (approx. {{val|4.3e-5}}). As of January 2022, the numerical value in decimal of the square root of 5 has been computed to at least 2,250,000,000,000 digits.<ref>{{cite web |last1=Yee |first1=Alexander |title=Records Set by y-cruncher |url=http://numberworld.org/y-cruncher/records.html}}</ref>


==Rational approximations==
==Rational approximations==
Line 26: Line 24:
The successive partial evaluations of the continued fraction, which are called its [[Continued_fraction#Infinite_continued_fractions_and_convergents|''convergents'']], approach <math>\sqrt{5}</math>:
The successive partial evaluations of the continued fraction, which are called its [[Continued_fraction#Infinite_continued_fractions_and_convergents|''convergents'']], approach <math>\sqrt{5}</math>:
:<math>\frac{2}{1}, \frac{9}{4}, \frac{38}{17}, \frac{161}{72}, \frac{682}{305}, \frac{2889}{1292}, \frac{12238}{5473}, \frac{51841}{23184}, \dots</math>
:<math>\frac{2}{1}, \frac{9}{4}, \frac{38}{17}, \frac{161}{72}, \frac{682}{305}, \frac{2889}{1292}, \frac{12238}{5473}, \frac{51841}{23184}, \dots</math>
Their numerators are 2, 9, 38, 161, … {{OEIS|id=A001077}},  and their denominators are 1, 4, 17, 72, … {{OEIS|id=A001076}}.
Their numerators are 2, 9, 38, 161, … {{OEIS|id=A001077}}, and their denominators are 1, 4, 17, 72, … {{OEIS|id=A001076}}.


Each of these is a [[Continued fraction#Best rational approximations|best rational approximation]] of <math>\sqrt{5}</math>; in other words, it is closer to <math>\sqrt{5}</math> than any rational with a smaller denominator.
Each of these is a [[Continued fraction#Best rational approximations|best rational approximation]] of <math>\sqrt{5}</math>; in other words, it is closer to <math>\sqrt{5}</math> than any [[rational number]] with a smaller denominator.


The convergents, expressed as {{math|{{sfrac|''x''|''y''}}}}, satisfy alternately the [[Pell's equation]]s<ref name=conrad>{{cite web |last1=Conrad |first1=Keith |title=Pell's Equation II |url=https://kconrad.math.uconn.edu/blurbs/ugradnumthy/pelleqn2.pdf |website=uconn.edu |access-date=17 March 2022 }}</ref>
The convergents, expressed as {{math|{{sfrac|''x''|''y''}}}}, satisfy alternately the [[Pell's equation]]s<ref name=conrad>{{cite web |last1=Conrad |first1=Keith |title=Pell's Equation II |url=https://kconrad.math.uconn.edu/blurbs/ugradnumthy/pelleqn2.pdf |website=uconn.edu |access-date=17 March 2022 }}</ref>
Line 36: Line 34:
:<math>x_0 = 2.0,\quad x_1 = \frac{9}{4} = 2.25,\quad x_2 = \frac{161}{72} = 2.23611\dots,\quad x_3 = \frac{51841}{23184} = 2.2360679779 \ldots,\quad x_4 = \frac{5374978561}{2403763488} = 2.23606797749979 \ldots</math>
:<math>x_0 = 2.0,\quad x_1 = \frac{9}{4} = 2.25,\quad x_2 = \frac{161}{72} = 2.23611\dots,\quad x_3 = \frac{51841}{23184} = 2.2360679779 \ldots,\quad x_4 = \frac{5374978561}{2403763488} = 2.23606797749979 \ldots</math>


The Babylonian method is equivalent to [[Newton's method]] for root finding applied to the polynomial <math>x^2-5</math>. The Newton's method update, <math>x_{n+1} = x_n - f(x_n)/f'(x_n)</math>, is equal to <math>(x_n + 5/x_n)/2</math> when <math>f(x) = x^2 - 5</math>. The method therefore [[Rate_of_convergence#Q-convergence_definitions|converges quadratically]].
The Babylonian method is equivalent to [[Newton's method]] for [[root of a polynomial|root]] finding applied to the [[polynomial]] <math>x^2-5</math>. The Newton's method update, <math>x_{n+1} = x_n - f(x_n)/f'(x_n)</math>, is equal to <math>(x_n + 5/x_n)/2</math> when <math>f(x) = x^2 - 5</math>. The method therefore [[Rate_of_convergence#Q-convergence_definitions|converges quadratically]].


==Relation to the golden ratio and Fibonacci numbers==
==Relation to the golden ratio and Fibonacci numbers==
[[File:Golden Rectangle Construction.svg|thumb|The <math>\sqrt{5}/2</math> diagonal of a half square forms the basis for the geometrical construction of a [[golden rectangle]].]]
[[File:Golden Rectangle Construction.svg|thumb|The <math>\sqrt{5}/2</math> diagonal of a half [[square]] forms the basis for the geometrical construction of a [[golden rectangle]].]]
The [[golden ratio]] {{math|φ}} is the [[arithmetic mean]] of 1 and <math>\sqrt{5}</math>.<ref>Browne, Malcolm W. (July 30, 1985) [[New York Times]] ''Puzzling Crystals Plunge Scientists into Uncertainty.'' Section: C; Page 1. (Note: this is a widely cited article).</ref> The [[algebra]]ic relationship between <math>\sqrt{5}</math>, the golden ratio and the [[golden ratio#Golden ratio conjugate and powers|conjugate of the golden ratio]] ({{math|Φ {{=}} {{sfrac|–1|''φ''}} {{=}} 1 − ''φ''}}) is expressed in the following formulae:
The [[golden ratio]] {{math|φ}} is the [[arithmetic mean]] of 1 and <math>\sqrt{5}</math>.<ref>Browne, Malcolm W. (July 30, 1985) [[New York Times]] ''Puzzling Crystals Plunge Scientists into Uncertainty.'' Section: C; Page 1. (Note: this is a widely cited article).</ref> The [[algebra]]ic relationship between <math>\sqrt{5}</math>, the golden ratio and the [[golden ratio#Golden ratio conjugate and powers|conjugate of the golden ratio]] ({{math|Φ {{=}} {{sfrac|1|''φ''}} {{=}} 1 − ''φ''}}) is expressed in the following formulae:


: <math>
: <math>
Line 49: Line 47:
\end{align}
\end{align}
</math>
</math>
(See the section below for their geometrical interpretation as decompositions of a <math>\sqrt{5}</math> rectangle.)
(See the section below for their geometrical interpretation as decompositions of a <math>\sqrt{5}</math> [[rectangle]].)


<math>\sqrt{5}</math> then naturally figures in the closed form expression for the [[Fibonacci number]]s, a formula which is usually written in terms of the golden ratio:
<math>\sqrt{5}</math> then naturally figures in the closed form expression for the [[Fibonacci number]]s, a formula which is usually written in terms of the golden ratio:
Line 55: Line 53:
: <math>F(n) = \frac{\varphi^n-(1-\varphi)^n}{\sqrt 5}.</math>
: <math>F(n) = \frac{\varphi^n-(1-\varphi)^n}{\sqrt 5}.</math>


The quotient of <math>\sqrt{5}</math> and {{math|''φ''}} (or the product of <math>\sqrt{5}</math> and {{math|Φ}}), and its reciprocal, provide an interesting pattern of continued fractions and are related to the ratios between the Fibonacci numbers and the [[Lucas number]]s:<ref>[[Richard K. Guy]]: "The Strong Law of Small Numbers". ''[[American Mathematical Monthly]]'', vol. 95, 1988, pp. 675–712</ref>
The quotient of <math>\sqrt{5}</math> and {{math|''φ''}} (or the product of <math>\sqrt{5}</math> and {{math|Φ}}), and its [[multiplicative inverse|reciprocal]], provide an interesting pattern of continued fractions and are related to the ratios between the Fibonacci numbers and the [[Lucas number]]s:<ref>[[Richard K. Guy]]: "The Strong Law of Small Numbers". ''[[American Mathematical Monthly]]'', vol. 95, 1988, pp. 675–712</ref>


: <math>
: <math>
Line 66: Line 64:
</math>
</math>


The series of convergents to these values feature the series of Fibonacci numbers and the series of [[Lucas number]]s as numerators and denominators, and vice versa, respectively:
The series of convergents to these values feature the series of Fibonacci numbers and the series of Lucas numbers as numerators and denominators, and vice versa, respectively:


: <math>
: <math>
Line 75: Line 73:
</math>
</math>


In fact, the limit of the quotient of the <math>n^{th}</math> Lucas number <math>L_n</math> and the <math>n^{th}</math> Fibonacci number <math>F_n</math> is directly equal to the square root of <math>5</math>:
In fact, the [[limit of a sequence|limit]] of the quotient of the <math>n^{th}</math> Lucas number <math>L_n</math> and the <math>n^{th}</math> Fibonacci number <math>F_n</math> is directly equal to the square root of <math>5</math>:
: <math>\lim_{n\to\infty} \frac{L_n}{F_n}=\sqrt{5}.</math>
: <math>\lim_{n\to\infty} \frac{L_n}{F_n}=\sqrt{5}.</math>


Line 81: Line 79:
[[File:pinwheel 1.svg|250px|thumb|right|Decomposition of a <math>1\times 2</math> right triangle into five similar triangles, the basis for the aperiodic [[pinwheel tiling]].]]
[[File:pinwheel 1.svg|250px|thumb|right|Decomposition of a <math>1\times 2</math> right triangle into five similar triangles, the basis for the aperiodic [[pinwheel tiling]].]]
[[File:Root rectangles Hambidge 1920.png|250px|thumb|right|[[Jay Hambidge|Jay Hambidge's]] construction of "root rectangles"]]
[[File:Root rectangles Hambidge 1920.png|250px|thumb|right|[[Jay Hambidge|Jay Hambidge's]] construction of "root rectangles"]]
{{distances_between_double_cube_corners.svg}}


[[Geometry|Geometrically]], <math>\sqrt{5}</math> corresponds to the [[diagonal]] of a [[rectangle]] whose sides are of length [[1 (number)|1]] and [[2 (number)|2]], as is evident from the [[Pythagorean theorem]]. Such a rectangle can be obtained by halving a [[Square (geometry)|square]], or by placing two equal squares side by side. This can be used to subdivide a square grid into a tilted square grid with five times as many squares, forming the basis for a [[subdivision surface]].<ref>{{citation
[[Geometry|Geometrically]], <math>\sqrt{5}</math> corresponds to the [[diagonal]] of a rectangle whose sides are of length [[1 (number)|1]] and [[2 (number)|2]], as is evident from the [[Pythagorean theorem]]. Such a rectangle can be obtained by halving a square, or by placing two equal squares side by side. This can be used to subdivide a square grid into a tilted square grid with five times as many squares, forming the basis for a [[subdivision surface]].<ref>{{citation
| last1 = Ivrissimtzis | first1 = Ioannis P.
| last1 = Ivrissimtzis | first1 = Ioannis P.
| last2 = Dodgson | first2 = Neil A.
| last2 = Dodgson | first2 = Neil A.
Line 97: Line 96:
| series = Mathematics and Visualization
| series = Mathematics and Visualization
| title = Advances in multiresolution for geometric modelling: Papers from the workshop (MINGLE 2003) held in Cambridge, September 9–11, 2003
| title = Advances in multiresolution for geometric modelling: Papers from the workshop (MINGLE 2003) held in Cambridge, September 9–11, 2003
| year = 2005| isbn = 3-540-21462-3
| year = 2005}}</ref> Together with the algebraic relationship between <math>\sqrt{5}</math> and {{math|''φ''}}, this forms the basis for the geometrical construction of a [[golden rectangle]] from a square, and for the construction of a regular [[pentagon]] given its side (since the side-to-diagonal ratio in a regular pentagon is {{math|''φ''}}).
}}</ref> Together with the algebraic relationship between <math>\sqrt{5}</math> and {{math|''φ''}}, this forms the basis for the geometrical construction of a [[golden rectangle]] from a square, and for the construction of a [[regular polygon|regular]] [[pentagon]] given its side (since the side-to-diagonal ratio in a regular pentagon is {{math|''φ''}}).


Since two adjacent faces of a [[cube]] would unfold into a 1:2 rectangle, the ratio between the length of the cube's [[edge (geometry)|edge]] and the shortest distance from one of its [[vertex (geometry)|vertices]] to the opposite one, when traversing the cube ''surface'', is <math>\sqrt{5}</math>. By contrast, the shortest distance when traversing through the ''inside'' of the cube corresponds to the length of the cube diagonal, which is the [[square root of three]] times the edge.{{Citation needed|date=August 2007}}
Since two adjacent faces of a [[cube]] would unfold into a 1:2 rectangle, the ratio between the length of the cube's [[edge (geometry)|edge]] and the shortest distance from one of its [[vertex (geometry)|vertices]] to the opposite one, when traversing the cube ''surface'', is <math>\sqrt{5}</math>. By contrast, the shortest distance when traversing through the ''inside'' of the cube corresponds to the length of the cube diagonal, which is the [[square root of three]] times the edge.<ref name=":0">{{Cite book |last=Sutton |first=David |url=https://books.google.com/books?id=vgo7bTxDmIsC&pg=PA55 |title=Platonic & Archimedean Solids |publisher=Walker & Company |year=2002 |isbn=0802713866 |pages=55 |language=en}}</ref>


A rectangle with side proportions 1:<math>\sqrt{5}</math> is called a ''root-five rectangle'' and is part of the series of root rectangles, a subset of [[dynamic rectangle]]s, which are based on {{nowrap|1=<math>\sqrt{1}</math> (= 1), <math>\sqrt{2}</math>, <math>\sqrt{3}</math>, <math>\sqrt{4}</math> (= 2), <math>\sqrt{5}</math>...}} and successively constructed using the diagonal of the previous root rectangle, starting from a square.<ref>{{Citation | url = https://books.google.com/books?id=1KI0JVuWYGkC&q=intitle:%22Geometry+of+Design%22+%22root+5%22&pg=PA41 | author = Kimberly Elam | title = Geometry of Design: Studies in Proportion and Composition | place = New York | publisher = Princeton Architectural Press | year = 2001 | isbn = 1-56898-249-6 }}</ref> A root-5 rectangle is particularly notable in that it can be split into a square and two equal golden rectangles (of dimensions {{nowrap|{{math|Φ}} × 1}}), or into two golden rectangles of different sizes (of dimensions {{nowrap|{{math|Φ}} × 1}} and {{nowrap|1 × {{math|''φ''}}}}).<ref>{{Citation | title = The Elements of Dynamic Symmetry | author = Jay Hambidge | publisher = Courier Dover Publications | year = 1967 | isbn = 0-486-21776-0 | url = https://books.google.com/books?id=VYJK2F-dh2oC&q=%22root+five+rectangle%22++section+inauthor:hambidge&pg=PA26 }}</ref> It can also be decomposed as the union of two equal golden rectangles (of dimensions {{nowrap|1 × {{math|φ}}}}) whose intersection forms a square. All this is can be seen as the geometric interpretation of the algebraic relationships between <math>\sqrt{5}</math>, {{math|''φ''}} and {{math|Φ}} mentioned above. The root-5 rectangle can be constructed from a 1:2 rectangle (the root-4 rectangle), or directly from a square in a manner similar to the one for the golden rectangle shown in the illustration, but extending the arc of length <math>\sqrt{5}/2</math> to both sides.
A rectangle with side proportions 1:<math>\sqrt{5}</math> is called a ''root-five rectangle'' and is part of the series of root rectangles, a subset of [[dynamic rectangle]]s, which are based on {{nowrap|1=<math>\sqrt{1}</math> (= 1), <math>\sqrt{2}</math>, <math>\sqrt{3}</math>, <math>\sqrt{4}</math> (= 2), <math>\sqrt{5}</math>...}} and successively constructed using the diagonal of the previous root rectangle, starting from a square.<ref>{{Citation | url = https://books.google.com/books?id=1KI0JVuWYGkC&q=intitle:%22Geometry+of+Design%22+%22root+5%22&pg=PA41 | author = Kimberly Elam | title = Geometry of Design: Studies in Proportion and Composition | place = New York | publisher = Princeton Architectural Press | year = 2001 | isbn = 1-56898-249-6 }}</ref> A root-5 rectangle is particularly notable in that it can be split into a square and two equal golden rectangles (of dimensions {{nowrap|{{math|Φ}} × 1}}), or into two golden rectangles of different sizes (of dimensions {{nowrap|{{math|Φ}} × 1}} and {{nowrap|1 × {{math|''φ''}}}}).<ref>{{Citation | title = The Elements of Dynamic Symmetry | author = Jay Hambidge | publisher = Courier Dover Publications | year = 1967 | isbn = 0-486-21776-0 | url = https://books.google.com/books?id=VYJK2F-dh2oC&q=%22root+five+rectangle%22++section+inauthor:hambidge&pg=PA26 }}</ref> It can also be decomposed as the union of two equal golden rectangles (of dimensions {{nowrap|1 × {{math|φ}}}}) whose intersection forms a square. All this is can be seen as the geometric interpretation of the algebraic relationships between <math>\sqrt{5}</math>, {{math|''φ''}} and {{math|Φ}} mentioned above. The root-5 rectangle can be constructed from a 1:2 rectangle (the root-4 rectangle), or directly from a square in a manner similar to the one for the golden rectangle shown in the illustration, but extending the arc of length <math>\sqrt{5}/2</math> to both sides.


==Trigonometry==
==Trigonometry==
Like <math>\sqrt{2}</math> and <math>\sqrt{3}</math>, the square root of 5 appears extensively in the formulae for [[exact trigonometric constants]], including in the sines and cosines of every angle whose measure in degrees is divisible by 3 but not by 15.<ref>[http://www.jdawiseman.com/papers/easymath/surds_sin_cos.html Julian D. A. Wiseman, "Sin and cos in surds"]</ref> The simplest of these are
Like <math>\sqrt{2}</math> and <math>\sqrt{3}</math>, the square root of 5 appears extensively in the formulae for [[exact trigonometric constants]], including in the [[sine and cosine|sines and cosines]] of every [[angle]] whose measure in [[degree (angle)|degrees]] is [[divisible]] by 3 but not by 15.<ref>[http://www.jdawiseman.com/papers/easymath/surds_sin_cos.html Julian D. A. Wiseman, "Sin and cos in surds"]</ref> The simplest of these are
:<math>\begin{align}
:<math>\begin{align}
\sin\frac{\pi}{10} = \sin 18^\circ &= \tfrac{1}{4}(\sqrt5-1) = \frac{1}{\sqrt5+1}, \\[5pt]
\sin\frac{\pi}{10} = \sin 18^\circ &= \tfrac{1}{4}(\sqrt5-1) = \frac{1}{\sqrt5+1}, \\[5pt]
Line 111: Line 111:
\sin\frac{2\pi}{5} = \sin 72^\circ &= \tfrac{1}{4}\sqrt{2(5+\sqrt5)}\, . \end{align}</math>
\sin\frac{2\pi}{5} = \sin 72^\circ &= \tfrac{1}{4}\sqrt{2(5+\sqrt5)}\, . \end{align}</math>


As such the computation of its value is important for [[generating trigonometric tables]].{{Citation needed|date=August 2007}} Since <math>\sqrt{5}</math> is geometrically linked to half-square rectangles and to pentagons, it also appears frequently in formulae for the geometric properties of figures derived from them, such as in the formula for the volume of a [[dodecahedron]].{{Citation needed|date=August 2007}}
As such, the computation of its value is important for generating [[trigonometric tables]]. Since <math>\sqrt{5}</math> is geometrically linked to half-square rectangles and to pentagons, it also appears frequently in formulae for the geometric properties of figures derived from them, such as in the formula for the volume of a [[dodecahedron]].<ref name=":0" />


==Diophantine approximations==
==Diophantine approximations==
[[Hurwitz's theorem (number theory)|Hurwitz's theorem]] in [[Diophantine approximations]] states that every [[irrational number]] {{math|''x''}} can be approximated by infinitely many [[rational number]]s {{math|{{sfrac|''m''|''n''}}}} in [[lowest terms]] in such a way that
[[Hurwitz's theorem (number theory)|Hurwitz's theorem]] in [[Diophantine approximations]] states that every [[irrational number]] {{math|''x''}} can be approximated by [[infinite set|infinitely many]] [[rational number]]s {{math|{{sfrac|''m''|''n''}}}} in [[lowest terms]] in such a way that
:<math> \left|x - \frac{m}{n}\right| < \frac{1}{\sqrt{5}\,n^2} </math>
:<math> \left|x - \frac{m}{n}\right| < \frac{1}{\sqrt{5}\,n^2} </math>
and that <math>\sqrt{5}</math> is best possible, in the sense that for any larger constant than <math>\sqrt{5}</math>, there are some irrational numbers {{math|''x''}} for which only finitely many such approximations exist.<ref>{{Citation | last1=LeVeque | first1=William Judson | title=Topics in number theory | publisher=Addison-Wesley Publishing Co., Inc., Reading, Mass. |mr=0080682 | year=1956}}</ref>
and that <math>\sqrt{5}</math> is best possible, in the sense that for any larger constant than <math>\sqrt{5}</math>, there are some irrational numbers {{math|''x''}} for which only finitely many such approximations exist.<ref>{{Citation | last1=LeVeque | first1=William Judson | title=Topics in number theory | publisher=Addison-Wesley Publishing Co., Inc., Reading, Mass. |mr=0080682 | year=1956}}</ref>


Closely related to this is the theorem<ref name=khinchin/> that of any three consecutive [[convergent (continued fraction)|convergent]]s {{math|{{sfrac|''p''<sub>''i''</sub>|''q''<sub>''i''</sub>}}}}, {{math|{{sfrac|''p''<sub>''i''+1</sub>|''q''<sub>''i''+1</sub>}}}}, {{math|{{sfrac|''p''<sub>''i''+2</sub>|''q''<sub>''i''+2</sub>}}}}, of a number {{math|''α''}}, at least one of the three inequalities holds:
Closely related to this is the theorem<ref name=khinchin/> that of any three consecutive [[convergent (continued fraction)|convergent]]s {{math|{{sfrac|''p''<sub>''i''</sub>|''q''<sub>''i''</sub>}}}}, {{math|{{sfrac|''p''<sub>''i''+1</sub>|''q''<sub>''i''+1</sub>}}}}, {{math|{{sfrac|''p''<sub>''i''+2</sub>|''q''<sub>''i''+2</sub>}}}}, of a number {{math|''α''}}, at least one of the three inequalities holds:
:<math>\left|\alpha - {p_i\over q_i}\right| < {1\over \sqrt5 q_i^2}, \qquad
:<math>\left|\alpha - {p_i\over q_i}\right| < {1\over \sqrt5 q_i^2}, \quad
\left|\alpha - {p_{i+1}\over q_{i+1}}\right| < {1\over \sqrt5 q_{i+1}^2}, \qquad
\left|\alpha - {p_{i+1}\over q_{i+1}}\right| < {1\over \sqrt5 q_{i+1}^2}, \quad
\left|\alpha - {p_{i+2}\over q_{i+2}}\right| < {1\over \sqrt5 q_{i+2}^2}.</math>
\left|\alpha - {p_{i+2}\over q_{i+2}}\right| < {1\over \sqrt5 q_{i+2}^2}.</math>


And the <math>\sqrt{5}</math> in the denominator is the best bound possible since the convergents of the [[golden ratio]] make the difference on the left-hand side arbitrarily close to the value on the right-hand side. In particular, one cannot obtain a tighter bound by considering sequences of four or more consecutive convergents.<ref name=khinchin>{{Citation | last1=Khinchin | author-link=A. Ya. Khinchin | first1=Aleksandr Yakovlevich | title=Continued Fractions | publisher = University of Chicago Press, Chicago and London | year = 1964}}</ref>
And the <math>\sqrt{5}</math> in the denominator is the best bound possible since the convergents of the golden ratio make the difference on the left-hand side arbitrarily close to the value on the right-hand side. In particular, one cannot obtain a tighter bound by considering sequences of four or more consecutive convergents.<ref name=khinchin>{{Citation | last1=Khinchin | author-link=A. Ya. Khinchin | first1=Aleksandr Yakovlevich | title=Continued Fractions | publisher = University of Chicago Press, Chicago and London | year = 1964}}</ref>


==Algebra==
==Algebra==
Line 142: Line 142:
| title = Advances in Commutative Algebra: Dedicated to David F. Anderson
| title = Advances in Commutative Algebra: Dedicated to David F. Anderson
| year = 2019| arxiv = 1711.10842
| year = 2019| arxiv = 1711.10842
| isbn = 978-981-13-7027-4
| s2cid = 119142526
| s2cid = 119142526
}}</ref> The number 6 has two inequivalent factorizations within this ring:
}}</ref> The number 6 has two inequivalent factorizations within this ring:
: <math>6 = 2 \cdot 3 = (1 - \sqrt{-5})(1 + \sqrt{-5}). \, </math>
: <math>6 = 2 \cdot 3 = (1 - \sqrt{-5})(1 + \sqrt{-5}). \, </math>
On the other hand, the real [[Quadratic integer#Quadratic integer rings|quadratic integer]] ring <math>\Z[\tfrac{\sqrt{5}+1}2]</math>, adjoining the [[Golden ratio]] <math>\phi = \tfrac{\sqrt{5}+1}2</math>, was shown to be [[Euclidean domain|Euclidean]], and hence a unique factorization domain, by Dedekind.
The [[field (mathematics)|field]] <math>\mathbb{Q}[\sqrt{-5}],</math> like any other [[quadratic field]], is an [[abelian extension]] of the rational numbers. The [[Kronecker–Weber theorem]] therefore guarantees that the square root of five can be written as a rational linear combination of [[roots of unity]]:
:<math>\sqrt5 = e^{\frac{2\pi}{5}i} - e^{\frac{4\pi}{5}i} - e^{\frac{6\pi}{5}i} + e^{\frac{8\pi}{5}i}. \, </math>


The [[field (mathematics)|field]] <math>\mathbb{Q}[\sqrt{-5}],</math> like any other [[quadratic field]], is an [[abelian extension]] of the rational numbers. The [[Kronecker–Weber theorem]] therefore guarantees that the square root of five can be written as a rational [[linear combination]] of [[roots of unity]]:
:<math>\sqrt5 = e^{\frac{2\pi}{5}i} - e^{\frac{4\pi}{5}i} - e^{\frac{6\pi}{5}i} + e^{\frac{8\pi}{5}i}. \, </math>
==Identities of Ramanujan==
==Identities of Ramanujan==
The square root of 5 appears in various identities discovered by [[Srinivasa Ramanujan]] involving [[continued fraction]]s.<ref>{{Citation | last1=Ramanathan | first1=K. G. | title=On the Rogers-Ramanujan continued fraction |mr=813071 | year=1984 | journal= Proceedings of the Indian Academy of Sciences, Section A| issn=0253-4142 | volume=93 | issue=2 | pages=67–77 | doi=10.1007/BF02840651| s2cid=121808904 }}</ref><ref>{{Citation | url=http://mathworld.wolfram.com/RamanujanContinuedFractions.html | author=Eric W. Weisstein | title=Ramanujan Continued Fractions}} at [[MathWorld]]</ref>
The square root of 5 appears in various identities discovered by [[Srinivasa Ramanujan]] involving [[continued fraction]]s.<ref>{{Citation | last1=Ramanathan | first1=K. G. | title=On the Rogers-Ramanujan continued fraction |mr=813071 | year=1984 | journal= Proceedings of the Indian Academy of Sciences, Section A| issn=0253-4142 | volume=93 | issue=2 | pages=67–77 | doi=10.1007/BF02840651| s2cid=121808904 }}</ref><ref>{{Citation | url=http://mathworld.wolfram.com/RamanujanContinuedFractions.html | author=Eric W. Weisstein | title=Ramanujan Continued Fractions}} at [[MathWorld]]</ref>
Line 163: Line 165:


:<math>4\int_0^\infty\frac{xe^{-x\sqrt{5}}}{\cosh x}\,dx
:<math>4\int_0^\infty\frac{xe^{-x\sqrt{5}}}{\cosh x}\,dx
= \cfrac{1}{1 + \cfrac{1^2}{1 + \cfrac{1^2}{1 + \cfrac{2^2}{1 + \cfrac{2^2}{1 + \cfrac{3^2}{1 + \cfrac{3^2}{1 + {{} \atop \displaystyle \ddots} }}}}}}}.</math>
= \cfrac{1}{1 + \cfrac{1^2}{1 + \cfrac{1^2}{1 + \cfrac{2^2}{1 + \cfrac{2^2}{1 + \cfrac{3^2}{1 + \cfrac{3^2}{1 + {{} \atop \displaystyle \ddots} }}}}}}} \, .</math>


==See also==
==See also==

Latest revision as of 08:32, 25 June 2024

Square root of 5
RationalityIrrational
Representations
Decimal2.23606797749978969...
Algebraic form
Continued fraction

The square root of 5 is the positive real number that, when multiplied by itself, gives the prime number 5. It is more precisely called the principal square root of 5, to distinguish it from the negative number with the same property. This number appears in the fractional expression for the golden ratio. It can be denoted in surd form as:

It is an irrational algebraic number.[1] The first sixty significant digits of its decimal expansion are:

2.23606797749978969640917366873127623544061835961152572427089... (sequence A002163 in the OEIS).

which can be rounded down to 2.236 to within 99.99% accuracy. The approximation 161/72 (≈ 2.23611) for the square root of five can be used. Despite having a denominator of only 72, it differs from the correct value by less than 1/10,000 (approx. 4.3×10−5). As of January 2022, the numerical value in decimal of the square root of 5 has been computed to at least 2,250,000,000,000 digits.[2]

Rational approximations

[edit]

The square root of 5 can be expressed as the continued fraction

(sequence A040002 in the OEIS)

The successive partial evaluations of the continued fraction, which are called its convergents, approach :

Their numerators are 2, 9, 38, 161, … (sequence A001077 in the OEIS), and their denominators are 1, 4, 17, 72, … (sequence A001076 in the OEIS).

Each of these is a best rational approximation of ; in other words, it is closer to than any rational number with a smaller denominator.

The convergents, expressed as x/y, satisfy alternately the Pell's equations[3]

When is approximated with the Babylonian method, starting with x0 = 2 and using xn+1 = 1/2(xn + 5/xn), the nth approximant xn is equal to the 2nth convergent of the continued fraction:

The Babylonian method is equivalent to Newton's method for root finding applied to the polynomial . The Newton's method update, , is equal to when . The method therefore converges quadratically.

Relation to the golden ratio and Fibonacci numbers

[edit]
The diagonal of a half square forms the basis for the geometrical construction of a golden rectangle.

The golden ratio φ is the arithmetic mean of 1 and .[4] The algebraic relationship between , the golden ratio and the conjugate of the golden ratio (Φ = −1/φ = 1 − φ) is expressed in the following formulae:

(See the section below for their geometrical interpretation as decompositions of a rectangle.)

then naturally figures in the closed form expression for the Fibonacci numbers, a formula which is usually written in terms of the golden ratio:

The quotient of and φ (or the product of and Φ), and its reciprocal, provide an interesting pattern of continued fractions and are related to the ratios between the Fibonacci numbers and the Lucas numbers:[5]

The series of convergents to these values feature the series of Fibonacci numbers and the series of Lucas numbers as numerators and denominators, and vice versa, respectively:

In fact, the limit of the quotient of the Lucas number and the Fibonacci number is directly equal to the square root of :

Geometry

[edit]
Decomposition of a right triangle into five similar triangles, the basis for the aperiodic pinwheel tiling.
Jay Hambidge's construction of "root rectangles"
Distances between vertices of a double unit cube are square roots of the first six natural numbers, including the square root of 5 (√7 is not possible due to Legendre's three-square theorem)

Geometrically, corresponds to the diagonal of a rectangle whose sides are of length 1 and 2, as is evident from the Pythagorean theorem. Such a rectangle can be obtained by halving a square, or by placing two equal squares side by side. This can be used to subdivide a square grid into a tilted square grid with five times as many squares, forming the basis for a subdivision surface.[6] Together with the algebraic relationship between and φ, this forms the basis for the geometrical construction of a golden rectangle from a square, and for the construction of a regular pentagon given its side (since the side-to-diagonal ratio in a regular pentagon is φ).

Since two adjacent faces of a cube would unfold into a 1:2 rectangle, the ratio between the length of the cube's edge and the shortest distance from one of its vertices to the opposite one, when traversing the cube surface, is . By contrast, the shortest distance when traversing through the inside of the cube corresponds to the length of the cube diagonal, which is the square root of three times the edge.[7]

A rectangle with side proportions 1: is called a root-five rectangle and is part of the series of root rectangles, a subset of dynamic rectangles, which are based on (= 1), , , (= 2), ... and successively constructed using the diagonal of the previous root rectangle, starting from a square.[8] A root-5 rectangle is particularly notable in that it can be split into a square and two equal golden rectangles (of dimensions Φ × 1), or into two golden rectangles of different sizes (of dimensions Φ × 1 and 1 × φ).[9] It can also be decomposed as the union of two equal golden rectangles (of dimensions 1 × φ) whose intersection forms a square. All this is can be seen as the geometric interpretation of the algebraic relationships between , φ and Φ mentioned above. The root-5 rectangle can be constructed from a 1:2 rectangle (the root-4 rectangle), or directly from a square in a manner similar to the one for the golden rectangle shown in the illustration, but extending the arc of length to both sides.

Trigonometry

[edit]

Wie and , the square root of 5 appears extensively in the formulae for exact trigonometric constants, including in the sines and cosines of every angle whose measure in degrees is divisible by 3 but not by 15.[10] The simplest of these are

As such, the computation of its value is important for generating trigonometric tables. Since is geometrically linked to half-square rectangles and to pentagons, it also appears frequently in formulae for the geometric properties of figures derived from them, such as in the formula for the volume of a dodecahedron.[7]

Diophantine approximations

[edit]

Hurwitz's theorem in Diophantine approximations states that every irrational number x can be approximated by infinitely many rational numbers m/n in lowest terms in such a way that

and that is best possible, in the sense that for any larger constant than , there are some irrational numbers x for which only finitely many such approximations exist.[11]

Closely related to this is the theorem[12] that of any three consecutive convergents pi/qi, pi+1/qi+1, pi+2/qi+2, of a number α, at least one of the three inequalities holds:

And the in the denominator is the best bound possible since the convergents of the golden ratio make the difference on the left-hand side arbitrarily close to the value on the right-hand side. In particular, one cannot obtain a tighter bound by considering sequences of four or more consecutive convergents.[12]

Algebra

[edit]

The ring contains numbers of the form , where a and b are integers and is the imaginary number . This ring is a frequently cited example of an integral domain that is not a unique factorization domain.[13] The number 6 has two inequivalent factorizations within this ring:

On the other hand, the real quadratic integer ring , adjoining the Golden ratio , was shown to be Euclidean, and hence a unique factorization domain, by Dedekind.

The field like any other quadratic field, is an abelian extension of the rational numbers. The Kronecker–Weber theorem therefore guarantees that the square root of five can be written as a rational linear combination of roots of unity:

Identities of Ramanujan

[edit]

The square root of 5 appears in various identities discovered by Srinivasa Ramanujan involving continued fractions.[14][15]

For example, this case of the Rogers–Ramanujan continued fraction:



See also

[edit]

References

[edit]
  1. ^ Dauben, Joseph W. (June 1983) Scientific American Georg Cantor and the origins of transfinite set theory. Volume 248; Page 122.
  2. ^ Yee, Alexander. "Records Set by y-cruncher".
  3. ^ Conrad, Keith. "Pell's Equation II" (PDF). uconn.edu. Retrieved 17 March 2022.
  4. ^ Browne, Malcolm W. (July 30, 1985) New York Times Puzzling Crystals Plunge Scientists into Uncertainty. Section: C; Page 1. (Note: this is a widely cited article).
  5. ^ Richard K. Guy: "The Strong Law of Small Numbers". American Mathematical Monthly, vol. 95, 1988, pp. 675–712
  6. ^ Ivrissimtzis, Ioannis P.; Dodgson, Neil A.; Sabin, Malcolm (2005), "-subdivision", in Dodgson, Neil A.; Floater, Michael S.; Sabin, Malcolm A. (eds.), Advances in multiresolution for geometric modelling: Papers from the workshop (MINGLE 2003) held in Cambridge, September 9–11, 2003, Mathematics and Visualization, Berlin: Springer, pp. 285–299, doi:10.1007/3-540-26808-1_16, ISBN 3-540-21462-3, MR 2112357
  7. ^ a b Sutton, David (2002). Platonic & Archimedean Solids. Walker & Company. p. 55. ISBN 0802713866.
  8. ^ Kimberly Elam (2001), Geometry of Design: Studies in Proportion and Composition, New York: Princeton Architectural Press, ISBN 1-56898-249-6
  9. ^ Jay Hambidge (1967), The Elements of Dynamic Symmetry, Courier Dover Publications, ISBN 0-486-21776-0
  10. ^ Julian D. A. Wiseman, "Sin and cos in surds"
  11. ^ LeVeque, William Judson (1956), Topics in number theory, Addison-Wesley Publishing Co., Inc., Reading, Mass., MR 0080682
  12. ^ a b Khinchin, Aleksandr Yakovlevich (1964), Continued Fractions, University of Chicago Press, Chicago and London
  13. ^ Chapman, Scott T.; Gotti, Felix; Gotti, Marly (2019), "How do elements really factor in ?", in Badawi, Ayman; Coykendall, Jim (eds.), Advances in Commutative Algebra: Dedicated to David F. Anderson, Trends in Mathematics, Singapore: Birkhäuser/Springer, pp. 171–195, arXiv:1711.10842, doi:10.1007/978-981-13-7028-1_9, ISBN 978-981-13-7027-4, MR 3991169, S2CID 119142526, Most undergraduate level abstract algebra texts use as an example of an integral domain which is not a unique factorization domain
  14. ^ Ramanathan, K. G. (1984), "On the Rogers-Ramanujan continued fraction", Proceedings of the Indian Academy of Sciences, Section A, 93 (2): 67–77, doi:10.1007/BF02840651, ISSN 0253-4142, MR 0813071, S2CID 121808904
  15. ^ Eric W. Weisstein, Ramanujan Continued Fractions at MathWorld