Download/1754/19024/File/Introscilab.Pdf D

Download/1754/19024/File/Introscilab.Pdf D

11/02/2015 Visualizing Marden’s theorem with Scilab Klaus Rohe, 85625 Glonn, Germany, email: [email protected] Abstract A theorem which is named after the American Mathematician Moris Marden states a very surprising and interesting fact concerning the relationship between the points of a triangle in the complex plane and the zeros of two complex polynomials related to this triangle. Suppose the zeroes z1, z2, and z3 of a third-degree polynomial p(z) are non-collinear. There is a unique ellipse inscribed in the triangle with vertices z1, z2, z3 and tangent to the sides at their midpoints: the Steiner in-ellipse. The foci of that ellipse are the zeroes of the derivative p'(z). (Wikipedia contributors, "Marden's theorem", http://en.wikipedia.org/wiki/Marden%27s_theorem). This document describes how Scilab, a popular and powerful open source alternative to MATLAB, can be used to visualize the above stated theorem for arbitrary complex numbers z1, z2, and z3 which are not collinear. It is further demonstrated how the equations of the Steiner ellipses of a triangle in the complex plane can be calculated and plotted by applying this theorem. 1 11/02/2015 Content 1 Introduction .......................................................................................................................................... 3 2 Preliminary mathematical topics.......................................................................................................... 4 2.1 Computing the foci of the ellipse .................................................................................................. 4 2.2 Computing the equation of the ellipse.......................................................................................... 5 3 Scilab implementation ........................................................................................................................ 10 3.1 Brief Specification of the Scilab application to visualize Marden’s theorem .............................. 10 3.2 Input of the values 풛ퟏ, 풛ퟐ and 풛ퟑand “main” program ............................................................ 11 3.3 Calculating the foci 풛푭ퟏand 풛푭ퟐ the semi major axis and the equation parameters of the Steiner in-ellipse ................................................................................................................................ 13 3.3.1 Calculating the foci 풛푭ퟏand 풛푭ퟐof the Steiner in-ellipse and three points on it ................ 13 3.3.2 Calculating additional points on the ellipse to determine its equation ............................... 15 3.4 Display the triangle and its Steiner in-ellipse in a graphics window ........................................... 17 5 Executing the Scilab application ......................................................................................................... 20 5.1 General triangle ........................................................................................................................... 20 5.2 Isosceles triangle ......................................................................................................................... 21 5.3 Equilateral triangle ...................................................................................................................... 22 6 References .......................................................................................................................................... 23 Appendix ................................................................................................................................................ 24 (I) The foci and a given point on the ellipse are defining it uniquely ................................................ 24 (II) Plotting the Steiner in- and circum-ellipse of a triangle .............................................................. 25 (III) Organization of the source code ................................................................................................. 30 2 11/02/2015 1 Introduction The following theorem which is named after the American Mathematician Moris Marden states a very surprising and interesting fact concerning the relationship between the points of a triangle in the complex plane and the zeros of two complex polynomials related to that triangle. The theorem is quoted from reference [7]: Suppose the zeroes z1, z2, and z3 of a third-degree polynomial p(z) are non-collinear. There is a unique ellipse inscribed in the triangle with vertices z1, z2, z3 and tangent to the sides at their midpoints: the Steiner in-ellipse. The foci of that ellipse are the zeroes of the derivative p'(z). An elementary proof of the theorem is given in [3]. It is also mentioned in this reference that the theorem has been published by J. Siebeck in 1864 in the Journal für die Reine und Angewandte Mathematik, Vol. 64, page 175- 182. Another source where the essential propositions of the above theorem are stated is reference [2], page 155. In the following it is shown how, Scilab1 a popular and powerful open source alternative to MATLAB, can be applied to visualize the above stated theorem for arbitrary complex numbers z1, z2, and z3. The release of Scilab which will be used is the current version 5.5.1. This is not intended to be an introduction to Scilab rather it should be regarded as a case study which shows by example how Scilab can be applied to solve a given mathematical problem. Before we are going to write the code to visualize this theorem with Scilab we have to carry out some preliminary mathematical tasks: 1) We have to compute the zeros of p'(z) to get the actual values 풛푭ퟏ and 풛푭ퟐ for the foci of the ellipse2. 2) From z1, z2, z3, 풛푭ퟏ and 풛푭ퟐ we have to determine the equation of the ellipse which in general has the structure 푨 ∗ 풙ퟐ + 푩 ∗ 풙 ∗ 풚 + 푪 ∗ 풚ퟐ + 푫 ∗ 풙 + 푬 ∗ 풚 + 푭 = ퟎ. This means we have to calculate the concrete values of the six coefficients 푨 to 푭. To understand the following mathematical derivations it is the assumed that the reader is familiar with complex numbers and the basic features of conics and especially the ellipse. 1See URLs in reference [6], c) and d) are a very good tutorial like introductions to Scilab. 2 In this paper I will not distinguish between a complex number z and the point which represents it in the complex plane also called the Gauss or Argand plane. 3 11/02/2015 2 Preliminary mathematical topics 2.1 Computing the foci of the ellipse The complex polynomial 풑(풛) with roots 풛ퟏ, 풛ퟐ, 풛ퟑ can be written as 풑(풛) = (풛 − 풛ퟏ) ∗ (풛 − 풛ퟐ) ∗ (풛 − 풛ퟑ) which can be expanded to ퟑ ퟐ 풑(풛) = 풛 + (풛ퟏ + 풛ퟐ + 풛ퟑ) ∗ 풛 + (풛ퟏ ∗ 풛ퟐ + 풛ퟏ ∗ 풛ퟑ + 풛ퟐ ∗ 풛ퟑ) ∗ 풛 − 풛ퟏ ∗ 풛ퟐ ∗ 풛ퟑ The first derivative of this polynomial is 풅풑 ′ ퟐ = 풑 (풛) = ퟑ ∗ 풛 + ퟐ ∗ (풛 + 풛 + 풛 ) ∗ 풛 + 풛 ∗ 풛 + 풛 ∗ 풛 + 풛 ∗ 풛 풅풛 ퟏ ퟐ ퟑ ퟏ ퟐ ퟏ ퟑ ퟐ ퟑ To compute the zeros of the derivative we have to solve the quadratic equation ퟐ (1) ퟑ ∗ 풛 + ퟐ ∗ (풛ퟏ + 풛ퟐ + 풛ퟑ) ∗ 풛 + 풛ퟏ ∗ 풛ퟐ + 풛ퟏ ∗ 풛ퟑ + 풛ퟐ ∗ 풛ퟑ = ퟎ If we define 풂 = (풛ퟏ + 풛ퟐ + 풛ퟑ) and 풃 = 풛ퟏ ∗ 풛ퟐ + 풛ퟏ ∗ 풛ퟑ + 풛ퟐ ∗ 풛ퟑ equation (1) becomes ퟐ∗ 풂 풛ퟐ + ∗ 풛 + 풃 = ퟎ. This equation has the solutions ퟑ ퟏ 풂 풃 (ퟏ)풛 = ∗ (풂 + √풂ퟐ − ퟑ ∗ 풃) = + √풂ퟐ − 푭ퟏ ퟑ ퟑ ퟑ ퟏ 풂 풃 (ퟐ)풛 = ∗ (풂 − √풂ퟐ − ퟑ ∗ 풃) = − √풂ퟐ − 푭ퟐ ퟑ ퟑ ퟑ Substituting 풂 and 풃3 in the above equations and expanding the resulting terms gives the following results ퟏ 풛 = ∗ (풛 + 풛 + 풛 + √(풛ퟐ + 풛ퟐ + 풛ퟐ) − (풛 ∗ 풛 + 풛 ∗ 풛 + 풛 ∗ 풛 )) 푭ퟏ ퟑ ퟏ ퟐ ퟑ ퟏ ퟐ ퟐ ퟏ ퟐ ퟏ ퟑ ퟐ ퟑ ퟏ 풛 = ∗ (풛 + 풛 + 풛 − √(풛ퟐ + 풛ퟐ + 풛ퟐ) − (풛 ∗ 풛 + 풛 ∗ 풛 + 풛 ∗ 풛 )) 푭ퟐ ퟑ ퟏ ퟐ ퟑ ퟏ ퟐ ퟐ ퟏ ퟐ ퟏ ퟑ ퟐ ퟑ The complex numbers 풛푭ퟏand 풛푭ퟐrepresent the foci of the ellipse we are looking for. To specify this ellipse uniquely we need at least one point on the ellipse (see appendix(I)). As Marden’s theorem states “…and tangent to the sides at their midpoints…” it follows that the complex numbers 풛ퟏ+ 풛ퟐ 풛ퟏ+ 풛ퟑ 풛ퟐ+ 풛ퟑ 풛 = , 풛 = and 풛 = are all part of this ellipse. 푬ퟏ ퟐ 푬ퟐ ퟐ 푬ퟑ ퟐ We now consider the special case that the quadratic equation (1) has one solution only which ퟐ ퟐ ퟑ happens if (풛ퟏ + 풛ퟐ + 풛ퟐ) − (풛ퟏ ∗ 풛ퟐ + 풛ퟏ ∗ 풛ퟑ + 풛ퟐ ∗ 풛ퟑ) = ퟎ. It follows that the identity ퟐ ퟐ ퟑ 풛ퟏ + 풛ퟐ + 풛ퟐ = 풛ퟏ ∗ 풛ퟐ + 풛ퟏ ∗ 풛ퟑ + 풛ퟐ ∗ 풛ퟑ holds. According to reference [4], page 76 this is equivalent to the fact that the numbers 풛ퟏ, 풛ퟐ, 풛ퟑ are the vertices of an equilateral triangle in the 3 Not to be confused with the semi major and minor axes of the ellipse which are usually named with the same characters. 4 11/02/2015 complex plane. Because of 풛푭ퟏ = 풛푭ퟐ the ellipse is a circle. It is the in-circle of this equilateral triangle. So the ellipse we are looking for is uniquely characterized by the following complex numbers: The two foci: ퟏ 풛 = ∗ (풛 + 풛 + 풛 + √(풛ퟐ + 풛ퟐ + 풛ퟐ) − (풛 ∗ 풛 + 풛 ∗ 풛 + 풛 ∗ 풛 )) 푭ퟏ ퟑ ퟏ ퟐ ퟑ ퟏ ퟐ ퟐ ퟏ ퟐ ퟏ ퟑ ퟐ ퟑ ퟏ 풛 = ∗ (풛 + 풛 + 풛 − √(풛ퟐ + 풛ퟐ + 풛ퟐ) − (풛 ∗ 풛 + 풛 ∗ 풛 + 풛 ∗ 풛 )) 푭ퟐ ퟑ ퟏ ퟐ ퟑ ퟏ ퟐ ퟐ ퟏ ퟐ ퟏ ퟑ ퟐ ퟑ Three points on the ellipse: 풛ퟏ + 풛ퟐ 풛 = 푬ퟏ ퟐ 풛ퟏ + 풛ퟑ 풛 = 푬ퟐ ퟐ 풛ퟐ + 풛ퟑ 풛 = 푬ퟑ ퟐ Box 1 Formulas to compute the foci and three points on the Steiner in-ellipse ퟐ 풛 + 풛 ∗(풛 + 풛 +풛 ) 푭ퟏ 푭ퟐ ퟑ ퟏ ퟐ ퟑ 풛ퟏ+ 풛ퟐ+풛ퟑ The center of the ellipse is 풛 = = = . So 풛 is also the centroid of ퟎ ퟐ ퟐ ퟑ ퟎ the triangle with vertices 풛ퟏ, 풛ퟐ, 풛ퟑ. Using 풛ퟎ and give considerations to the equations (1) and (2) above the equations for the foci can be rewritten as (see reference [4], page 680): 풛ퟏ ∗ 풛ퟐ + 풛ퟏ ∗ 풛ퟑ + 풛ퟐ ∗ 풛ퟑ 풛 = 풛 + √풛 ퟐ − 푭ퟏ ퟎ ퟎ ퟑ 풛ퟏ ∗ 풛ퟐ + 풛ퟏ ∗ 풛ퟑ + 풛ퟐ ∗ 풛ퟑ 풛 = 풛 − √풛 ퟐ − 푭ퟐ ퟎ ퟎ ퟑ Box 2 Equations to calculate the foci of the Steiner in-ellipse as functions of the centroid 풛ퟎ and 풛ퟏ, 풛ퟐ, 풛ퟑ The Steiner in-ellipse of the triangle 풛ퟏ, 풛ퟐ, 풛ퟑ is the Steiner circum-ellipse of the triangle 풛푬ퟏ, 풛푬ퟐ, 풛푬ퟑ, see reference [8]. 2.2 Computing the equation of the ellipse4 A conic is in general uniquely defined by 5 elements5 for instance 5 points on it. In appendix (II) it is shown that an ellipse is unambiguously identified if the foci and a point on it are given because in this case one can construct four further points on it. An ellipse, or more general a conic, in the Cartesian xy or complex plane is represented by an equation of the following form: (푰) 푨 ∗ 풙ퟐ + 푩 ∗ 풙 ∗ 풚 + 푪 ∗ 풚ퟐ + 푫 ∗ 풙 + 푬 ∗ 풚 + 푭 = ퟎ Equation (푰) contains the six coefficients 푨 to 푭 although five are needed because one can divide it 6 by any of them which are not zero which leaves five to be calculated .

View Full Text

Details

  • File Type
    pdf
  • Upload Time
    -
  • Content Languages
    English
  • Upload User
    Anonymous/Not logged-in
  • File Pages
    30 Page
  • File Size
    -

Download

Channel Download Status
Express Download Enable

Copyright

We respect the copyrights and intellectual property rights of all users. All uploaded documents are either original works of the uploader or authorized works of the rightful owners.

  • Not to be reproduced or distributed without explicit permission.
  • Not used for commercial purposes outside of approved use cases.
  • Not used to infringe on the rights of the original creators.
  • If you believe any content infringes your copyright, please contact us immediately.

Support

For help with questions, suggestions, or problems, please contact us