dyadic rational

{{good article}}

{{Short description|Fraction with denominator a power of two}}

File:Dyadic rational.svg

In mathematics, a dyadic rational or binary rational is a number that can be expressed as a fraction whose denominator is a power of two. For example, 1/2, 3/2, and 3/8 are dyadic rationals, but 1/3 is not. These numbers are important in computer science because they are the only ones with finite binary representations. Dyadic rationals also have applications in weights and measures, musical time signatures, and early mathematics education. They can accurately approximate any real number.

The sum, difference, or product of any two dyadic rational numbers is another dyadic rational number, given by a simple formula. However, division of one dyadic rational number by another does not always produce a dyadic rational result. Mathematically, this means that the dyadic rational numbers form a ring, lying between the ring of integers and the field of rational numbers. This ring may be denoted \Z[\tfrac12].

In advanced mathematics, the dyadic rational numbers are central to the constructions of the dyadic solenoid, Minkowski's question-mark function, Daubechies wavelets, Thompson's group, Prüfer 2-group, surreal numbers, and fusible numbers. These numbers are order-isomorphic to the rational numbers; they form a subsystem of the 2-adic numbers as well as of the reals, and can represent the fractional parts of 2-adic numbers. Functions from natural numbers to dyadic rationals have been used to formalize mathematical analysis in reverse mathematics.

Applications

=In measurement=

{{CSS image crop|Image=Kitchen weights metric imperial.jpg|bSize=427|cWidth=256|oLeft=165|oTop=27|cHeight=256|Description=Kitchen weights measuring dyadic fractions of a pound from {{nowrap|2 lb}} down to 1/64 lb (1/4 oz)|Alt=Photo of metal disks used as kitchen weights}}

Many traditional systems of weights and measures are based on the idea of repeated halving, which produces dyadic rationals when measuring fractional amounts of units. The inch is customarily subdivided in dyadic rationals rather than using a decimal subdivision.{{r|rudman}} The customary divisions of the gallon into half-gallons, quarts, pints, and cups are also dyadic.{{r|barnes}} The ancient Egyptians used dyadic rationals in measurement, with denominators up to 64.{{r|curtis}} Similarly, systems of weights from the Indus Valley civilisation are for the most part based on repeated halving; anthropologist Heather M.-L. Miller writes that "halving is a relatively simple operation with beam balances, which is likely why so many weight systems of this time period used binary systems".{{r|miller}}

=In computing=

Dyadic rationals are central to computer science as a type of fractional number that many computers can manipulate directly.{{r|reswel}} In particular, as a data type used by computers, floating-point numbers are often defined as integers multiplied by positive or negative powers of two. The numbers that can be represented precisely in a floating-point format, such as the IEEE floating-point datatypes, are called its representable numbers. For most floating-point representations, the representable numbers are a subset of the dyadic rationals.{{r|kirk-hwu}} The same is true for fixed-point datatypes, which also use powers of two implicitly in the majority of cases.{{r|kneusel}} Because of the simplicity of computing with dyadic rationals, they are also used for exact real computing using interval arithmetic,{{r|vdh}} and are central to some theoretical models of computable numbers.{{r|ko|zr|asz}}

Generating a random variable from random bits, in a fixed amount of time, is possible only when the variable has finitely many outcomes whose probabilities are all dyadic rational numbers. For random variables whose probabilities are not dyadic, it is necessary either to approximate their probabilities by dyadic rationals, or to use a random generation process whose time is itself random and unbounded.{{r|jvv}}

=In music=

{{Image frame|content= { \new PianoStaff << \new Staff \relative c { \set Staff.midiInstrument = #"violin" \clef treble \tempo 8 = 126 \time 3/16 r16 \f-! r16\fermata | \time 2/16 r -! \time 3/16 r 8-! | r16 8-! | \time 2/8 16-! ->-![ -! -!] } \new Staff \relative c { \set Staff.midiInstrument = #"violin" \clef bass \time 3/16 d,16-! ees,>-! r\fermata | \time 2/16 -! ees,>-! | \time 3/16 d16-! 8-! | r16 8-! | \time 2/8 d16\sf-! -!->[ -! -!] } >> } |caption=Five bars from Igor Stravinski's The Rite of Spring''
showing time signatures {{music|time|3|16}}, {{music|time|2|16}}, {{music|time|3|16}}, and {{music|time|2|8}}}}

Time signatures in Western musical notation traditionally are written in a form resembling fractions (for example: {{music|time|2|2}}, {{music|time|4|4}}, or {{music|time|6|8}}),{{r|jon-pea}} although the horizontal line of the musical staff that separates the top and bottom number is usually omitted when writing the signature separately from its staff. As fractions they are generally dyadic,{{r|libbey}} although non-dyadic time signatures have also been used.{{r|yanakiev}} The numeric value of the signature, interpreted as a fraction, describes the length of a measure as a fraction of a whole note. Its numerator describes the number of beats per measure, and the denominator describes the length of each beat.{{r|jon-pea|libbey}}

=In mathematics education=

In theories of childhood development of the concept of a fraction based on the work of Jean Piaget, fractional numbers arising from halving and repeated halving are among the earliest forms of fractions to develop.{{r|hie-ton}} This stage of development of the concept of fractions has been called "algorithmic halving".{{r|pot-saw}} Addition and subtraction of these numbers can be performed in steps that only involve doubling, halving, adding, and subtracting integers. In contrast, addition and subtraction of more general fractions involves integer multiplication and factorization to reach a common denominator. Therefore, dyadic fractions can be easier for students to calculate with than more general fractions.{{r|wells}}

Definitions and arithmetic

The dyadic numbers are the rational numbers that result from dividing an integer by a power of two.{{r|ko}} A rational number p/q in simplest terms is a dyadic rational when q is a power of two.{{r|uit-bar}} Another equivalent way of defining the dyadic rationals is that they are the real numbers that have a terminating binary representation.{{r|ko}}

Addition, subtraction, and multiplication of any two dyadic rationals produces another dyadic rational, according to the following formulas:{{r|kreb-spit}}

: \begin{align}

\frac{a}{2^b}+\frac{c}{2^d}&=\frac{2^{d - \min(b,d)}a + 2^{b - \min(b,d)}c} {2^{\max(b,d)} } \\[6px]

\frac{a}{2^b}-\frac{c}{2^d}&=\frac{2^{d - \min(b,d)}a - 2^{b - \min(b,d)}c} {2^{\max(b,d)} } \\[6px]

\frac{a}{2^b}\cdot \frac{c}{2^d} &= \frac{ a c}{2^{b+d}}

\end{align}

However, the result of dividing one dyadic rational by another is not necessarily a dyadic rational.{{r|oconnor}} For instance, 1 and 3 are both dyadic rational numbers, but 1/3 is not.

Additional properties

File:Dyadic sqrt2 approximation.svg (\sqrt{2}\approx 1.4142), found by rounding to the nearest smaller integer multiple of 1/2^i for i=0,1,2,\dots The height of the pink region above each approximation is its error.]]

File:Bad dyadic approximation.svg outside the circles, all dyadic rational approximations have larger errors.]]

Every integer, and every half-integer, is a dyadic rational.{{r|sabin}} They both meet the definition of being an integer divided by a power of two: every integer is an integer divided by one (the zeroth power of two), and every half-integer is an integer divided by two.

Every real number can be arbitrarily closely approximated by dyadic rationals. In particular, for a real number x, consider the dyadic rationals of the form {{nowrap|\lfloor 2^i x \rfloor / 2^i,}} where i can be any integer and \lfloor\dots\rfloor denotes the floor function that rounds its argument down to an integer. These numbers approximate x from below to within an error of 1/2^i, which can be made arbitrarily small by choosing i to be arbitrarily large. For a fractal subset of the real numbers, this error bound is within a constant factor of optimal: for these numbers, there is no approximation n/2^i with error smaller than a constant times 1/2^i.More precisely, for small positive values of \varepsilon, the set of real numbers that have no approximation n/2^i with error smaller than a constant times \varepsilon/2^i forms a Cantor set whose Hausdorff dimension, as a function of \varepsilon, goes to one as \varepsilon approaches zero. The illustration shows this set for \varepsilon=\tfrac16.{{r|nilsson}} The existence of accurate dyadic approximations can be expressed by saying that the set of all dyadic rationals is dense in the real line.{{r|sabin}} More strongly, this set is uniformly dense, in the sense that the dyadic rationals with denominator 2^i are uniformly spaced on the real line.{{r|ko}}

The dyadic rationals are precisely those numbers possessing finite binary expansions.{{r|ko}} Their binary expansions are not unique; there is one finite and one infinite representation of each dyadic rational other than 0 (ignoring terminal 0s). For example, 0.112 = 0.10111...2, giving two different representations for 3/4.{{r|ko|kac}} The dyadic rationals are the only numbers whose binary expansions are not unique.{{r|ko}}

In advanced mathematics

=Algebraic structure=

Because they are closed under addition, subtraction, and multiplication, but not division, the dyadic rationals are a ring but not a field.{{r|pollen}} The ring of dyadic rationals may be denoted \Z[\tfrac12], meaning that it can be generated by evaluating polynomials with integer coefficients, at the argument 1/2.{{r|bajnok}} As a ring, the dyadic rationals are a subring of the rational numbers, and an overring of the integers.{{r|est-ohm}} Algebraically, this ring is the localization of the integers with respect to the set of powers of two.{{r|lucy}}

As well as forming a subring of the real numbers, the dyadic rational numbers form a subring of the 2-adic numbers, a system of numbers that can be defined from binary representations that are finite to the right of the binary point but may extend infinitely far to the left. The 2-adic numbers include all rational numbers, not just the dyadic rationals. Embedding the dyadic rationals into the 2-adic numbers does not change the arithmetic of the dyadic rationals, but it gives them a different topological structure than they have as a subring of the real numbers. As they do in the reals, the dyadic rationals form a dense subset of the 2-adic numbers,{{r|manners}} and are the set of 2-adic numbers with finite binary expansions. Every 2-adic number can be decomposed into the sum of a 2-adic integer and a dyadic rational; in this sense, the dyadic rationals can represent the fractional parts of 2-adic numbers, but this decomposition is not unique.{{r|robert}}

Addition of dyadic rationals modulo 1 (the quotient group \Z[\tfrac12]/\Z of the dyadic rationals by the integers) forms the Prüfer 2-group.{{r|cor-guy-pit}}

=Dyadic solenoid=

Considering only the addition and subtraction operations of the dyadic rationals gives them the structure of an additive abelian group. Pontryagin duality is a method for understanding abelian groups by constructing dual groups, whose elements are characters of the original group, group homomorphisms to the multiplicative group of the complex numbers, with pointwise multiplication as the dual group operation. The dual group of the additive dyadic rationals, constructed in this way, can also be viewed as a topological group. It is called the dyadic solenoid, and is isomorphic to the topological product of the real numbers and 2-adic numbers, quotiented by the diagonal embedding of the dyadic rationals into this product.{{r|manners}} It is an example of a protorus, a solenoid, and an indecomposable continuum.{{r|nadler}}

=Functions with dyadic rationals as distinguished points=

{{multiple image|total_width=480

|image1=Minkowski question mark.svg|caption1=Minkowski's question-mark function maps rational numbers to dyadic rationals|alt1=Graph of the question mark function

|image2=Daubechies4-functions.svg|caption2=A Daubechies wavelet, showing points of non-smoothness at dyadic rationals|alt2=Graph of the scaling and wavelet functions of Daubechies' wavelet

}}

Because they are a dense subset of the real numbers, the dyadic rationals, with their numeric ordering, form a dense order. As with any two unbounded countable dense linear orders, by Cantor's isomorphism theorem,{{r|bmmn}} the dyadic rationals are order-isomorphic to the rational numbers. In this case, Minkowski's question-mark function provides an order-preserving bijection between the set of all rational numbers and the set of dyadic rationals.{{r|girgensohn}}

The dyadic rationals play a key role in the analysis of Daubechies wavelets, as the set of points where the scaling function of these wavelets is non-smooth.{{r|pollen}} Similarly, the dyadic rationals parameterize the discontinuities in the boundary between stable and unstable points in the parameter space of the Hénon map.{{r|cvi-gun-pro}}

The set of piecewise linear homeomorphisms from the unit interval to itself that have power-of-2 slopes and dyadic-rational breakpoints forms a group under the operation of function composition. This is Thompson's group, the first known example of an infinite but finitely presented simple group.{{r|brin}} The same group can also be represented by an action on rooted binary trees,{{r|can-flo}} or by an action on the dyadic rationals within the unit interval.{{r|cor-guy-pit}}

References

{{reflist|refs=

{{cite OEIS|A188545|mode=cs2}}

{{citation

| last1 = Ambos-Spies | first1 = Klaus

| last2 = Zheng | first2 = Xizhong

| editor1-last = Manea | editor1-first = Florin

| editor2-last = Martin | editor2-first = Barnaby

| editor3-last = Paulusma | editor3-first = Daniël

| editor4-last = Primiero | editor4-first = Giuseppe

| contribution = On the differences and sums of strongly computably enumerable real numbers

| doi = 10.1007/978-3-030-22996-2_27

| mr = 3981892

| pages = 310–322

| publisher = Springer | location = Cham

| series = Lecture Notes in Computer Science

| title = Computing with Foresight and Industry: 15th Conference on Computability in Europe, CiE 2019, Durham, UK, July 15–19, 2019, Proceedings

| volume = 11558

| year = 2019| isbn = 978-3-030-22995-5

| s2cid = 195795492

}}

{{citation

| last = Bajnok | first = Béla

| doi = 10.1007/978-1-4614-6636-9

| location = New York

| page = 186

| publisher = Springer

| title = An Invitation to Abstract Mathematics

| series = Undergraduate Texts in Mathematics

| year = 2013| isbn = 978-1-4614-6635-2

}}

{{citation

| last = Barnes | first = John

| doi = 10.1007/978-3-319-46831-0

| publisher = Springer International Publishing

| quote = Note that binary measures (2, 4, 8, 16) are very common indeed. This is particularly obvious with volumes.

| title = Nice Numbers

| url = https://books.google.com/books?id=6l2XDQAAQBAJ&pg=PA10

| year = 2016| isbn = 978-3-319-46830-3

}}

{{citation

| last1 = Bhattacharjee | first1 = Meenaxi

| last2 = Macpherson | first2 = Dugald

| last3 = Möller | first3 = Rögnvaldur G.

| last4 = Neumann | first4 = Peter M. | author4-link = Peter M. Neumann

| contribution = Rational numbers

| doi = 10.1007/978-93-80250-91-5_9

| isbn = 81-85931-13-5

| mr = 1632579

| pages = 77–86

| publisher = Springer-Verlag | location = Berlin

| series = Texts and Readings in Mathematics

| title = Notes on Infinite Permutation Groups

| volume = 12

| year = 1997}}

{{citation

| last = Brin | first = Matthew G.

| arxiv = math/9705205

| doi = 10.1112/S0024610799007905

| issue = 2

| journal = Journal of the London Mathematical Society

| mr = 1724861

| pages = 449–460

| series = Second Series

| title = The ubiquity of Thompson's group {{mvar|F}} in groups of piecewise linear homeomorphisms of the unit interval

| volume = 60

| year = 1999| s2cid = 14490692

}}

{{citation

| last1 = Cannon | first1 = J. W. | author1-link = James W. Cannon

| last2 = Floyd | first2 = W. J. | author2-link = William Floyd (mathematician)

| issue = 8

| journal = Notices of the American Mathematical Society

| mr = 2856142

| pages = 1112–1113

| title = What is … Thompson's group?

| url = https://www.ams.org/notices/201108/rtx110801112p.pdf

| volume = 58

| year = 2011}}

{{citation

| last1 = de Cornulier | first1 = Yves

| last2 = Guyot | first2 = Luc

| last3 = Pitsch | first3 = Wolfgang

| arxiv = math/0511714

| doi = 10.1016/j.jalgebra.2006.02.012

| issue = 1

| journal = Journal of Algebra

| mr = 2278053

| pages = 254–277

| title = On the isolated points in the space of groups

| url = https://www.normalesup.org/~cornulier/CoGuPi.pdf

| volume = 307

| year = 2007 | s2cid = 11566447

}}

{{citation

| last1 = Cvitanović | first1 = Predrag

| last2 = Gunaratne | first2 = Gemunu H.

| last3 = Procaccia | first3 = Itamar

| doi = 10.1103/PhysRevA.38.1503

| issue = 3

| journal = Physical Review A

| mr = 970237

| pages = 1503–1520

| series = Third Series

| title = Topological and metric properties of Hénon-type strange attractors

| volume = 38

| year = 1988| pmid = 9900529

| bibcode = 1988PhRvA..38.1503C

}}

{{citation

| last = Conway | first = J. H. | author-link = John Horton Conway

| edition = Second

| isbn = 1-56881-127-6

| mr = 1803095

| publisher = A K Peters | location = Natick, Massachusetts

| title = On Numbers and Games | title-link = On Numbers and Games

| year = 2001}}; for the dyadic rationals, see "The numbers \tfrac{1}{4}, \tfrac{3}{4}, 1\,\tfrac{1}{2}, 3, and so on", pp. 10–12

{{citation

| title = Concept of the exponential law prior to 1900

| last = Curtis | first = Lorenzo J.

| journal = American Journal of Physics

| year = 1978

| volume = 46

| issue = 9

| pages = 896–906

| doi = 10.1119/1.11512| bibcode = 1978AmJPh..46..896C }}

In the notation of Estes and Ohm for rings that are both subrings of \Q and overrings of \Z, the dyadic rationals are the ring \Z_{\{2\}}. See section 7 of {{citation

| last1 = Estes | first1 = Dennis

| last2 = Ohm | first2 = Jack

| doi = 10.1016/0021-8693(67)90075-0 | doi-access = free

| journal = Journal of Algebra

| mr = 217052

| pages = 343–362

| title = Stable range in commutative rings

| url = https://core.ac.uk/download/pdf/82241374.pdf

| volume = 7

| year = 1967| issue = 3

}}

{{citation

| last1 = Erickson | first1 = Jeff

| last2 = Nivasch | first2 = Gabriel

| last3 = Xu | first3 = Junyan

| arxiv = 2003.14342

| contribution = Fusible numbers and Peano arithmetic

| contribution-url = https://jeffe.cs.illinois.edu/pubs/fusible.html

| date = June 2021

| doi = 10.1109/lics52264.2021.9470703

| pages = 1–13

| publisher = IEEE

| title = Proceedings of the 36th Annual ACM/IEEE Symposium on Logic in Computer Science (LICS 2021)| isbn = 978-1-6654-4895-6

| s2cid = 214727767

}}

{{citation

| last1 = Fernandes | first1 = António M.

| last2 = Ferreira | first2 = Fernando

| contribution = Basic applications of weak König's lemma in feasible analysis

| contribution-url = https://webpages.ciencias.ulisboa.pt/~fjferreira/basic.pdf

| mr = 2185433

| pages = 175–188

| publisher = Association for Symbolic Logic | location = La Jolla, California

| series = Lecture Notes in Logic

| title = Reverse Mathematics 2001

| volume = 21

| year = 2005}}

{{citation

| last = Flanigan | first = J. A.

| doi = 10.1007/BF01771244

| issue = 1

| journal = International Journal of Game Theory

| mr = 665515

| pages = 21–25

| title = A complete analysis of black-white Hackendot

| volume = 11

| year = 1982| s2cid = 119964871

}}

{{citation

| last = Girgensohn | first = Roland

| doi = 10.1006/jmaa.1996.0370 | doi-access = free

| issue = 1

| journal = Journal of Mathematical Analysis and Applications

| mr = 1412484

| pages = 127–141

| title = Constructing singular functions via Farey fractions

| volume = 203

| year = 1996}}

{{citation

| last1 = Hiebert | first1 = James

| last2 = Tonnessen | first2 = Lowell H.

| date = November 1978

| doi = 10.2307/748774

| issue = 5

| journal = Journal for Research in Mathematics Education

| jstor = 748774

| pages = 374–378

| title = Development of the fraction concept in two physical contexts: an exploratory investigation

| volume = 9}}

{{citation

| last1 = Jones | first1 = Shelly M. | author1-link = Shelly M. Jones

| last2 = Pearson | first2 = Dunn

| date = May 2013

| doi = 10.1177/1048371313486478

| issue = 1

| journal = General Music Today

| pages = 18–23

| title = Music: highly engaged students connect music to math

| volume = 27| s2cid = 220604326 }}

{{citation

| last1 = Jerrum | first1 = Mark R. | author1-link = Mark Jerrum

| last2 = Valiant | first2 = Leslie G. | author2-link = Leslie Valiant

| last3 = Vazirani | first3 = Vijay V. | author3-link = Vijay Vazirani

| doi = 10.1016/0304-3975(86)90174-X | doi-access = free

| issue = 2–3

| journal = Theoretical Computer Science

| mr = 855970

| pages = 169–188

| title = Random generation of combinatorial structures from a uniform distribution

| volume = 43

| year = 1986}}

{{citation

| last = Kac | first = Mark | author-link = Mark Kac

| mr = 0110114

| pages = 2–3

| publisher = John Wiley & Sons for the Mathematical Association of America | location = New York

| series = Carus Mathematical Monographs

| title = Statistical Independence in Probability, Analysis and Number Theory

| volume = 12

| year = 1959}}

{{citation

| last1 = Kirk | first1 = David B. | author1-link = David Kirk (scientist)

| last2 = Hwu | first2 = Wen-mei W. | author2-link = Wen-mei Hwu

| contribution = 7.2 Representable numbers

| contribution-url = https://books.google.com/books?id=E0Uaag8qicUC&pg=PA155

| edition = 2nd

| isbn = 978-0-12-391418-7

| pages = 155–159

| publisher = Morgan Kaufmann

| title = Programming Massively Parallel Processors: A Hands-on Approach

| year = 2013}}

{{citation

| last = Kneusel | first = Ronald T.

| contribution = Chapter 6: Fixed-point numbers

| doi = 10.1007/978-3-319-50508-4_6

| edition = 2nd

| pages = 183–214

| publisher = Springer International Publishing

| title = Numbers and Computers

| year = 2017}}

{{citation

| last = Ko | first = Ker-I

| doi = 10.1007/978-1-4684-6802-1

| isbn = 0-8176-3586-6

| location = Boston, Massachusetts

| mr = 1137517

| pages = 41–43

| publisher = Birkhäuser Boston, Inc.

| series = Progress in Theoretical Computer Science

| title = Complexity Theory of Real Functions

| url = https://books.google.com/books?id=QJnVBwAAQBAJ&pg=PA41

| year = 1991| s2cid = 11758381

}}

Equivalent formulas to these, written in the language of the Coq interactive theorem prover, are given by {{citation

| last1 = Krebbers | first1 = Robbert

| last2 = Spitters | first2 = Bas

| arxiv = 1106.3448

| doi = 10.2168/LMCS-9(1:1)2013

| issue = 1

| journal = Logical Methods in Computer Science

| mr = 3029087

| page = 1:01, 27

| title = Type classes for efficient exact real arithmetic in Coq

| volume = 9

| year = 2013| s2cid = 218627153

}}

{{citation

| last = Libbey | first = Theodore

| contribution = Time signature

| contribution-url = https://books.google.com/books?id=lE8R56pksxEC&pg=PA873

| isbn = 978-0-7611-2072-8

| page = 873

| publisher = Workman Publishing

| title = The NPR Listener's Encyclopedia of Classical Music

| year = 2006}}

{{citation

| last = Lucyshyn-Wright | first = Rory B. B.

| arxiv = 1603.03351

| doi = 10.1007/s10485-017-9496-9

| issue = 2

| journal = Applied Categorical Structures

| mr = 3770912

| pages = 369–400

| title = Convex spaces, affine spaces, and commutants for algebraic theories

| volume = 26

| year = 2018| s2cid = 3743682

}}

{{citation

| last = Manners | first = Freddie

| arxiv = 1305.1514

| doi = 10.1007/s00222-014-0571-7

| issue = 1

| journal = Inventiones Mathematicae

| mr = 3402799

| pages = 239–270

| title = A solution to the pyjama problem

| volume = 202

| year = 2015| bibcode = 2015InMat.202..239M

| s2cid = 119148680

}}; see section 6.2.1, "A model case: \widehat{\Z[1/2]}", pp. 255–257.

{{citation

| last = Mauldon | first = J. G.

| doi = 10.2307/2320870

| issue = 7

| journal = The American Mathematical Monthly

| jstor = 2320870

| mr = 503877

| pages = 575–578

| title = Num, a variant of Nim with no first-player win

| volume = 85

| year = 1978}}

{{citation

| last = Miller | first = Heather M.-L.

| editor1-last = Abraham | editor1-first = Shinu Anna

| editor2-last = Gullapalli | editor2-first = Praveena

| editor3-last = Raczek | editor3-first = Teresa P.

| editor4-last = Rizvi | editor4-first = Uzma Z. | editor4-link = Uzma Z. Rizvi

| contribution = Weighty matters: evidence for unity and regional diversity from the Indus civilization weights

| date = 2013

| doi = 10.4324/9781315431857

| isbn = 978-1-59874-686-0

| pages = 161–177

| publisher = Left Coast Press

| title = Connections and Complexity: New Approaches to the Archaeology of South Asia}}; see in particular [https://books.google.com/books?id=ddRmDAAAQBAJ&pg=PA166 p. 166]

{{citation

| title = The indecomposability of the dyadic solenoid

| jstor = 2319174

| last = Nadler | first = S. B. Jr.

| journal = The American Mathematical Monthly

| year = 1973

| volume = 80

| issue = 6

| pages = 677–679

| doi = 10.2307/2319174}}

{{citation

| last = Nilsson | first = Johan

| doi = 10.1007/s11856-009-0042-9 | doi-access=free

| journal = Israel Journal of Mathematics

| mr = 2520103

| pages = 93–110

| title = On numbers badly approximable by dyadic rationals

| volume = 171

| year = 2009}}

{{citation

| last = O'Connor | first = Russell

| doi = 10.1017/S0960129506005871

| issue = 1

| journal = Mathematical Structures in Computer Science

| mr = 2311089

| pages = 129–159

| title = A monadic, functional implementation of real numbers

| volume = 17

| year = 2007| s2cid = 221168970

| arxiv = cs/0605058

}}

{{citation

| last = Pollen | first = David

| contribution = Daubechies' scaling function on [0,3]

| mr = 1161245

| pages = 3–13

| publisher = Academic Press | location = Boston, Massachusetts

| series = Wavelet Analysis and Its Applications

| title = Wavelets

| volume = 2

| year = 1992}}

{{citation

| last1 = Pothier | first1 = Yvonne | author1-link = Yvonne Pothier

| last2 = Sawada | first2 = Daiyo

| date = November 1983

| doi = 10.2307/748675

| issue = 5

| journal = Journal for Research in Mathematics Education

| jstor = 748675

| pages = 307–317

| title = Partitioning: the emergence of rational number ideas in young children

| volume = 14}}

{{citation

| last1 = Resnikoff | first1 = Howard L. | author1-link = Howard L. Resnikoff

| last2 = Wells | first2 = Raymond O. Jr. | author2-link = Raymond O. Wells Jr.

| contribution = 2.2.1: Digital computers and measurement

| contribution-url = https://books.google.com/books?id=jrvkBwAAQBAJ&pg=PA17

| doi = 10.1007/978-1-4612-0593-7

| isbn = 0-387-98383-X

| location = New York

| mr = 1712468

| pages = 17–18

| publisher = Springer-Verlag

| title = Wavelet Analysis: The Scalable Structure of Information

| year = 1998}}

{{citation

| last = Robert | first = Alain M. | author-link = Alain M. Robert

| contribution = 5.4 Fractional and integral parts of p-adic numbers

| doi = 10.1007/978-1-4757-3254-2

| isbn = 0-387-98669-3

| mr = 1760253

| pages = 40–43

| publisher = Springer-Verlag | location = New York

| series = Graduate Texts in Mathematics

| title = A Course in p-adic Analysis

| volume = 198

| year = 2000}}

{{citation

| last = Rudman | first = Peter S.

| isbn = 978-1-61592-176-8

| page = 148

| publisher = Prometheus Books

| title = How Mathematics Happened: The First 50,000 Years

| url = https://books.google.com/books?id=BtcQq4RUfkUC&pg=PA148

| year = 2009}}

{{citation

| last = Sabin | first = Malcolm

| isbn = 9783642136481

| page = 51

| publisher = Springer

| series = Geometry and Computing

| title = Analysis and Design of Univariate Subdivision Schemes

| url = https://books.google.com/books?id=18UC7d7h0LQC&pg=PA51

| volume = 6

| year = 2010}}

{{citation

| last1 = Uiterwijk | first1 = Jos W. H. M.

| last2 = Barton | first2 = Michael

| arxiv = 1506.03949

| doi = 10.1016/j.tcs.2015.05.017

| journal = Theoretical Computer Science

| mr = 3367582

| pages = 72–86

| title = New results for Domineering from combinatorial game theory endgame databases

| volume = 592

| year = 2015| s2cid = 5899577

}}

{{citation

| last = van der Hoeven | first = Joris

| doi = 10.1016/j.tcs.2005.09.060 | doi-access = free

| issue = 1

| journal = Theoretical Computer Science

| mr = 2201092

| pages = 52–60

| title = Computations with effective real numbers

| volume = 351

| year = 2006}}

{{citation

| last = Wells | first = David Graham

| isbn = 978-1-78326-755-2

| pages = 32–33

| publisher = World Scientific

| title = Motivating Mathematics: Engaging Teachers And Engaged Students

| url = https://books.google.com/books?id=suY7DQAAQBAJ&pg=PA32

| year = 2015}}

{{citation

| last = Yanakiev | first = Ivan K.

| editor-last = Bozhikova | editor-first = Milena

| contribution = Mathematical devices in aid of music theory, composition, and performance

| isbn = 978-1-5275-4758-2

| pages = 35–62

| publisher = Cambridge Scholars Publishing

| title = Music between Ontology and Ideology

| year = 2020}}; see in particular [https://books.google.com/books?id=dQbUDwAAQBAJ&pg=PA37 p. 37].

{{citation

| last1 = Zheng | first1 = Xizhong

| last2 = Rettinger | first2 = Robert

| doi = 10.1002/malq.200310110

| issue = 4–5

| journal = Mathematical Logic Quarterly

| mr = 2090389

| pages = 431–442

| title = Weak computability and representation of reals

| volume = 50

| year = 2004| s2cid = 15815720

}}

}}

{{Fractions and ratios}}

{{Rational numbers}}

{{Ring theory sidebar}}

Category:Fractions (mathematics)

Category:Rational numbers

Category:Ring theory

Category:Number theory