Solving Recurrence Equations

Total Page:16

File Type:pdf, Size:1020Kb

Solving Recurrence Equations Great Theoretical Ideas In Computer Science V. Adamchik CS 15-251 Spring 2010 D. Sleator Solve in integers Lecture 8 Feb 04, 2010 Carnegie Mellon University Recurrences and Continued Fractions x1 + x2 +…+ x5 = 40 xkrk; yk=xk – k y1 + y2 +…+ y5 = 25 y ≥ 0; k 29 4 Partitions Solve in integers Find the number of ways to partition the integer n x + y + z = 11 3 = 1+1+1=1+2 xr0; yb3; zr0 4=1+1+1+1=1+1+2=1+3=2+2 2 3 x1 2x2 3x3 ... nxn n [X11] 1 x x x (1 -x) 2 1 (1 -x)(1 -x2)(1 -x3)...(1 -xn) Leonardo Fibonacci The rabbit reproduction model •A rabbit lives forever In 1202, Fibonacci has become •The population starts as a single newborn interested in rabbits and what they do pair •Every month, each productive pair begets a new pair which will become productive after 2 months old Fn= # of rabbit pairs at the beginning of the nth month month 1 2 3 4 5 6 7 rabbits 1 1 2 3 5 8 13 1 F =0, F =1, 0 1 WARNING!!!! Fn=Fn-1+Fn-2 for n≥2 This lecture has What is a closed form explicit mathematical formula for Fn? content that can be shocking to some students. n n-1 n-2 Characteristic Equation - - = 0 n-2 2 Characteristic Fn=Fn-1+Fn-2 iff ( - - 1) = 0 equation Consider solutions of the form: iff 2 - - 1 = 0 n 1 5 Fn= for some (unknown) constant ≠ 0 2 = , or = -1/ must satisfy: (“phi”) is the golden ratio n - n-1 - n-2 = 0 a,b a n + b (-1/ )n = , or = -(1/ ) satisfies the inductive condition So for all these values of the Adjust a and b to fit the base inductive condition is satisfied: conditions. n=0: a + b = 0 2 - - 1= 0 n=1: a 1 + b (-1/ )1 = 1 Do any of them happen to satisfy the base condition as well? a= 1/ 5 b= -1/ 5 F0=0, F1=1 2 Fibonacci Power Series Leonhard Euler (1765) n ( 1 )n Fn k 5 Fk x ?? k 0 x 1 x x2 Fibonacci Bamboozlement Cassini’s Identity 2 n Fn+1Fn-1 - Fn = (-1) We dissect FnxFn square and rearrange pieces into Fn+1xFn-1 square From the previous lecture Characteristic Equation dn dn 1 2dn 2 dn dn 1 2dn 2 d0 0, d1 1 d0 0, d1 1 2 2 0 1 1, 2 2 n n dn a ( 1) b 2 3 n n Characteristic Equation dn a ( 1) b 2 x 2x x 0 0 n n 1 n 2 d0 0 a ( 1) b 2 a b x0 1, x1 2 1 1 d1 1 a ( 1) b 2 a 2 b 1 1 b ,a 3 3 Characteristic Equation Characteristic Equation Theorem. Let be a root of multiplicity p xn 2xn 1 xn 2 of the characteristic equation. Then 2 2 1 0 λn ,n λn ,n2λn ,...,np-1λn are all solutions. 1 2 1 From the previous lecture: xn 2xn 1 xn 2 Rogue Recurrence The theorem says that xn=n is a solution. an 5an 1 8an 2 4an 3 a0 0, a1 1, a2 4 This can be easily verified: n = 2 n - n Characteristic equation: 3 5 2 8 4 0 1 1, 2 3 2 4 a 5a 8a 4a n n 1 n 2 n 3 The Golden Ratio a0 0, a1 1, a2 4 “Some other majors have their General solution: n n an a b 2 c n 2 mystery numbers, like and e. In Computer Science the mystery a0 0 a b a b 0, number is , the Golden Ratio.” – 1 S.Rudich a1 1 a 2b 2c c 2 a2 4 a 4b 8c n-1 an n 2 Golden Ratio -Divine Proportion Golden Ratio - the divine Ratio obtained when you divide a line segment proportion into two unequal parts such that the ratio of 2 1 5 the whole to the larger part is the same as 1 0 the ratio of the larger to the smaller. 2 AC AB A B C = 1.6180339887498948482045… AB BC “Phi” is named after the Greek sculptor 2 AC AB AC 2 AB BC BC 1 0 Phidias AC AB AC AB 2 1 BC BC BC Which is the most attractive Aesthetics rectangle? plays a central role in renaissance art and architecture. After measuring the dimensions of pictures, cards, books, snuff boxes, writing paper, windows, and such, psychologist Gustav Fechner claimed that the preferred rectangle had sides in the golden ratio (1871). 5 Which is the most attractive The Golden Ratio rectangle? 1 Golden Rectangle Divina Proportione Table of contents Luca Pacioli (1509) •The first considerable effect Pacioli devoted an entire book to the •The second essential effect marvelous properties of . The book •The third singular effect was illustrated by a friend of his •The fourth ineffable effect named: •The fifth admirable effect •The sixth inexpressible effect Leonardo Da Vinci •The seventh inestimable effect •The ninth most excellent effect •The twelfth incomparable effect •The thirteenth most distinguished effect Divina Proportione Table of contents Luca Pacioli (1509) “For the sake of salvation, the list "Ninth Most Excellent Effect" must end here” – Luca Pacioli two diagonals of a regular pentagon divide each other in the Divine Proportion. AC AB C A B AB BC 6 Expanding Recursively Expanding Recursively 2 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 A (Simple) Continued Fraction Is A Continued Fraction can have a Any Expression Of The Form: finite or infinite number of terms. 1 1 a a 1 1 b b 1 1 c c 1 1 d d 1 1 e e 1 1 f f 1 1 g g 1 1 h h 1 1 i i j .... j .... where a, b, c, … are whole numbers. We also denote this fraction by [a,b,c,d,e,f,…] Continued Fraction Representation Recursively Defined Form For CF 81 1 1 5 1 CF whole number 1 1 1 1 whole number 1 CF 1 = [1,1,1,1,1,0,0,0,…] 7 Euclid’s GCD = Continued Fraction Proposition: Any finite continued fraction Euclid(A,B) = Euclid(B, A mod B) evaluates to a rational. Stop when B=0 a b q1 r1 Converse: Any rational has b r1 q2 r2 a finite continued fraction r1 r2 q3 r3 representation. .... rk 1 rk qk 1 0 Euclid’s GCD = Continued Fraction Euclid’s GCD = Continued Fraction a 1 a r1 1 a b q1 r1 a b q1 r1 q q q1 1 1 b b b b b b r q r r1 b r q r r1 1 2 2 1 2 2 b r 1 1 2 r1 r2 q3 r3 q2 q2 q1 r1 r2 q3 r3 r1 1 r1 r1 q r1 r2 .... 2 .... r2 r1 r3 1 rk 1 rk qk 1 0 1 r r q 0 q q q1 k 1 k k 1 3 3 r2 1 r2 r2 r q2 q 1 3 3 r2 r3 A Pattern for Divine Proportion 1 Let r1 = [1,0,0,0,…] = 1 1 n n 1 r2 = [1,1,0,0,0,…] = 2/1 1 1 n r3 = [1,1,1,0,0,0…] = 3/2 Fn r = [1,1,1,1,0,0,0…] = 5/3 lim lim n 1 lim n 1 4 n F n n and so on. n 1 n 1 1 Theorem: = Fn/Fn-1 when n -> 8 Heads-on Magic conversion 50 km = 34 + 13 + 3 How to convert kilometers into miles? 50 = F9 + F7 + F4 F8 + F6 + F3 = 31 miles Quadratic Equations A Periodic CF 2 3 13 1 X – 3x – 1 = 0 3 13 3 X 1 2 3 2 1 X2 = 3X + 1 3 1 3 1 3 X = 3 + 1/X 1 3 1 3 1 3 1 X = 3 + 1/X = 3 + 1/[3 + 1/X] = … 3 3 .... A period-2 CF Proposition: Any quadratic 1 2 1 solution has a periodic 1 continued fraction. 3 1 1 4 Converse: Any periodic 1 continued fraction is the 8 1 solution of a quadratic 4 equation 1 8 4 ... 9 Euclid’s GCD = Continued Fraction a b q r What about those 1 1 π 3 1 0.1415 non-periodic b r q r 1 7 0.1415 0.00885 continued fractions? 1 2 2 0.1415 15 0.00885 0.00882 r1 r2 q3 r3 0.00885 1 0.00882 0.000078 What is the .... continued fraction rk 1 rk qk 1 0 expansion for ? ?? What is the pattern? What is the pattern? 1 1 3 e 11 1 1 7 1 1 1 15 2 1 1 1 1 1 1 292 1 1 1 1 4 1 1 1 1 1 1 1 1 1 1 2 6 1 .... 1 .... Every irrational number greater than 1 is the limit of a unique infinite continued fraction. Every irrational number Suppose that y>1 is irrational and y = [b0;b1,b2, . .]. greater than 1 is the 1 1 limit of a y b0 b0 b ... y unique infinite 1 1 continued fraction. where y1 > 1. Thus, 1 b0 y y y1 Similarly, for all bk. 10 To calculate the continued fraction for a real number What a cool y, set y0 =y and then representation! bk yk Finite CF: Rationals 1 Periodic CF: Quadratic y k 1 roots yk bk And some numbers reveal hidden regularity.
Recommended publications
  • Liouville Numbers
    Math 154 Notes 2 In these notes I’ll construct some explicit transcendental numbers. These numbers are examples of Liouville numbers. Let {ak} be a sequence of positive integers, and suppose that ak divides ak+1 for all k. We say that {ak} has moderate growth if there is some con- K stant K such that an+1 <K(an) for all n. Otherwise we say that {an} has immoderate growth. ∞ 1 Theorem 0.1 k P If {a } has immoderate growth then the number x = n=1 an is transcendental. Proof: We will suppose that P (x) = 0 for some polynomial P . There is some constant C1 such that P has degree at most C1 and all the coefficients of P are less than C1 in absolute value. Let xn = 1/a1 + ... +1/an. The divisibility condition guarantees that xn = hn/an, where hn is some integer. As long as P (xn) is nonzero, we have −C1 |P (xn) − P (x)| = |P (xn)|≥ (an) . (1) This just comes from the fact that P (xn) is a rational number whose denom- C1 inator is at most (an) . ′ On the other hand, there is some constant C2 such that |P (u)| < C2 for all u in the interval [x − 1,x + 1]. For n large, xn lies in this interval. Therefore, by the usual estimate that comes from integration, −1 |P (xn) − P (x)| <C2|xn − x| < 2C2an+1. (2) The last inequality comes from the fact that {1/an} decays faster than the sequence {1/2n} once n is large.
    [Show full text]
  • Irrationality and Transcendence of Alternating Series Via Continued
    Mathematical Assoc. of America American Mathematical Monthly 0:0 October 1, 2020 12:43 a.m. alternatingseries.tex page 1 Irrationality and Transcendence of Alternating Series Via Continued Fractions Jonathan Sondow Abstract. Euler gave recipes for converting alternating series of two types, I and II, into equiv- alent continued fractions, i.e., ones whose convergents equal the partial sums. A condition we prove for irrationality of a continued fraction then allows easy proofs that e, sin 1, and the pri- morial constant are irrational. Our main result is that, if a series of type II is equivalent to a sim- ple continued fraction, then the sum is transcendental and its irrationality measure exceeds 2. ℵℵ0 = We construct all 0 c such series and recover the transcendence of the Davison–Shallit and Cahen constants. Along the way, we mention π, the golden ratio, Fermat, Fibonacci, and Liouville numbers, Sylvester’s sequence, Pierce expansions, Mahler’s method, Engel series, and theorems of Lambert, Sierpi´nski, and Thue-Siegel-Roth. We also make three conjectures. 1. INTRODUCTIO. In a 1979 lecture on the Life and Work of Leonhard Euler, Andr´eWeil suggested “that our students of mathematics would profit much more from a study of Euler’s Introductio in Analysin Infinitorum, rather than of the available mod- ern textbooks” [17, p. xii]. The last chapter of the Introductio is “On Continued Frac- tions.” In it, after giving their form, Euler “next look[s] for an equivalent expression in the usual way of expressing fractions” and derives formulas for the convergents. He then converts a continued fraction into an equivalent alternating series, i.e., one whose partial sums equal the convergents.
    [Show full text]
  • On Transcendental Numbers: New Results and a Little History
    Axioms 2013, xx, 1-x; doi:10.3390/—— OPEN ACCESS axioms ISSN 2075-1680 www.mdpi.com/journal/axioms Communication On transcendental numbers: new results and a little history Solomon Marcus1 and Florin F. Nichita1,* 1 Institute of Mathematics of the Romanian Academy, 21 Calea Grivitei Street, 010702 Bucharest, Romania * Author to whom correspondence should be addressed; E-Mail: [email protected]; Tel: (+40) (0) 21 319 65 06; Fax: (+40) (0) 21 319 65 05 Received: xx / Accepted: xx / Published: xx Abstract: Attempting to create a general framework for studying new results on transcendental numbers, this paper begins with a survey on transcendental numbers and transcendence, it then presents several properties of the transcendental numbers e and π, and then it gives the proofs of new inequalities and identities for transcendental numbers. Also, in relationship with these topics, we study some implications for the theory of the Yang-Baxter equations, and we propose some open problems. Keywords: Euler’s relation, transcendental numbers; transcendental operations / functions; transcendence; Yang-Baxter equation Classification: MSC 01A05; 11D09; 11T23; 33B10; 16T25 arXiv:1502.05637v2 [math.HO] 5 Dec 2017 1. Introduction One of the most famous formulas in mathematics, the Euler’s relation: eπi +1=0 , (1) contains the transcendental numbers e and π, the imaginary number i, the constants 0 and 1, and (transcendental) operations. Beautiful, powerful and surprising, it has changed the mathematics forever. We will unveil profound aspects related to it, and we will propose a counterpart: ei π < e , (2) | − | Axioms 2013, xx 2 Figure 1. An interpretation of the inequality ei π < e .
    [Show full text]
  • Transcendental Numbers
    INTRODUCTION TO TRANSCENDENTAL NUMBERS VO THANH HUAN Abstract. The study of transcendental numbers has developed into an enriching theory and constitutes an important part of mathematics. This report aims to give a quick overview about the theory of transcen- dental numbers and some of its recent developments. The main focus is on the proof that e is transcendental. The Hilbert's seventh problem will also be introduced. 1. Introduction Transcendental number theory is a branch of number theory that concerns about the transcendence and algebraicity of numbers. Dated back to the time of Euler or even earlier, it has developed into an enriching theory with many applications in mathematics, especially in the area of Diophantine equations. Whether there is any transcendental number is not an easy question to answer. The discovery of the first transcendental number by Liouville in 1851 sparked up an interest in the field and began a new era in the theory of transcendental number. In 1873, Charles Hermite succeeded in proving that e is transcendental. And within a decade, Lindemann established the tran- scendence of π in 1882, which led to the impossibility of the ancient Greek problem of squaring the circle. The theory has progressed significantly in recent years, with answer to the Hilbert's seventh problem and the discov- ery of a nontrivial lower bound for linear forms of logarithms of algebraic numbers. Although in 1874, the work of Georg Cantor demonstrated the ubiquity of transcendental numbers (which is quite surprising), finding one or proving existing numbers are transcendental may be extremely hard. In this report, we will focus on the proof that e is transcendental.
    [Show full text]
  • A Computable Absolutely Normal Liouville Number
    MATHEMATICS OF COMPUTATION Volume 84, Number 296, November 2015, Pages 2939–2952 http://dx.doi.org/10.1090/mcom/2964 Article electronically published on April 24, 2015 A COMPUTABLE ABSOLUTELY NORMAL LIOUVILLE NUMBER VERONICA´ BECHER, PABLO ARIEL HEIBER, AND THEODORE A. SLAMAN Abstract. We give an algorithm that computes an absolutely normal Liou- ville number. 1. The main result The set of Liouville numbers is {x ∈ R \ Q : ∀k ∈ N, ∃q ∈ N,q>1and||qx|| <q−k} where ||x|| =min{|x−m| : m ∈ Z} is the distance of a real number x to the nearest −k! integer and other notation is as usual. Liouville’s constant, k≥1 10 ,isthe standard example of a Liouville number. Though uncountable, the set of Liouville numbers is small, in fact, it is null, both in Lebesgue measure and in Hausdorff dimension (see [6]). We say that a base is an integer s greater than or equal to 2. A real number x is normal to base s if the sequence (sjx : j ≥ 0) is uniformly distributed in the unit interval modulo one. By Weyl’s Criterion [11], x is normal to base s if and only if certain harmonic sums associated with (sjx : j ≥ 0) grow slowly. Absolute normality is normality to every base. Bugeaud [6] established the existence of absolutely normal Liouville numbers by means of an almost-all argument for an appropriate measure due to Bluhm [3, 4]. The support of this measure is a perfect set, which we call Bluhm’s fractal, all of whose irrational elements are Liouville numbers.
    [Show full text]
  • Liouville Numbers
    Liouville Numbers Manuel Eberl April 17, 2016 Abstract In this work, we define the concept of Liouville numbers as well as the standard construction to obtain Liouville numbers and we prove their most important properties: irrationality and transcendence. This is historically interesting since Liouville numbers constructed in the standard way where the first numbers that were proven to be transcendental. The proof is very elementary and requires only stan- dard arithmetic and the Mean Value Theorem for polynomials and the boundedness of polynomials on compact intervals. Contents 1 Liouville Numbers1 1.1 Preliminary lemmas.......................1 1.2 Definition of Liouville numbers.................3 1.3 Standard construction for Liouville numbers..........7 1 Liouville Numbers 1.1 Preliminary lemmas theory Liouville-Numbers-Misc imports Complex-Main ∼∼=src=HOL=Library=Polynomial begin We will require these inequalities on factorials to show properties of the standard construction later. lemma fact-ineq: n ≥ 1 =) fact n + k ≤ fact (n + k) proof (induction k) case (Suc k) from Suc have fact n + Suc k ≤ fact (n + k) + 1 by simp also from Suc have ::: ≤ fact (n + Suc k) by simp finally show ?case . 1 qed simp-all lemma Ints-setsum: assumes Vx: x 2 A =) f x 2 ZZ shows setsum f A 2 ZZ by (cases finite A; insert assms; induction A rule: finite-induct) (auto intro!: Ints-add) lemma suminf-split-initial-segment 0: summable (f :: nat ) 0a::real-normed-vector) =) suminf f = (P n: f (n + k + 1 )) + setsum f f::kg by (subst suminf-split-initial-segment[of
    [Show full text]
  • Transcendental Numbers
    Bachelor Thesis DEGREE IN MATHEMATICS Faculty of Mathematics University of Barcelona TRANSCENDENTAL NUMBERS Author: Adina Nedelea Director: Dr. Ricardo Garc´ıaL´opez Department: Algebra and Geometry Barcelona, June 27, 2016 Summary Transcendental numbers are a relatively recent finding in mathematics and they provide, togheter with the algebraic numbers, a classification of complex numbers. In the present work the aim is to characterize these numbers in order to see the way from they differ the algebraic ones. Going back to ancient times we will observe how, since the earliest history mathematicians worked with transcendental numbers even if they were not aware of it at that time. Finally we will describe some of the consequences and new horizons of mathematics since the apparition of the transcendental numbers. Agradecimientos El trabajo final de grado es un punto final de una etapa y me gustar´aagradecer a todas las personas que me han dado apoyo durante estos a~nosde estudios y hicieron posible que llegue hasta aqu´ı. Empezar´epor agradecer a quien hizo posible este trabajo, a mi tutor Ricardo Garc´ıa ya que sin su paciencia, acompa~namiento y ayuda me hubiera sido mucho mas dif´ıcil llevar a cabo esta tarea. Sigo con los agradecimientos hacia mi familia, sobretodo hacia mi madre quien me ofreci´ola libertad y el sustento aunque no le fuera f´acily a mi "familia adoptiva" Carles, Marilena y Ernest, quienes me ayudaron a sostener y pasar por todo el pro- ceso de maduraci´onque conlleva la carrera y no rendirme en los momentos dif´ıciles. Gracias por la paciencia y el amor de todos ellos.
    [Show full text]
  • The Irrationality Measure of $\Pi $ As Seen Through the Eyes of $\Cos (N) $
    THE IRRATIONALITY MEASURE OF π AS SEEN THROUGH THE EYES OF cos(n) SULLY F. CHEN California Polytechnic University, San Luis Obispo University of Southern California ERIN P. J. PEARSE California Polytechnic University, San Luis Obispo Abstract. For different values of γ ≥ 0, analysis of the end behavior of the nγ sequence an = cos(n) yields a strong connection to the irrationality measure 2 of π. We show that if lim sup j cos njn 6= 1, then the irrationality measure of π is exactly 2. We also give some numerical evidence to support the conjecture that µ(π) = 2, based on the appearance of some startling subsequences of cos(n)n. 1. Introduction 1.1. Irrationality Measure. An irrational number α is considered to be well- approximated by rational numbers iff for any ν 2 N, there are infinitely many p choices of q that satisfy (1). p 1 α − < ; for some ν 2 N: (1) q qµ The idea is that if the set p p 1 U(α; ν) = 2 Q : 0 < α − < (2) q q qν arXiv:1807.02955v3 [math.NT] 29 Jul 2019 is infinite for a fixed ν, then U(α; ν) contains rationals with arbirarily large denom- inators and so one can find a sequence of rationals pn 2 U(α; ν) which converge to qn α. One could say that this sequence converges to α \at rate ν". When this can be accomplished for any ν 2 N, the number α can be approximated by sequences with arbitrarily high rates of convergence.
    [Show full text]
  • This Topic Will Be Treated Again in Our Next Issue. and in the Issue After
    e: The Master of All BRIAN J. MCCARTIN Read Euler, read Euler. He is the master of us all. --P. S. de Laplace aplace's dictum may rightfully be transcribed as: "Study Thus, e was first conceived as the limit e, study e. It is the master of all." L e = lim (1 + l/n)*' = 2.718281828459045" (1) Just as Gauss earned the moniker Princeps mathemati- n~ao corum amongst his contemporaries [1], e may be dubbed although its baptism awaited Euler in the eighteenth cen- Princeps constantium symbolum. Certainly, Euler would tury [2]. One might naively expect that all that could be concur, or why would he have endowed it with his own gleaned from equation (1) would have been mined long initial [2]? ago. Yet, it was only very recently that the asymptotic The historical roots of e have been exhaustively traced development and are readily available [3, 4, 5]. Likewise, certain funda- mental properties of e such as its limit definition, its series =(1+1/n) ~ = ~ e~. representation, its close association with the rectangular hy- perbola, and its relation to compound interest, radioactive decay, and the trigonometric and hyperbolic functions are ev= e l---7--. ' (2) k=o (v+ k)! l=o too well known to warrant treatment here [6, 7]. Rather, the focus of the present article is on matters re- with & denoting the Stirling numbers of the first kind [9], lated to e which are not so widely appreciated or at least was discovered [10]. have never been housed under one roof. When I do in- Although equation (1) is traditionally taken as the defin- dulge in reviewing well-known facts concerning e, it is to ition of e, it is much better approximated by the limit forge a link to results of a more exotic variety.
    [Show full text]
  • On the Arithmetic Behavior of Liouville Numbers Under Rational Maps
    On the Arithmetic Behavior of Liouville Numbers under Rational Maps Ana Paula Chavesa, Diego Marquesb,∗, Pavel Trojovsk´yc aInstituto de Matem´atica e Estat´ıstica, Universidade Federal de Goi´as, Brazil bDepartamento de Matem´atica, Universidade de Bras´ılia, Brazil cFaculty of Science, University of Hradec Kr´alov´e, Czech Republic Abstract In 1972, Alnia¸cik proved that every strong Liouville number is mapped into the set of Um-numbers, for any non-constant rational function with coeffi- cients belonging to an m-degree number field. In this paper, we generalize this result by providing a larger class of Liouville numbers (which, in par- ticular, contains the strong Liouville numbers) with this same property (this set is sharp is a certain sense). Keywords: Mahler’s Classification, Diophantine Approximation, U-numbers, rational functions. 2000 MSC: 11J81, 11J82, 11K60 1. Introduction The beginning of the transcendental number theory happened in 1844, when Liouville [11] showed that algebraic numbers are not “well-approximated” by rationals. More precisely, if α is an n-degree real algebraic number (with n > 1), then there exists a positive constant C, depending only on α, such arXiv:1910.14190v1 [math.NT] 31 Oct 2019 that α p/q > Cq−n, for all rational number p/q. By using this result, | − | Liouville was able to explicit, for the first time, examples of transcendental numbers (the now called Liouville numbers). A real number ξ is called a Liouville number if there exist infinitely many rational numbers (pn/qn)n, with qn > 1, such that ∗Corresponding author Email addresses: [email protected] (Ana Paula Chaves), [email protected] (Diego Marques), [email protected] (Pavel Trojovsk´y) Preprint submitted to ..
    [Show full text]
  • A Computable Absolutely Normal Liouville Number
    A computable absolutely normal Liouville number Verónica Becher Pablo Ariel Heiber Theodore A. Slaman [email protected] [email protected] [email protected] January 30, 2014 Abstract We give an algorithm that computes an absolutely normal Liouville number. 1 The main result The set of Liouville numbers is ´k tx P RzQ : @k P N; Dq P N; q ¡ 1 and ||qx|| ă q u where ||x|| “ mint|x ´ m| : m P Zu is the distance of a real number x to the nearest integer ´k! and other notation is as usual. Liouville’s constant, k¥1 10 , is the standard example of a Liouville number. Though uncountable, the set of Liouville numbers is small, in fact, it is null, both in Lebesgue measure and in Hausdorff dimensionř (see [6]). We say that a base is an integer s greater than or equal to 2. A real number x is normal to base s if the sequence psjx : j ¥ 0q is uniformly distributed in the unit interval modulo one. By Weyl’s Criterion [11], x is normal to base s if and only if certain harmonic sums associated with psjx : j ¥ 0q grow slowly. Absolute normality is normality to every base. Bugeaud [6] established the existence of absolutely normal Liouville numbers by means of an almost-all argument for an appropriate measure due to Bluhm [3, 4]. The support of this measure is a perfect subset of the Liouville numbers, Bluhm’s fractal. The Fourier transform of this measure decays quickly enough to ensure that those harmonic sums grow slowly on a set of measure one.
    [Show full text]
  • An Intrepid Tour of the Complex Fractal World
    An Intrepid Tour of the Complex Fractal World using Dark Heart Package 2.17 for Mac Updates and downloads at: http://dhushara.com/DarkHeart/ under the GPL Chris King Contents Introduction 1 An Intrepid Tour of the Complex Fractal World 2 Flight Manual for the Dark Heart Viewer 23 Flight Manual for the Riemann Zeta Viewer 30 Research connected with the Package 41 Sample C-scripts 42 4 5 Fig 1: Parameter plane of the Function f (z) = cz (1− z) Introduction The Dark Heart Viewer Package contains two key complex function fractal viewers, Dark Heart and Riemann Zeta, which are both a pleasure to explore and are also professional research tools for exploring virtually every conceivable complex function in the universe, along with their fractal dynamics. At first sight, it shows you a portrait of a function that is to be explored in 4-D colour and when you click the screen switches to a Mandelbrot parameter plane view. You can then scale this by dragging rectangles to explore ever-diminishing parts of the fractal and click again to see the Julia set of the point chosen. Clicking again will switch between these two views and reset will take you back to the function. But the real interest begins when you select advanced controls and a drawer pane opens which expands the application into a research tool which can be used to investigate a vast variety of polynomial, rational and transcendental functions leading all the way to Riemann's famous zeta function and the full spread of esoteric zeta and L- function at the cutting edge of mathematical research in the Riemann Zeta Viewer.
    [Show full text]