Fractal Simulation of Plants

Total Page:16

File Type:pdf, Size:1020Kb

Fractal Simulation of Plants Degree project Fractal simulation of plants Author: Haoke Liao Supervisor: Hans Frisk Examiner: Marcus Nilsson Date: 2020-01-29 Course Code: 2MA41E Subject: Mathematics Level: Bachelor Department Of Mathematics Abstract We study two methods of simulation of plants in R2, the Lindenmayer system and the iterated function system. The algorithm for a L-system simulates fast and efficiently the growth structure of the plants. The iterated function system can be done by deterministic iteration or by the so called chaos game. 2 Contents 1 Introduction 4 1.1 History . .5 2 L-systems 5 3 Iterated Function Systems 9 3.1 Deterministic Iteration . 10 3.2 Chaos Games . 13 4 Concluding remarks 16 3 1 Introduction Simulation of complex plant structures in nature is a popular field of com- puter graphics research [9]. In this thesis, we take the Lindenmayer systems (L- system for short) and the iterated function systems (IFS for short) as the main methods in R2. We choose Chaos and fractals [1] and The algorithmic beauty of plants [3] as the key books and study how L-system and IFS work for the frac- tals. The figures of the plants are created by Mathematica [4]. The plants can be regarded a generalization of the classical fractals. Let us introduce the fractals through 2 concepts, self similarity and Hausdorff di- mension. The objects of the classical fractals research are usually not smooth and they have an irregular geometry. A closed and bounded subset of the Eu- clidean plane R2 is said to be self-similar if it can be expressed in the form S = S1 [ S2 [···[ Sk where S1, S2 ··· , Sk are non-overlapping sets, each of which is similar to S scaled by the same factor s (0 < s < 1) [5]. The fig- ures in figure 2 are good examples to show self similarity. When it is iterated more and more times, the final figure will go towards to the Sierpinski triangle. Now we turn to the Hausdorf f dimension (also called the fractal dimension). The method of calculating Hausdorff dimension is not very easy, usually we always choose the formula for the box − counting dimension. For a bounded set a, let N(`) denote the minimum number of boxes of length ` > 0 required to cover a. Then the box dimension of a is given by [6] ln N(`) dB = lim . `!0 ln(1/`) For the classical fractals, like the Sierpinski triangle, the Hausdorff dimension is the same as the box-counting dimension. As an example, let us consider the Cantor set. Start with a segment of length 1 in figure 1. Remove the middle third and continue by removing the middle third of each segment. Figure 1: Two iterations towards the Cantor set. n 1 After iterating n times, we get 2 segments of length 3n . So ln 2n ln 2 dB = lim = n!¥ ln 3n ln 3 . The purpose of section 2 is to study the rules of plant growth by using a rewriting system. Both the edges and the nodes of the plant can be rewritten. The IFS in section 3 which is also based on iteration can be done in two ways: deterministic iteration and random iteration. We will discuss both of them and introduce some concepts like af finetransformation, contraction mapping and chaos game. 4 Figure 2: Initial triangle, one iteration (middle) and four iterations (right) to- wards the Sierpinski triangle. 1.1 History In 1872 Karl Weierstrass presented a function which is continuous but nowhere differentiable and today this function is considered as a fractal. Then the Cantor set was generated by Cantor in 1883. In 1904, Koch produced the Koch snowflake and Sierpinski showed the Sierpinski triangle in 1915. By 1918, Fatou and Julia came up with the idea of attractors. In the same year, Haus- dorff expanded the definition of "dimension" and defined what we now call the Hausdorff dimension. In the 1960s, Mandelbrot introduced the concept of self similarity and he coined the word “fractal” in 1975. The fern code developed by Barnsley is an example mentioned in his 1988 book Fractals Everywhere [2]. Lindenmayer systems, were introduced and developed in 1968 by Aristid Lin- denmayer [3]. 2 L-systems The L-system is based on a rewriting system - an object is constructed by replacing the original object step by step using a set of rules. Let us start by generating curves since it is a good way to explain the rewriting system. After that we will turn to simulation of plants. A nice way of thinking of the L- system is the so called turtle interpretation. We then see the rules as instruction for a turtle‘s trajectory. To begin with we start with a so called axiom, w, which gives the initial configuration. This can often be a length F (usually F = 1). To tell the turtle how to move a production rule, P, must be given. The turtle is allowed to move straight ahead but also turn left or right an angle d, shown with 00−00 or 00+00. Given the triplet fw, P, dg, the curve can be created. As an illustration, let us construct the snowflake curve using the turtle interpretation. For its construction only one rule is used. To keep the end 1 points fixed we scale the edges by 3 in each step. Now let the rule be F ! F + F − −F + F with the angle d = 60◦ and w = F. In figure 3 the first three iterations towards the snowflake are shown. 5 Figure 3: The initial state and the first three iterations towards the snowflake. Sometimes it is necessary to work with two types of edges, Fl and Fr, like ◦ for the dragon curve in figure 4. Here the angle d = 90 and the axiom w = Fl and the two rules are Fl ! Fl + Fr+, Fr ! −Fl − Fr. We show the first three iterations and the tenth iteration in figure 4. After two iterations the string is Fl ! Fl + Fr + Fl − Fr. Figure 4: The first three iterations and the tenth iteration of the dragon curve. Another significant aspect of rewriting systems is the node rewriting. The point where two edges meet is called a node. As for the edge rewriting, it also gives a method to create a new curve with a recursive structure. In the following example two types of nodes, L and R, are used and F is still the length step. Using the rules L ! LF + RFR + FL − F − LFLFL − FRFR+ R ! −LFLF + RFRFR + F + RF − LFL − FR and w = L and d = 90◦ will produce a space filling curve 1, see figure 5. 1The space-filling curve can be a continuous function, R ! R2, whose domain is the unit interval [0, 1] and the range has an area [8]. 6 Figure 5: One and three iterations towards the space filling curve. Both the edge and the node rewriting can be extend to branching struc- tures. To simulate growth of plants we will now turn to bracketed L-systems. The rules of a bracketed L-system also use rewriting. It also has two types of rewriting, the edge rewriting and the node rewriting and a branch is described by a bracket []. Let us start with the edge rewriting case in figure 6 where w = F and d = 22.5◦. Figure 6: The plants after one and four iterations with the rule F ! FF[− − F + F + F][+F − F − F]. An example of node-rewriting is given in figure 7 with w = X, d = 20◦. 7 Figure 7: The plants after 1, 2, 3 and 9 iterations with the rules X ! F[+X]F[−X] + X and F ! FF. Let us finish this section with some branching structures using two types of edges and/or two types of nodes. The figures of the plant simulations are shown in figure 8 with the following rules w = Fl w = L, F ! FF d = 22.5◦ d = 20◦ Fl ! Fl Fl[− − Fl][+Fr] L ! F[+F[+L]]F[−R] + R Fr ! Fl[−Fl][+Fr] R ! F[−F[−L]][+R] 8 Figure 8: The plants simulation after five iterations with two types of edges (on the left) or nodes (on the right) respectively. We generate the plants combining the edge rewriting and the node rewrit- ing in figure 9. The rules are w = L, d = 20◦, Fl ! Fl Fl[− − Fl][+Fr], Fr ! Fl[−Fl][+Fr], L ! Fl[+Fr[+L]]Fl[−R] + R, R ! Fl[−Fr[−L]][+R], . Figure 9: The plants simulation after 5 iterations with 2 types of edges and 2 types of nodes. Comparing with the plants in figure 8, it looks more dense. 3 Iterated Function Systems The iteration function system (IFS for short) can be done in two ways: deterministic iteration (section 3.1) or chaos game, also called random itera- 9 tion (section 3.2). To understand the IFS, we have to consider concepts like af fine transformation, Hausdorf f distance and contraction mapping. 3.1 Deterministic Iteration Think of a very special copy machine, the multiple reduction copy machine (MRCM for short). Starting with for example a black triangle in figure 2, it produces more than one transformation, three in the Sierpinski case. Putting again the copy in the MRCM, the outcome will be 9 small triangles, all similar to the original one. Repeating over and over again we believe we come closer and closer to the fractal. To be more mathematical we have to specify what kind of transformations are allowed and what we mean with closeness. The MRCM can be described by affine transformations, see definition 3.2 and table 1.
Recommended publications
  • Fractals and the Chaos Game
    University of Nebraska - Lincoln DigitalCommons@University of Nebraska - Lincoln MAT Exam Expository Papers Math in the Middle Institute Partnership 7-2006 Fractals and the Chaos Game Stacie Lefler University of Nebraska-Lincoln Follow this and additional works at: https://digitalcommons.unl.edu/mathmidexppap Part of the Science and Mathematics Education Commons Lefler, Stacie, "Fractals and the Chaos Game" (2006). MAT Exam Expository Papers. 24. https://digitalcommons.unl.edu/mathmidexppap/24 This Article is brought to you for free and open access by the Math in the Middle Institute Partnership at DigitalCommons@University of Nebraska - Lincoln. It has been accepted for inclusion in MAT Exam Expository Papers by an authorized administrator of DigitalCommons@University of Nebraska - Lincoln. Fractals and the Chaos Game Expository Paper Stacie Lefler In partial fulfillment of the requirements for the Master of Arts in Teaching with a Specialization in the Teaching of Middle Level Mathematics in the Department of Mathematics. David Fowler, Advisor July 2006 Lefler – MAT Expository Paper - 1 1 Fractals and the Chaos Game A. Fractal History The idea of fractals is relatively new, but their roots date back to 19 th century mathematics. A fractal is a mathematically generated pattern that is reproducible at any magnification or reduction and the reproduction looks just like the original, or at least has a similar structure. Georg Cantor (1845-1918) founded set theory and introduced the concept of infinite numbers with his discovery of cardinal numbers. He gave examples of subsets of the real line with unusual properties. These Cantor sets are now recognized as fractals, with the most famous being the Cantor Square .
    [Show full text]
  • Strictly Self-Similar Fractals Composed of Star-Polygons That Are Attractors of Iterated Function Systems
    Strictly self-similar fractals composed of star-polygons that are attractors of Iterated Function Systems. Vassil Tzanov February 6, 2015 Abstract In this paper are investigated strictly self-similar fractals that are composed of an infinite number of regular star-polygons, also known as Sierpinski n-gons, n-flakes or polyflakes. Construction scheme for Sierpinsky n-gon and n-flake is presented where the dimensions of the Sierpinsky -gon and the -flake are computed to be 1 and 2, respectively. These fractals are put1 in a general context1 and Iterated Function Systems are applied for the visualisation of the geometric iterations of the initial polygons, as well as the visualisation of sets of points that lie on the attractors of the IFS generated by random walks. Moreover, it is shown that well known fractals represent isolated cases of the presented generalisation. The IFS programming code is given, hence it can be used for further investigations. arXiv:1502.01384v1 [math.DS] 4 Feb 2015 1 1 Introduction - the Cantor set and regular star-polygonal attractors A classic example of a strictly self-similar fractal that can be constructed by Iterated Function System is the Cantor Set [1]. Let us have the interval E = [ 1; 1] and the contracting maps − k k 1 S1;S2 : R R, S1(x) = x=3 2=3, S2 = x=3 + 2=3, where x E. Also S : S(S − (E)) = k 0 ! − 2 S (E), S (E) = E, where S(E) = S1(E) S2(E). Thus if we iterate the map S infinitely many times this will result in the well known Cantor[ Set; see figure 1.
    [Show full text]
  • The Chaos Game
    Complexity is around us. Part one: the chaos game Dawid Lubiszewski Complex phenomena – like structures or processes – are intriguing scientists around the world. There are many reasons why complexity is a popular topic of research but I am going to describe just three of them. The first one seems to be very simple and says “we live in a complex world”. However complex phenomena not only exist in our environment but also inside us. Probably due to our brain with millions of neurons and many more neuronal connections we are the most complex things in the universe. Therefore by understanding complex phenomena we can better understand ourselves. On the other hand studying complexity can be very interesting because it surprises scientists at least in two ways. The first way is connected with the moment of discovery. When scientists find something new e.g. life-like patterns in John Conway’s famous cellular automata The Game of Life (Gardner 1970) they find it surprising: In Conway's own words, When we first tracked the R-pentamino... some guy suddenly said "Come over here, there's a piece that's walking!" We came over and found the figure...(Ilachinski 2001). However the phenomenon of surprise is not only restricted to scientists who study something new. Complexity can be surprising due to its chaotic nature. It is a well known phenomenon, but restricted to a special class of complex systems and it is called the butterfly effect. It happens when changing minor details in the system has major impacts on its behavior (Smith 2007).
    [Show full text]
  • Information to Users
    INFORMATION TO USERS This manuscript has been reproduced from the microfilm master. UMI films the text directly from the original or copy submitted. Thus, some thesis and dissertation copies are in typewriter face, while others may be from any type of computer printer. The quality of this reproduction is dependent upon the quality of the copy submitted. Broken or indistinct print, colored or poor quality illustrations and photographs, print bleedthrough, substandard margins, and improper alignment can adversely affect reproduction. In the unlikely event that the author did not send UMI a complete manuscript and there are missing pages, these will be noted. Also, if unauthorized copyright material had to be removed, a note will indicate the deletion. Oversize materials (e.g., maps, drawings, charts) are reproduced by sectioning the original, beginning at the upper left-hand comer and continuing from left to right in equal sections with small overlaps. Each original is also photographed in one exposure and is included in reduced form at the back of the book. Photographs included in the original manuscript have been reproduced xerographically in this copy. Higher quality 6" x 9" black and white photographic prints are available for any photographs or illustrations appearing in this copy for an additional charge. Contact UMI directly to order. University Microfilms International A Bell & Howell Information Company 300 North Zeeb Road. Ann Arbor, Ml 48106-1346 USA 313/761-4700 800/521-0600 Order Number 9427736 Exploring the computational capabilities of recurrent neural networks Kolen, John Frederick, Ph.D. The Ohio State University, 1994 Copyright ©1994 by Kolen, John Frederick.
    [Show full text]
  • Linear Algebra Linear Algebra and Fractal Structures MA 242 (Spring 2013) – Affine Transformations, the Barnsley Fern, Instructor: M
    Linear Algebra Linear Algebra and fractal structures MA 242 (Spring 2013) – Affine transformations, the Barnsley fern, Instructor: M. Chirilus-Bruckner Charnia and the early evolution of life – A fractal (fractus Latin for broken, uneven) is an object or quantity that displays self-similarity, i.e., for which any suitably chosen part is similar in shape to a given larger or smaller part when magnified or reduced to the same size. The object need not exhibit exactly the same structure at all scales, but the same ”type” of structures must appear on all scales. sources: http://mathworld.wolfram.com/Fractal.html and http://www.merriam-webster.com/dictionary/fractal The Barnsley fern is an example of a fractal that is cre- ated by an iterated function system, in which a point (the seed or pre-image) is repeatedly transformed by using one of four transformation functions. A random process de- termines which transformation function is used at each step. The final image emerges as the iterations continue. The transformations are affine transformations T1,...,T4 of the form x Tj (x,y)= Aj + vj y where Aj is a 2 × 2 -matrix and vj is a vector. An affine transformation is any transformation that preserves collinearity (i.e., all points lying on a line initially still lie on a line after transformation) and ratios of distances (e.g., the midpoint of a line segment remains the midpoint after transformation). In general, an affine transformation is a composition of rotations, translations, dilations, and shears. While an affine transformation preserves proportions on lines, it does not necessarily preserve angles or lengths.
    [Show full text]
  • Bridges Conference Proceedings Guidelines
    Proceedings of Bridges 2014: Mathematics, Music, Art, Architecture, Culture An Introduction to Leaping Iterated Function Systems Mingjang Chen Center for General Education National Chiao Tung University 1001 University Rd. Hsinchu, Taiwan E-mail: [email protected] Abstract The concept of “Leaping Iterated Function Systems (LIFS in short)” is a variation of Iterated Function Systems (IFS), that originated from “self-similarity”, i.e., the whole has the same shape as one or more of the parts. The methodology of Leaping IFS is first to construct a structure of the whole by parts, then to convert it to an image, and then to replace each part with this image. Repeat the procedures until the outcome is visually satisfied. One of the key features of Leaping IFS is that computer resource consumption will be under control during the iterations because the number of parts in the whole structure is fixed. Introduction Iterated Function Systems (IFS) is an interactive method of constructing fractals. First proposed by John Hutchinson [2] in 1981, Michael Barnsley [1] then applied this method to imitate self-similar patterns in the real-world. Translation, rotation, scaling, reflection, and shearing are included in the function system of linear fractals; their relative positions, orientations and scaling of geometry elements are used to define 2D geometrical transformation visually. In particular, the concept of the Multiple Reduction Copy Machine algorithm (MRCM) was used [6] to introduce IFS. An interactive IFS Fractal generator based on “the Collage Theorem" allows users to sketch first an approximate outline of the desired fractal, and then cover it with deformed images of itself to achieve the collage and then render the attractor.
    [Show full text]
  • Julia Fractals in Postscript Fractal Geometry II
    Kees van der Laan EUROTEX 2012 & 6CM PROCEEDINGS 47 Julia fractals in PostScript Fractal Geometry II In memory of Hans Lauwerier Abstract Lauwerier’s BASIC codes for visualization of the usual Julia fractals: JULIAMC, JULIABS, JULIAF, JULIAD, JULIAP, of the Mandelbrot fractal MANDELx, MANDIS, MANDET and his codes for the advanced circular symmetric Julia fractals JULIAS, JULIASYMm, JULIASYM, FRACSYMm, as well as the classical 1D bifurcation picture Collet, have been converted into PostScript defs. Examples of use are included. A glimpse into Chaos theory, in order to understand the principles and peculiarities underlying Julia sets, is given. Bifurcation diagrams of the Ver- hulst model of limited growth and of the Julia quadratic dynamical system — M-fractal — have been included. Barnsley’s triples: fractal, IFS and equivalent dynamical system are in- troduced. How to use the beginnings of colours in PostScript is explained. How to obtain Julia fractals via Stuif’s Julia fractal viewer, and via the special fractal packages Winfract, XaoS, and Fractalus is dealt with. From BASIC codes to PostScript library defs entails soft- ware engineering skills. The paper exhibits experimental fractal geometry, practical use of minimal TEX, as well as ample EPSF programming, and is the result of my next step in ac- quainting myself with Lauwerier’s 10+ years work on fractals. Keywords Acrobat Pro, Adobe, art, attractor, backtracking, Barnsley, BASIC, bifurcation, Cauchy con- vergence, chaos, circle symmetry, dynamical systems, EPSF, escape-time algorithm, Feigen- baum constant, fractal dimension D, Fractalus package, FIFO, fractal geometry, IDE (Inte- grated development Environment), IFS (Iterated Function System), Julia, Lauwerier, Man- delbrot, mathematical software, minimal encapsulated PostScript, minimal plain TeX, Monte Carlo, μ-geometry, periodic doubling, Photoshop, PSlib, PSView, repeller, self-similarity, software engineering, Stuif’s previewer, TEXworks, (adaptable) user space, Verhulst growth model, Winfract package, XaoS fractal package.
    [Show full text]
  • Chaos and Fractals Mew Frontiers of Science
    Hartmutlurgens DietmarSaupe Heinz-Otto Peitgen Chaos and Fractals Mew Frontiers of Science With 686 illustrations, 40 in color Contents Preface VII Authors XI Foreword 1 Mitchell J. Feigenbaum Introduction: Causality Principle, Deterministic Laws and Chaos 9 1 The Backbone of Fractals: Feedback and the Iterator 15 1.1 The Principle of Feedback 17 1.2 The Multiple Reduction Copy Machine 23 1.3 Basic Types of Feedback Processes 27 1.4 The Parable of the Parabola — Or: Don't Trust Your Computer 37 1.5 Chaos Wipes Out Every Computer ' 49 1.6 Program of the Chapter: Graphical Iteration 60 2 Classical Fractals and Self-Similarity 63 2.1 The Cantor Set 67 2.2 The Sierpinski Gasket and Carpet 78 2.3 The Pascal Triangle 82 2.4 The Koch Curve 89 2.5 Space-Filling Curves 94 2.6 Fractals and the Problem of Dimension 106 2.7 The Universality of the Sierpinski Carpet 112 2.8 Julia Sets 122 2.9 Pythagorean Trees 126 2.10 Program of the Chapter: Sierpinski Gasket by Binary Addresses • : . 132 3 Limits and Self-Similarity 135 3.1 Similarity and Scaling 138 3.2 Geometric Series and the Koch Curve 147 3.3 Corner the New from Several Sides: Pi and the Square Root of Two 153 3.4 Fractals as Solution of Equations 168 3.5 Program of the Chapter: The Koch Curve 179 XIV Table of Contents 4 Length, Area and Dimension: Measuring Complexity and Scaling Properties 183 4.1 Finite and Infinite Length of Spirals 185 4.2 Measuring Fractal Curves and Power Laws 192 4.3 Fractal Dimension 202 4.4 The Box-Counting Dimension 212 4.5 Borderline Fractals: Devil's Staircase
    [Show full text]
  • The H Fractal Self-Similarity Dimension Calculation Of
    Indian Journal of Fundamental and Applied Life Sciences ISSN: 2231– 6345 (Online) An Open Access, Online International Journal Available at www.cibtech.org/sp.ed/jls/2014/04/jls.htm 2014 Vol. 4 (S4), pp. 3231-3235/Saeid et al. Research Article THE H FRACTAL SELF-SIMILARITY DIMENSION CALCULATION OF PARDIS TECHNOLOGY PARK IN TEHRAN (IRAN) *Saeid Rahmatabadi, Shabnam Akbari Namdar and Maryam Singery Department of Architecture, College of Art and Architecture, Tabriz Branch, Islamic Azad University, Tabriz, Iran *Author for Correspondence ABSTRACT The main purpose of this research is to find fractal designs in designing Pardis Technology Park in Tehran(Iran). In fact, we are seeking fractals in designing this work that has three characteristics of self- similarity, formation through repetition and lack of correct dimension. In this project, from the view of the author the site has a fractal, which is H- form that it is used in the plan and the plan form. We find the self-similarity dimension of the H fractal in this project. Keywords: Fractal, Self-similarity Dimension, Pardis Technology Park in Tehran(Iran) INTRODUCTION Fractals are self-similar sets whose patterns are made out of littler scales duplicated of them, having self- similarity crosswise over scales. This implies that they rehash the patterns to an unendingly little scale. An example with a higher fractal measurement is more confounded or eccentric than the one with a lower measurement, and fills more space. In numerous commonsense applications, worldly and spatial examination is expected to portray and measure the shrouded request in complex patterns, fractal geometry is a proper instrument for exploring such unpredictability over numerous scales for common phenomena (Mandelbrot, 1982; Burrough, 1983).
    [Show full text]
  • Fractals and the Collage Theorem
    University of Nebraska - Lincoln DigitalCommons@University of Nebraska - Lincoln MAT Exam Expository Papers Math in the Middle Institute Partnership 7-2006 Fractals and the Collage Theorem Sandra S. Snyder University of Nebraska-Lincoln Follow this and additional works at: https://digitalcommons.unl.edu/mathmidexppap Part of the Science and Mathematics Education Commons Snyder, Sandra S., "Fractals and the Collage Theorem" (2006). MAT Exam Expository Papers. 49. https://digitalcommons.unl.edu/mathmidexppap/49 This Article is brought to you for free and open access by the Math in the Middle Institute Partnership at DigitalCommons@University of Nebraska - Lincoln. It has been accepted for inclusion in MAT Exam Expository Papers by an authorized administrator of DigitalCommons@University of Nebraska - Lincoln. Fractals and the Collage Theorem Expository Paper Sandra S. Snyder In partial fulfillment of the requirements for the Master of Arts in Teaching with a Specialization in the Teaching of Middle Level Mathematics in the Department of Mathematics. David Fowler, Advisor. July 2006 Snyder – MAT Expository Paper - 1 Fractals and the Collage Theorem 1 A. Fractal History The idea of fractals is relatively new, but their roots date back to 19 th century mathematics. A fractal is a mathematically generated pattern that is reproducible at any magnification or reduction and the reproduction looks just like the original, or at least has a similar structure. Georg Cantor (1845-1918) founded set theory and introduced the concept of infinite numbers with his discovery of cardinal numbers. He gave examples of subsets of the real line with unusual properties. These Cantor sets are now recognized as fractals, with the most famous being the Cantor Square.
    [Show full text]
  • SALTER, JONATHAN R., DMA Chaos in Music
    SALTER, JONATHAN R., D.M.A. Chaos in Music: Historical Developments and Applications to Music Theory and Composition. (2009) Directed by Dr. Kelly Burke. 208 pp. The Doctoral Dissertation submitted by Jonathan R. Salter, in partial fulfillment of the requirements for the degree Doctor of Musical Arts at the University of North Carolina at Greensboro comprises the following: 1. Doctoral Recital I, March 24, 2007: Chausson, Andante et Allegro; Tomasi, Concerto for Clarinet; Bart´ok, Contrasts; Fitkin, Gate. 2. Doctoral Recital II, December 2, 2007: Benjamin, Le Tombeau de Ravel; Man- dat, Folk Songs; Bolcom, Concerto for Clarinet; Kov´acs, Sholem-alekhem, rov Fiedman! 3. Doctoral Recital III, May 3, 2009: Kalliwoda, Morceau du Salon; Shostakovich, Sonata, op. 94 (transcription by Kennan); Tailleferre, Arabesque; Schoenfield, Trio for Clarinet, Violin, and Piano. 4. Dissertation Document: Chaos in Music: Historical Developments and Appli- cations to Music Theory and Composition. Chaos theory, the study of nonlinear dynamical systems, has proven useful in a wide-range of applications to scientific study. Here, I analyze the application of these systems in the analysis and creation of music, and take a historical view of the musical developments of the 20th century and how they relate to similar developments in science. I analyze several 20th century works through the lens of chaos theory, and discuss how acoustical issues and our interpretation of music relate to the theory. The application of nonlinear functions to aspects of music including organization, acoustics and harmonics, and the role of chance procedures is also examined toward suggesting future possibilities in incorporating chaos theory in the act of composition.
    [Show full text]
  • Chaos Game Representation∗
    CHAOS GAME REPRESENTATION∗ EUNICE Y. S. CHANy AND ROBERT M. CORLESSz Abstract. The chaos game representation (CGR) is an interesting method to visualize one- dimensional sequences. In this paper, we show how to construct a chaos game representation. The applications mentioned here are biological, in which CGR was able to uncover patterns in DNA or proteins that were previously unknown. We also show how CGR might be introduced in the classroom, either in a modelling course or in a dynamical systems course. Some sequences that are tested are taken from the Online Encyclopedia of Integer Sequences, and others are taken from sequences that arose mainly from a course in experimental mathematics. Key words. Chaos game representation, iterated function systems, partial quotients of contin- ued fractions, sequences AMS subject classifications. 1. Introduction. Finding hidden patterns in long sequences can be both diffi- cult and valuable. Representing these sequence in a visual way can often help. The so-called chaos game representation (CGR) of a sequence of integers is a particularly useful technique, that visualizes a one-dimensional sequence in a two-dimensional space. The CGR is presented as a scatter plot (most frequently square), in which each corner represents an element that appears in the sequence. The results of these CGRs can look very fractal-like, but even so can be visually recognizable and distin- guishable. The distinguishing characteristics can be made quantitative, with a good notion of \distance between images." Many applications, such as analysis of DNA sequences [12, 15, 16, 18] and protein structure [4, 10], have shown the usefulness of CGR; we will discuss these applica- tions briefly in section4.
    [Show full text]