1 / 17

ELLIPTIC INTEGRALS AND LANDEN’S TRANSFORMATION (WHAT I SHOULD’VE KNOWN FOR GEODESY)

ELLIPTIC INTEGRALS AND LANDEN’S TRANSFORMATION (WHAT I SHOULD’VE KNOWN FOR GEODESY). Rod Deakin. What’s so special about elliptic integrals . They crop up in geodetic problems: Meridian distance on an ellipsoid. Geodesic arc length. Transverse Mercator projection coordinates.

liora
Télécharger la présentation

ELLIPTIC INTEGRALS AND LANDEN’S TRANSFORMATION (WHAT I SHOULD’VE KNOWN FOR GEODESY)

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. ELLIPTIC INTEGRALS AND LANDEN’S TRANSFORMATION (WHAT I SHOULD’VE KNOWN FOR GEODESY) Rod Deakin

  2. What’s so special about elliptic integrals • They crop up in geodetic problems: • Meridian distance on an ellipsoid. • Geodesic arc length. • Transverse Mercator projection coordinates. • They cannot be evaluated in closed form by elementary methods. • They may be approximated by: • Series expansion and term-by-term integration. (usual method - not bad) • Landen’s transformation. (simple and very clever!)

  3. Who was Landen? John Landen (1719–1790) was an English land surveyor (20 years) and then the Earl Fitzwilliam’s land agent (26 years). Also an amateur mathematician. Published 8 articles in Philosophical Transactions of the Royal Society between 1754 and 1785 and elected a fellow in 1766. Also published 8 books and contributed problems and solutions to the Ladies Diary (a publication designed principally for the amusement and instruction of the fair sex)

  4. Landen’s transformation Landen’s contribution to mathematics was to show how an arc of an hyperbola could be expressed as the sum of two arcs of auxiliary ellipses. He did this by using an algebraic transformation of fluents (integrals). A.M. Legendre (1752–1833) developed Landen’s work and expressed his transformation in trigonometric form as:

  5. Evaluating Legendre then used Landen’s transformation in the following way:

  6. As n   the sequence of converges to unity and the sequence of converges to a limiting value, and The sequences converge in only a few iterations

  7. Iterative scheme An example of the iterative scheme for the evaluation of n knn (degrees) 0 0.08000000000000000000000000000060.000000000000000000000000000000 1 0.523782800878924092148773601559 31.986375290275345206426642287209 2 0.949910187049589210997543775191 24.047430982645159265462549335921 3 0.999670002027321953622743219568 23.410227894528127n587073492551888 4 0.999999986383174006610440236550 23.406135016316805818730472567793 5 0.999999999999999976822755917618 23.406134847458754170823337386119 6 1.00000000000000000000000000000023.406134847458753883409497070244 7 1.00000000000000000000000000000023.406134847458753883409497070244

  8. Computer code Maxima code for the evaluation of an elliptic integral of the First Kind F(phi,k) := block([product : 1/k, tol : 1.0b-36], while (1-k) > toldoblock( phi : (asin(k*sin(phi))+phi)/2, k : 2*sqrt(k)/(1+k), product : product*k), return(sqrt(product)*log(tan(pion4+phi/2))))

  9. Evaluating Legendre used Landen’s transformation to express and elliptic integral of the Second Kind in the following way:

  10. After some manipulation a formula using the Arithmetic-Geometric Mean (AGM) sequence can be obtained as:

  11. 0 100.000000000000000000000000000000 1.000000000000000000000000000000 1 50.500000000000000000000000000000 10.000000000000000000000000000000 49.500000000000000000000000000000 2 30.250000000000000000000000000000 22.472205054244231864598140445491 20.250000000000000000000000000000 3 26.361102527122115932299070222745 26.072671571798851888825788640849 3.888897472877884067700929777255 4 26.216887049460483910562429431797 26.216490391739540869103263272023 0.144215477661632021736640790948 5 26.216688720600012389832846351910 26.216688719849834949125252818220 0.000198328860471520729583079887 6 26.216688720224923669479049585065 26.216688720224923669476366341013 0.000000000375088720353796766845 7 26.21668872022492366947770796303926.2166887202249236694777079630390.000000000000000000001341622026 Arithmetic-Geometric Mean (AGM) For two positive real numbers with put then with The sequences converge to a common limit and converges to zero. n angncn 0 100.000000000000000000000000000000 1.000000000000000000000000000000 1 50.500000000000000000000000000000 10.000000000000000000000000000000 49.500000000000000000000000000000 2 30.250000000000000000000000000000 22.472205054244231864598140445491 20.250000000000000000000000000000 3 26.361102527122115932299070222745 26.072671571798851888825788640849 3.888897472877884067700929777255 4 26.216887049460483910562429431797 26.216490391739540869103263272023 0.144215477661632021736640790948 5 26.216688720600012389832846351910 26.216688719849834949125252818220 0.000198328860471520729583079887 6 26.216688720224923669479049585065 26.216688720224923669476366341013 0.000000000375088720353796766845 7 26.21668872022492366947770796303926.2166887202249236694777079630390.000000000000000000001341622026

  12. Computer code Maxima code for the evaluation of an elliptic integral of the Second Kind E(phi,k) := block([a : 1.0b0, g : k, n : 0, sum1 : 0.0b0, sum2 : 0.0b0, tol : 1.0b-36], F : F(phi,k), while (a-g) > toldoblock( sum2 : sum2 + (2^n)*g*sin(phi), a1 : (a + g)/2, g1 : sqrt(a*g), c1 : (a - g)/2, phi : (asin(k*sin(phi))+phi)/2, sum1 : sum1 + (2^(n+1))*a1*c1, a : a1, g : g1, k : g1/a1, n : n+1), return(F*sum1-sum2+(2^n)*a*sin(phi)))

  13. Meridian distance (series formula)

  14. Meridian distance (Elliptic integral) a = 6378137.000000000000000000000000000000 metres flat = 298.257222101000000000000000000000 f = 0.003352810681182318935434146126 phi = 60.000000000000000000000000000000(degrees) e = 0.081819191042815790145895739896 E(phi,e) = 1.046168817527900319688127443142 mdist = 6654072.819367444406819108934413675127 metres

  15. More on Landen John Landen was one of a group of non-academic men fully employed in the ordinary businesses of life, but keenly and intelligently interested in scientific matters. He was the eldest of three sons born to parents of yeoman stock. John Landen (1719–1790)

  16. He was well educated and his chosen profession of surveying demanded independently minded people able to gather information, analyse problems and provide solutions. He was an accomplished mathematician and read extensively in both French and Latin. He apparently had little tolerance for people he disagreed with and his dogmatism and pugnacity caused him to be generally shunned in polite society.

  17. But he must have had a sense of humour. His pseudonyms in the Ladies Diary were Sir Stately Stiff, C. Bumpkin and Peter Puzzlem (and others). THE END

More Related