Newton Fractals

Total Page:16

File Type:pdf, Size:1020Kb

Newton Fractals Newton Fractals Complex Roots of Polynomials 1 Introduction Newton Fractals are a beautiful consequence of studying roots of polynomials, namely complex roots, and applying numerical methods like the Newton method to nd them. Introducing Newton Fractals to learners can be a great way to motivate the study of polynomials, complex numbers and numerical methods like the Newton method. 2 Complex Polynomials A polynomial of degree n is a function of the form n n−1 p(x) = anx + an−1x + ··· + a1x + a0 2 where an 6= 0. Quadratics, for example 2x + 3x − 2, are polynomials of degree 2. We can extend this idea to polynomials with complex coecients and a complex variable p z = x + iy. (Recall i = −1.) Denition 2.1. A polynomial with complex coecients is a function of the form n n−1 p(z) = anz + an−1z + ··· + a1z + a0 where , , and is a complex variable. If , then is the aj 2 C j = 0; 1; : : : ; n z an 6= 0 n degree of p(z). (The degree is essentially the highest power n of the polynomial.) 1 Example Below are some examples of polynomials with complex coecients of a complex variable z: (a) z2 + (8 + i)z + 4, (b) z16 − 64, (c) 147, p (d) (7 − 8i)z3 − (4 + 4i)z2 − 17, (e) z − 1. What is the degree of each of these polynomials? Solution. (a) The degree of this polynomial is 2, this is a quadratic polynomial. (b) The degree of this polynomial is 16. (c) The degree of this polynomial is 0, this is a constant polynomial. (d) The degree of this polynomial is 3, this is a cubic polynomial. (e) The degree of this polynomial is 1, this is a quadratic polynomial. 2.1 Roots of Complex Polynomials Let's introduce the following denition. n n−1 Denition 2.2. Let p(z) = anz + an−1z + ··· + a1z + a0 be a polynomial of degree n ≥ 1. A complex number r 2 C is called a root of p(z), if p(r) = 0. Finding roots of polynomials is a long-standing problem in mathematics and this is tes- tament to the fact that algebra meant essentially theory of polynomial equations up until the 19th century. Finding the root of a linear polynomial (degree 1) is rather trivial, b p(z) = az + b = 0 ) z = − a You are probably also familiar with nding roots of quadratic polynomials, either by factorisation or the quadratic formula, p −b ± b2 − 4ac p(z) = az2 + bz + c = 0 ) z = 2a An important (fundamental) result in algebra is known as the Fundamental Theorem of Algebra. We shall state here without proof. 2 Theorem 2.1 (Fundamental Theorem of Algebra). Let p(z) be a polynomial of degree n ≥ 1. Then p(z) always has a root r 2 C. This theorem states that a root always exists for a polynomial of degree greater or equal to one. The theorem however does not give us a method or algorithm to nd a root. Applying the Fundamental Theorem of Algebra repeatedly we can obtain the following result. Corollary 2.1. Let p(z) be a polynomial of degree n ≥ 1. Then there exists complex numbers , such that z1; z2; : : : ; zn 2 C p(z) = an(z − z1)(z − z2) ··· (z − zn): This corollary tells us that for any polynomial of degree n there are n roots. These root are in general complex and therefore may not be real. For example z1; z2; : : : ; zn 2 C z3 − 1 only has one real root z = 1, but Corollary 2.1 guarantees the existence of three roots in C. Let's investigate this with the following example. Example Find the three roots of z3 − 1. Solution. We know one root is z1 = 1 therefore, by Corollary 2.1 we can write the polynomial in the form, (z − 1)(az2 + bz + c) = az3 + (b − a)z2 + (c − b)z − c = z3 − 1 equating coecients, a = 1; b − a = 0; c − b = 0; c = 1; hence a = 1, b = 1, c = 1, and z3 − 1 = (z − 1)(z2 + z + 1) using the quadratic formula to obtain the roots of z2 + z + 1, p p −1 ± −3 −1 ± i 3 p z = = ; where i = −1: 2 2 Therefore, the three complex roots of z3 − 1 are, p p 1 3 1 3 z = 1; z = − + i ; z = − − i 1 2 2 2 3 2 2 We can plot the three roots of z3 − 1 are an Argand Diagram which is a representation of the complex numbers on a two-dimensional plane where the x-axis refers to the real part and the y-axis refers to the imaginary part of the complex number z = x+iy denoted Refzg = x and Imfzg = y. Below is an illustration of the Complex Plane (Argand Diagram) where we have identied the locations of the roots of z3 − 1. 3 Imfzg 1:5i p 1 3 1i z = − + i 2 2 2 0:5i −1:5 −1 −0:5 0:5 1 1:5 Refzg z1 = 1 −0:5i p 1 3 z = − − i 3 2 2 −1i −1:5i 2.2 Newton's Root Finding Method For polynomials of degree 3 and 4 solutions to the root nding problem can be found in general but this is too complicated for our purposes (but still worthy of investigation). For polynomials of degree 5 or higher there is in general no method to acquire the roots exactly. So, except for low degrees, root nding of polynomials consists of nding approximations of the roots using numerical methods. What we mean by numerical method is the an algorithm that given an initial guess at the root say z0 the method would then give us a new and improved approximation to the root say z1, we can then use z1 and the method will produce a further improvement to our approximation say z2. One numerical method which has this feature is called Newton's method and is described by the following recurrence relation, f(zn) zn+1 = zn − 0 f (zn) Newton's method uses the function in question f(z) and also it's derivative f 0(z) to improve an approximation to the root of f(z). This method is useful in practice because of it's extremely fast convergence. The distance from the root to each approximation is roughly squared at each iteration; assuming the distance between the root and the approximation is less than 1. So, if you start with a reasonably good approximation to 4 the root the Newton method can very quickly provide an excellent approximation to the root. Let's try the Newton method out with our test polynomial we studied earlier z3 −1. Example Use Newton's Method to nd an approximation to a root of the polynomial z3 − 1. (Experiment with dierent starting values z0.) Solution. In this case our function f(z) = z3 − 1 and we require the derivative f 0(z) = 3z2, Newton's method can be written, 3 zn − 1 zn+1 = zn − 2 : 3zn Since we studied this polynomial earlier we know the roots already, so let's start with an initial guess of z0 = 2 and see which root the iterative method above converges to, 3 3 z0 − 1 2 − 1 z1 = z0 − 2 = 2 − 2 = 1:416667; 3z0 3(2 ) 3 z1 − 1 z2 = z1 − 2 = 1:110534; 3z1 3 z2 − 1 z3 = z2 − 2 = 1:010637; 3z2 3 z3 − 1 z4 = z3 − 2 = 1:000112; 3z3 3 z4 − 1 z5 = z4 − 2 = 1:000000; 3z4 Working in 6 decimal places, after only 5 iterations we have acquired at least 6 −6 decimal places of accuracy in approximating the root r = 1, i.e., jz5 − rj < 10 . We can nd the other roots using Newton's method by just starting near to the corresponding root. For example if we let after iterations we obtain z0 = −1 + i 5 p −6 z5 = −0:5 + 0:866025 which an accuracy of 10 to the root r = −1=2 + i 3=2. What starting value could we try which would make the Newton method converge z0 p to the root r = −1=2 − i 3=2? 5 2.3 Python Programming Newton's Method All ready it is becoming a bit of a drag having to do these repeated computations by hand so how about we start using a bit of Python programming. On Canvas you can nd the complete program newton_method.py, here I will just show you the important parts of the code, highlighting where we have included the Newton method. 16 while error > Tol and count < nIteration: 17 count = count + 1 18 znew = z - (z**3-1)/(3*z**2)#newton method 19 error = abs(z - znew)#compute the error at this step 20 z = znew 21 print('{0:^6d}{1:^20.6f}'.format(count,z)) As you can see in the code above the Newton method is applied at line ##, where the variable z is the initial value and the variable znew is the new approximation after applying the Newton method. On line ## we store the new approximation znew into z and thus replace z with the new approximation value. We then print the iteration number count and this new approximation of the root, which has been stored in z, to the python console. This loop will continue to run until the error variable is no longer greater than the Tol variable which we set in the beginning of the code. (Don't worry to much about the print statement at this stage as it just looks a little complicated so that the output is well presented.) Now we have a better understanding of how the program newton_method.py works we can start experimenting with dierent starting values in the complex plane and see which root the Newton method will converge to.
Recommended publications
  • Mathematics Is a Gentleman's Art: Analysis and Synthesis in American College Geometry Teaching, 1790-1840 Amy K
    Iowa State University Capstones, Theses and Retrospective Theses and Dissertations Dissertations 2000 Mathematics is a gentleman's art: Analysis and synthesis in American college geometry teaching, 1790-1840 Amy K. Ackerberg-Hastings Iowa State University Follow this and additional works at: https://lib.dr.iastate.edu/rtd Part of the Higher Education and Teaching Commons, History of Science, Technology, and Medicine Commons, and the Science and Mathematics Education Commons Recommended Citation Ackerberg-Hastings, Amy K., "Mathematics is a gentleman's art: Analysis and synthesis in American college geometry teaching, 1790-1840 " (2000). Retrospective Theses and Dissertations. 12669. https://lib.dr.iastate.edu/rtd/12669 This Dissertation is brought to you for free and open access by the Iowa State University Capstones, Theses and Dissertations at Iowa State University Digital Repository. It has been accepted for inclusion in Retrospective Theses and Dissertations by an authorized administrator of Iowa State University Digital Repository. For more information, please contact [email protected]. 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 margwis, 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.
    [Show full text]
  • Introduction to Ultra Fractal
    Introduction to Ultra Fractal Text and images © 2001 Kerry Mitchell Table of Contents Introduction ..................................................................................................................................... 2 Assumptions ........................................................................................................................ 2 Conventions ........................................................................................................................ 2 What Are Fractals? ......................................................................................................................... 3 Shapes with Infinite Detail .................................................................................................. 3 Defined By Iteration ........................................................................................................... 4 Approximating Infinity ....................................................................................................... 4 Using Ultra Fractal .......................................................................................................................... 6 Starting Ultra Fractal ........................................................................................................... 6 Formula ............................................................................................................................... 6 Size .....................................................................................................................................
    [Show full text]
  • Rendering Hypercomplex Fractals Anthony Atella [email protected]
    Rhode Island College Digital Commons @ RIC Honors Projects Overview Honors Projects 2018 Rendering Hypercomplex Fractals Anthony Atella [email protected] Follow this and additional works at: https://digitalcommons.ric.edu/honors_projects Part of the Computer Sciences Commons, and the Other Mathematics Commons Recommended Citation Atella, Anthony, "Rendering Hypercomplex Fractals" (2018). Honors Projects Overview. 136. https://digitalcommons.ric.edu/honors_projects/136 This Honors is brought to you for free and open access by the Honors Projects at Digital Commons @ RIC. It has been accepted for inclusion in Honors Projects Overview by an authorized administrator of Digital Commons @ RIC. For more information, please contact [email protected]. Rendering Hypercomplex Fractals by Anthony Atella An Honors Project Submitted in Partial Fulfillment of the Requirements for Honors in The Department of Mathematics and Computer Science The School of Arts and Sciences Rhode Island College 2018 Abstract Fractal mathematics and geometry are useful for applications in science, engineering, and art, but acquiring the tools to explore and graph fractals can be frustrating. Tools available online have limited fractals, rendering methods, and shaders. They often fail to abstract these concepts in a reusable way. This means that multiple programs and interfaces must be learned and used to fully explore the topic. Chaos is an abstract fractal geometry rendering program created to solve this problem. This application builds off previous work done by myself and others [1] to create an extensible, abstract solution to rendering fractals. This paper covers what fractals are, how they are rendered and colored, implementation, issues that were encountered, and finally planned future improvements.
    [Show full text]
  • Lecture 9: Newton Method 9.1 Motivation 9.2 History
    10-725: Convex Optimization Fall 2013 Lecture 9: Newton Method Lecturer: Barnabas Poczos/Ryan Tibshirani Scribes: Wen-Sheng Chu, Shu-Hao Yu Note: LaTeX template courtesy of UC Berkeley EECS dept. 9.1 Motivation Newton method is originally developed for finding a root of a function. It is also known as Newton- Raphson method. The problem can be formulated as, given a function f : R ! R, finding the point x? such that f(x?) = 0. Figure 9.1 illustrates another motivation of Newton method. Given a function f, we want to approximate it at point x with a quadratic function fb(x). We move our the next step determined by the optimum of fb. Figure 9.1: Motivation for quadratic approximation of a function. 9.2 History Babylonian people first applied the Newton method to find the square root of a positive number S 2 R+. The problem can be posed as solving the equation f(x) = x2 − S = 0. They realized the solution can be achieved by applying the iterative update rule: 2 1 S f(xk) xk − S xn+1 = (xk + ) = xk − 0 = xk − : (9.1) 2 xk f (xk) 2xk This update rule converges to the square root of S, which turns out to be a special case of Newton method. This could be the first application of Newton method. The starting point affects the convergence of the Babylonian's method for finding the square root. Figure 9.2 shows an example of solving the square root for S = 100. x- and y-axes represent the number of iterations and the variable, respectively.
    [Show full text]
  • Newton.Indd | Sander Pinkse Boekproductie | 16-11-12 / 14:45 | Pag
    omslag Newton.indd | Sander Pinkse Boekproductie | 16-11-12 / 14:45 | Pag. 1 e Dutch Republic proved ‘A new light on several to be extremely receptive to major gures involved in the groundbreaking ideas of Newton Isaac Newton (–). the reception of Newton’s Dutch scholars such as Willem work.’ and the Netherlands Jacob ’s Gravesande and Petrus Prof. Bert Theunissen, Newton the Netherlands and van Musschenbroek played a Utrecht University crucial role in the adaption and How Isaac Newton was Fashioned dissemination of Newton’s work, ‘is book provides an in the Dutch Republic not only in the Netherlands important contribution to but also in the rest of Europe. EDITED BY ERIC JORINK In the course of the eighteenth the study of the European AND AD MAAS century, Newton’s ideas (in Enlightenment with new dierent guises and interpre- insights in the circulation tations) became a veritable hype in Dutch society. In Newton of knowledge.’ and the Netherlands Newton’s Prof. Frans van Lunteren, sudden success is analyzed in Leiden University great depth and put into a new perspective. Ad Maas is curator at the Museum Boerhaave, Leiden, the Netherlands. Eric Jorink is researcher at the Huygens Institute for Netherlands History (Royal Dutch Academy of Arts and Sciences). / www.lup.nl LUP Newton and the Netherlands.indd | Sander Pinkse Boekproductie | 16-11-12 / 16:47 | Pag. 1 Newton and the Netherlands Newton and the Netherlands.indd | Sander Pinkse Boekproductie | 16-11-12 / 16:47 | Pag. 2 Newton and the Netherlands.indd | Sander Pinkse Boekproductie | 16-11-12 / 16:47 | Pag.
    [Show full text]
  • Generating Fractals Using Complex Functions
    Generating Fractals Using Complex Functions Avery Wengler and Eric Wasser What is a Fractal? ● Fractals are infinitely complex patterns that are self-similar across different scales. ● Created by repeating simple processes over and over in a feedback loop. ● Often represented on the complex plane as 2-dimensional images Where do we find fractals? Fractals in Nature Lungs Neurons from the Oak Tree human cortex Regardless of scale, these patterns are all formed by repeating a simple branching process. Geometric Fractals “A rough or fragmented geometric shape that can be split into parts, each of which is (at least approximately) a reduced-size copy of the whole.” Mandelbrot (1983) The Sierpinski Triangle Algebraic Fractals ● Fractals created by repeatedly calculating a simple equation over and over. ● Were discovered later because computers were needed to explore them ● Examples: ○ Mandelbrot Set ○ Julia Set ○ Burning Ship Fractal Mandelbrot Set ● Benoit Mandelbrot discovered this set in 1980, shortly after the invention of the personal computer 2 ● zn+1=zn + c ● That is, a complex number c is part of the Mandelbrot set if, when starting with z0 = 0 and applying the iteration repeatedly, the absolute value of zn remains bounded however large n gets. Animation based on a static number of iterations per pixel. The Mandelbrot set is the complex numbers c for which the sequence ( c, c² + c, (c²+c)² + c, ((c²+c)²+c)² + c, (((c²+c)²+c)²+c)² + c, ...) does not approach infinity. Julia Set ● Closely related to the Mandelbrot fractal ● Complementary to the Fatou Set Featherino Fractal Newton’s method for the roots of a real valued function Burning Ship Fractal z2 Mandelbrot Render Generic Mandelbrot set.
    [Show full text]
  • Newton's Mathematical Physics
    Isaac Newton A new era in science Waseda University, SILS, Introduction to History and Philosophy of Science LE201, History and Philosophy of Science Newton . Newton’s Legacy Newton brought to a close the astronomical revolution begun by Copernicus. He combined the dynamic research of Galileo with the astronomical work of Kepler. He produced an entirely new cosmology and a new way of thinking about the world, based on the interaction between matter and mathematically determinate forces. He joined the mathematical and experimental methods: the hypothetico-deductive method. His work became the model for rational mechanics as it was later practiced by mathematicians, particularly during the Enlightenment. LE201, History and Philosophy of Science Newton . William Blake’s Newton (1795) LE201, History and Philosophy of Science Newton LE201, History and Philosophy of Science Newton . Newton’s De Motu coporum in gyrum Edmond Halley (of the comet) visited Cambridge in 1684 and 1 talked with Newton about inverse-square forces (F 9 d2 ). Newton stated that he has already shown that inverse-square force implied an ellipse, but could not find the documents. Later he rewrote this into a short document called De Motu coporum in gyrum, and sent it to Halley. Halley was excited and asked for a full treatment of the subject. Two years later Newton sent Book I of The Mathematical Principals of Natural Philosophy (Principia). Key Point The goal of this project was to derive the orbits of bodies from a simpler set of assumptions about motion. That is, it sought to explain Kepler’s Laws with a simpler set of laws.
    [Show full text]
  • The Newton Fractal's Leonardo Sequence Study with the Google
    INTERNATIONAL ELECTRONIC JOURNAL OF MATHEMATICS EDUCATION e-ISSN: 1306-3030. 2020, Vol. 15, No. 2, em0575 OPEN ACCESS https://doi.org/10.29333/iejme/6440 The Newton Fractal’s Leonardo Sequence Study with the Google Colab Francisco Regis Vieira Alves 1*, Renata Passos Machado Vieira 1 1 Federal Institute of Science and Technology of Ceara - IFCE, BRAZIL * CORRESPONDENCE: [email protected] ABSTRACT The work deals with the study of the roots of the characteristic polynomial derived from the Leonardo sequence, using the Newton fractal to perform a root search. Thus, Google Colab is used as a computational tool to facilitate this process. Initially, we conducted a study of the Leonardo sequence, addressing it fundamental recurrence, characteristic polynomial, and its relationship to the Fibonacci sequence. Following this study, the concept of fractal and Newton’s method is approached, so that it can then use the computational tool as a way of visualizing this technique. Finally, a code is developed in the Phyton programming language to generate Newton’s fractal, ending the research with the discussion and visual analysis of this figure. The study of this subject has been developed in the context of teacher education in Brazil. Keywords: Newton’s fractal, Google Colab, Leonardo sequence, visualization INTRODUCTION Interest in the study of homogeneous, linear and recurrent sequences is becoming more and more widespread in the scientific literature. Therefore, the Fibonacci sequence is the best known and studied in works found in the literature, such as Oliveira and Alves (2019), Alves and Catarino (2019). In these works, we can see an investigation and exploration of the Fibonacci sequence and the complexification of its mathematical model and the generalizations that result from it.
    [Show full text]
  • Lecture 1: What Is Calculus?
    Math1A:introductiontofunctionsandcalculus OliverKnill, 2012 Lecture 1: What is Calculus? Calculus formalizes the process of taking differences and taking sums. Differences measure change, sums explore how things accumulate. The process of taking differences has a limit called derivative. The process of taking sums will lead to the integral. These two pro- cesses are related in an intimate way. In this first lecture, we look at these two processes in the simplest possible setup, where functions are evaluated only on integers and where we do not take any limits. About 25’000 years ago, numbers were represented by units like 1, 1, 1, 1, 1, 1,... for example carved in the fibula bone of a baboon1. It took thousands of years until numbers were represented with symbols like today 0, 1, 2, 3, 4,.... Using the modern concept of function, we can say f(0) = 0, f(1) = 1, f(2) = 2, f(3) = 3 and mean that the function f assigns to an input like 1001 an output like f(1001) = 1001. Lets call Df(n) = f(n + 1) − f(n) the difference between two function values. We see that the function f satisfies Df(n) = 1 for all n. We can also formalize the summation process. If g(n) = 1 is the function which is constant 1, then Sg(n) = g(0) + g(1) + ... + g(n − 1) = 1 + 1 + ... + 1 = n. We see that Df = g and Sg = f. Now lets start with f(n) = n and apply summation on that function: Sf(n) = f(0) + f(1) + f(2) + ..
    [Show full text]
  • William Blake 1 William Blake
    William Blake 1 William Blake William Blake William Blake in a portrait by Thomas Phillips (1807) Born 28 November 1757 London, England Died 12 August 1827 (aged 69) London, England Occupation Poet, painter, printmaker Genres Visionary, poetry Literary Romanticism movement Notable work(s) Songs of Innocence and of Experience, The Marriage of Heaven and Hell, The Four Zoas, Jerusalem, Milton a Poem, And did those feet in ancient time Spouse(s) Catherine Blake (1782–1827) Signature William Blake (28 November 1757 – 12 August 1827) was an English poet, painter, and printmaker. Largely unrecognised during his lifetime, Blake is now considered a seminal figure in the history of the poetry and visual arts of the Romantic Age. His prophetic poetry has been said to form "what is in proportion to its merits the least read body of poetry in the English language".[1] His visual artistry led one contemporary art critic to proclaim him "far and away the greatest artist Britain has ever produced".[2] In 2002, Blake was placed at number 38 in the BBC's poll of the 100 Greatest Britons.[3] Although he lived in London his entire life except for three years spent in Felpham[4] he produced a diverse and symbolically rich corpus, which embraced the imagination as "the body of God",[5] or "Human existence itself".[6] Considered mad by contemporaries for his idiosyncratic views, Blake is held in high regard by later critics for his expressiveness and creativity, and for the philosophical and mystical undercurrents within his work. His paintings William Blake 2 and poetry have been characterised as part of the Romantic movement and "Pre-Romantic",[7] for its large appearance in the 18th century.
    [Show full text]
  • Cao Flyer.Pdf
    Chaos and Order - A Mathematic Symphony Journey into the Language of the Universe! “The Universe is made of math.” — Max Tegmark, MIT Physicist Does mathematics have a color? Does it have a sound? Media artist Rocco Helmchen and composer Johannes Kraas try to answer these questions in their latest educational/entertainment full- dome show Chaos and Order - A Mathematic Symphony. The show captivates audiences by taking them on a journey into a fascinating world of sensuous, ever-evolving images and symphonic electronic music. Structured into four movements — from geometric forms, algo- rithms, simulations to chaos theory — the show explores breath- taking animated visuals of unprecedented beauty. Experience the fundamental connection between reality and mathematics, as science and art are fused together in this immer- sive celebration of the one language of our universe. Visualizations in Chaos and Order - A Mathematic Symphony Running time: 29, 40, or 51 minutes Year of production: 2012 Suitable for: General public 1st Movement - 2nd Movement - 3rd Movement - 4th Movement - Information about: Mathematical visualizations, fractals, music Form Simulation Algorithm Fractal Mesh cube N-body simulation Belousov- Mandelbrot set Public performance of this show requires the signing of a License Agreement. Static cube-array Simulated galaxy- Zhabotinsky cellular Secant Fractal Symmetry: superstructures automata Escape Fractal Kaleidoscope Rigid-body dynamics Evolutionary genetic Iterated function Chaos and Order - A Mathematic Symphony Voronoi
    [Show full text]
  • Fractal Newton Basins
    FRACTAL NEWTON BASINS M. L. SAHARI AND I. DJELLIT Received 3 June 2005; Accepted 14 August 2005 The dynamics of complex cubic polynomials have been studied extensively in the recent years. The main interest in this work is to focus on the Julia sets in the dynamical plane, and then is consecrated to the study of several topics in more detail. Newton’s method is considered since it is the main tool for finding solutions to equations, which leads to some fantastic images when it is applied to complex functions and gives rise to a chaotic sequence. Copyright © 2006 M. L. Sahari and I. Djellit. This is an open access article distributed under the Creative Commons Attribution License, which permits unrestricted use, dis- tribution, and reproduction in any medium, provided the original work is properly cited. 1. Introduction Isaac Newton discovered what we now call Newton’s method around 1670. Although Newton’s method is an old application of calculus, it was discovered relatively recently that extending it to the complex plane leads to a very interesting fractal pattern. We have focused on complex analysis, that is, studying functions holomorphic on a domain in the complex plane or holomorphic mappings. It is a very exciting field, in which many new phenomena wait to be discovered (and have been discovered). It is very closely linked with fractal geometry, as the basins of attraction for Newton’s method have fractal character in many instances. We are interested in geometric problems, for example, the boundary behavior of conformal mappings. In mathematics, dynamical systems have become popular for another reason: beautiful pictures.
    [Show full text]