This is a good article. Click here for more information.

Pythagorean addition

From Wikipedia, the free encyclopedia
(Redirected from Hypot)

Template:Short description Template:DMCA Template:DMCA Template:CS1 config

File:Triangle Sides ABC.svg
The hypotenuse c of a right triangle with sides a and b is the Pythagorean sum of a and b.

In mathematics, Pythagorean addition is a binary operation on the real numbers that computes the length of the hypotenuse of a right triangle, given its two sides. Like the more familiar addition and multiplication operations of arithmetic, it is both associative and commutative.

This operation can be used in the conversion of Cartesian coordinates to polar coordinates, and in the calculation of Euclidean distance. It also provides a simple notation and terminology for the diameter of a cuboid, the energy-momentum relation in physics, and the overall noise from independent sources of noise. In its applications to signal processing and propagation of measurement uncertainty, the same operation is also called addition in quadrature.[1]Template:R/superscript A scaled version of this operation gives the quadratic mean or root mean square.

It is available in many programming libraries as the hypot function (short for hypotenuse), implemented in a way designed to avoid errors arising due to limited-precision calculations performed on computers. Donald Knuth has written that "Most of the square root operations in computer programs could probably be avoided if [Pythagorean addition] were more widely available, because people seem to want square roots primarily when they are computing distances."[2]Template:R/superscript Although the Pythagorean theorem is ancient, its application in computing distances began in the 18th century, and the various names for this operation came into use in the 20th century.

Definition

According to the Pythagorean theorem, for a right triangle with side lengths a and b, the length of the hypotenuse can be calculated as a2+b2. This formula defines the Pythagorean addition operation, denoted here as : for any two real numbers a and b, the result of this operation is defined to be[3]Template:R/superscript ab=a2+b2). For instance, the special right triangle based on the Pythagorean triple (3,4,5) gives 34=5.[4] However, the integer result of this example is unusual: for other integer arguments, Pythagorean addition can produce a quadratic irrational number as its result.[5]Template:R/superscript

Properties

The operation is associative[6]Template:R/superscript[7]Template:R/superscript and commutative.[6]Template:R/superscript[8]Template:R/superscript Therefore, if three or more numbers are to be combined with this operation, the order of combination makes no difference to the result, which can be expressed without need of parenthesization as x1x2xn=x12+x22++xn2. Additionally, on the non-negative real numbers, zero is an identity element for Pythagorean addition. On numbers that can be negative, the Pythagorean sum with zero gives the absolute value:[3]Template:R/superscript x0=|x|. The three properties of associativity, commutativity, and having an identity element (on the non-negative numbers) are the defining properties of a commutative monoid.[9]Template:R/superscript[10]Template:R/superscript

Applications

Distance and diameter

Template:Dark mode invert The Euclidean distance between two points in the Euclidean plane, given by their Cartesian coordinates (x1,y1) and (x2,y2), is[11]Template:R/superscript (x1x2)(y1y2). In the same way, the distance between three-dimensional points (x1,y1,z1) and (x2,y2,z2) can be found by repeated Pythagorean addition as[11]Template:R/superscript (x1x2)(y1y2)(z1z2).

Pythagorean addition can also find the length of an interior diagonal of a rectangle or rectangular cuboid. For a rectangle with sides a and b, the diagonal length is ab.[12]Template:R/superscript[13]Template:R/superscript For a cuboid with side lengths a, b, and c, the length of a body diagonal is abc.[13]Template:R/superscript

Coordinate conversion

Pythagorean addition (and its implementation as the hypot function) is often used together with the atan2 function (a two-parameter form of the arctangent) to convert from Cartesian coordinates (x,y) to polar coordinates (r,θ):[14]Template:R/superscript[15]Template:R/superscript r=xy=𝗁𝗒𝗉𝗈𝗍(x,y)θ=𝖺𝗍𝖺𝗇𝟤(y,x).

Quadratic mean and spread of deviation

The root mean square or quadratic mean of a finite set of n numbers is 1n times their Pythagorean sum. This is a generalized mean of the numbers.[16]Template:R/superscript

The standard deviation of a collection of observations is the quadratic mean of their individual deviations from the mean. When two or more independent random variables are added, the standard deviation of their sum is the Pythagorean sum of their standard deviations.[16]Template:R/superscript Thus, the Pythagorean sum itself can be interpreted as giving the amount of overall noise when combining independent sources of noise.[17]Template:R/superscript

If the engineering tolerances of different parts of an assembly are treated as independent noise, they can be combined using a Pythagorean sum.[18]Template:R/superscript In experimental sciences such as physics, addition in quadrature is often used to combine different sources of measurement uncertainty.[19]Template:R/superscript However, this method of propagation of uncertainty applies only when there is no correlation between sources of uncertainty,[20]Template:R/superscript and it has been criticized for conflating experimental noise with systematic errors.[21]Template:R/superscript

Other

Template:Dark mode invert The energy-momentum relation in physics, describing the energy of a moving particle, can be expressed as the Pythagorean sum E=mc2pc, where m is the rest mass of a particle, p is its momentum, c is the speed of light, and E is the particle's resulting relativistic energy.[22]Template:R/superscript

When combining signals, it can be a useful design technique to arrange for the combined signals to be orthogonal in polarization or phase, so that they add in quadrature.[23]Template:R/superscript[24]Template:R/superscript In early radio engineering, this idea was used to design directional antennas, allowing signals to be received while nullifying the interference from signals coming from other directions.[23]Template:R/superscript When the same technique is applied in software to obtain a directional signal from a radio or ultrasound phased array, Pythagorean addition may be used to combine the signals.[25]Template:R/superscript Other recent applications of this idea include improved efficiency in the frequency conversion of lasers.[24]Template:R/superscript

In the psychophysics of haptic perception, Pythagorean addition has been proposed as a model for the perceived intensity of vibration when two kinds of vibration are combined.[26]Template:R/superscript

In image processing, the Sobel operator for edge detection consists of a convolution step to determine the gradient of an image followed by a Pythagorean sum at each pixel to determine the magnitude of the gradient.[27]Template:R/superscript

Implementation

In a 1983 paper, Cleve Moler and Donald Morrison described an iterative method for computing Pythagorean sums, without taking square roots.[3]Template:R/superscript This was soon recognized to be an instance of Halley's method,[8]Template:R/superscript and extended to analogous operations on matrices.[7]Template:R/superscript

Although many modern implementations of this operation instead compute Pythagorean sums by reducing the problem to the square root function, they do so in a way that has been designed to avoid errors arising from the limited-precision calculations performed on computers. If calculated using the natural formula, r=x2+y2, the squares of very large or small values of x and y may exceed the range of machine precision when calculated on a computer. This may lead to an inaccurate result caused by arithmetic underflow and overflow, although when overflow and underflow do not occur the output is within two ulp of the exact result.[28]Template:R/superscript[29]Template:R/superscript[30]Template:R/superscript Common implementations of the hypot function rearrange this calculation in a way that avoids the problem of overflow and underflow and are even more precise.[31]Template:R/superscript

If either input to hypot is infinite, the result is infinite. Because this is true for all possible values of the other input, the IEEE 754 floating-point standard requires that this remains true even when the other input is not a number (NaN).[32]Template:R/superscript

Calculation order

The difficulty with the naive implementation is that x2+y2 may overflow or underflow, unless the intermediate result is computed with extended precision. A common implementation technique is to exchange the values, if necessary, so that |x||y|, and then to use the equivalent form r=|x|1+(yx)2.

The computation of y/x cannot overflow unless both x and y are zero. If y/x underflows, the final result is equal to |x|, which is correct within the precision of the calculation. The square root is computed of a value between 1 and 2. Finally, the multiplication by |x| cannot underflow, and overflows only when the result is too large to represent.[31]Template:R/superscript

One drawback of this rearrangement is the additional division by x, which increases both the time and inaccuracy of the computation. More complex implementations avoid these costs by dividing the inputs into more cases:

  • When x is much larger than y, xy|x|, to within machine precision.[31]Template:R/superscript
  • When x2 overflows, multiply both x and y by a small scaling factor (e.g. 2−64 for IEEE single precision), use the naive algorithm which will now not overflow, and multiply the result by the (large) inverse (e.g. 264).
  • When y2 underflows, scale as above but reverse the scaling factors to scale up the intermediate values.
  • Otherwise, the naive algorithm is safe to use.

Additional techniques allow the result to be computed more accurately than the naive algorithm, e.g. to less than one ulp.[31]Template:R/superscript Researchers have also developed analogous algorithms for computing Pythagorean sums of more than two values.[33]Template:R/superscript

Fast approximation

The alpha max plus beta min algorithm is a high-speed approximation of Pythagorean addition using only comparison, multiplication, and addition, producing a value whose error is less than 4% of the correct result. It is computed as xyαmax(|x|,|y|)+βmin(|x|,|y|) for a careful choice of parameters α and β.[34]Template:R/superscript

Programming language support

Pythagorean addition function is present as the hypot function in many programming languages and their libraries. These include: CSS,[35]Template:R/superscript D,[36]Template:R/superscript Fortran,[37]Template:R/superscript Go,[38]Template:R/superscript JavaScript (since ES2015),[11]Template:R/superscript Julia,[39]Template:R/superscript MATLAB,[40]Template:R/superscript PHP,[41]Template:R/superscript and Python.[42]Template:R/superscript C++11 includes a two-argument version of hypot, and a three-argument version for xyz has been included since C++17.[43]Template:R/superscript The Java implementation of hypot[44]Template:R/superscript can be used by its interoperable JVM-based languages including Apache Groovy, Clojure, Kotlin, and Scala.[45]Template:R/superscript Similarly, the version of hypot included with Ruby extends to Ruby-based domain-specific languages such as Progress Chef.[46]Template:R/superscript In Rust, hypot is implemented as a method of floating point objects rather than as a two-argument function.[47]Template:R/superscript

Metafont has Pythagorean addition and subtraction as built-in operations, under the symbols ++ and +-+ respectively. Its subtraction operation computes Template:Bi

History

The Pythagorean theorem on which this operation is based was studied in ancient Greek mathematics, and may have been known earlier in Egyptian mathematics and Babylonian mathematics; see Pythagorean theorem § History.[48]Template:R/superscript However, its use for computing distances in Cartesian coordinates could not come until after René Descartes invented these coordinates in 1637; the formula for distance from these coordinates was published by Alexis Clairaut in 1731.Lua error in package.lua at line 80: module 'Module:Footnotes/anchor_id_list' not found.

The terms "Pythagorean addition" and "Pythagorean sum" for this operation have been used at least since the 1950s,[18]Template:R/superscript[49]Template:R/superscript and its use in signal processing as "addition in quadrature" goes back at least to 1919.[23]Template:R/superscript

From the 1920s to the 1940s, before the widespread use of computers, multiple designers of slide rules included square-root scales in their devices, allowing Pythagorean sums to be calculated mechanically.[50]Template:R/superscript[51]Template:R/superscript[52]Template:R/superscript Researchers have also investigated analog circuits for approximating the value of Pythagorean sums.[53]Template:R/superscript

References

  1. ^ Page Module:Citation/CS1/styles.css has no content.Johnson, David L. (2017). "12.2.3 Addition in Quadrature". Statistical Tools for the Comprehensive Practice of Industrial Hygiene and Environmental Health Sciences. John Wiley & Sons. p. 289. ISBN 9781119143017.
  2. ^ Page Module:Citation/CS1/styles.css has no content.Knuth, Donald E. (1986). The METAFONTbook. Addison-Wesley. p. 80.
  3. ^ a b c Page Module:Citation/CS1/styles.css has no content.Moler, Cleve; Morrison, Donald (1983). "Replacing square roots by Pythagorean sums". IBM Journal of Research and Development. 27 (6): 577–581. CiteSeerX 10.1.1.90.5651. doi:10.1147/rd.276.0577.
  4. ^ This example is from Lua error in package.lua at line 80: module 'Module:Footnotes/anchor_id_list' not found.. Lua error in package.lua at line 80: module 'Module:Footnotes/anchor_id_list' not found. uses two more integer Pythagorean triples, (119,120,169) and (19,180,181), as examples.
  5. ^ Page Module:Citation/CS1/styles.css has no content.Ellis, Mark W.; Pagni, David (May 2008). "Exploring segment lengths on the Geoboard". Mathematics Teaching in the Middle School. 13 (9). National Council of Teachers of Mathematics: 520–525. doi:10.5951/mtms.13.9.0520. JSTOR 41182606.
  6. ^ a b Page Module:Citation/CS1/styles.css has no content.Falmagne, Jean-Claude (2015). "Deriving meaningful scientific laws from abstract, "gedanken" type, axioms: five examples". Aequationes Mathematicae. 89 (2): 393–435. doi:10.1007/s00010-015-0339-1. MR 3340218.
  7. ^ a b Page Module:Citation/CS1/styles.css has no content.Incertis, F. (March 1985). "A faster method of computing matrix pythagorean sums". IEEE Transactions on Automatic Control. 30 (3): 273–275. doi:10.1109/tac.1985.1103937.
  8. ^ a b Page Module:Citation/CS1/styles.css has no content.Dubrulle, Augustin A. (1983). "A class of numerical methods for the computation of Pythagorean sums". IBM Journal of Research and Development. 27 (6): 582–589. CiteSeerX 10.1.1.94.3443. doi:10.1147/rd.276.0582.
  9. ^ Page Module:Citation/CS1/styles.css has no content.Penner, R. C. (1999). Discrete Mathematics: Proof Techniques and Mathematical Structures. World Scientific. pp. 417–418. ISBN 9789810240882.
  10. ^ Page Module:Citation/CS1/styles.css has no content.Deza, Michel Marie; Deza, Elena (2014). Encyclopedia of Distances. Springer. p. 100. doi:10.1007/978-3-662-44342-2. ISBN 9783662443422.
  11. ^ a b c Page Module:Citation/CS1/styles.css has no content.Manglik, Rohit (2024). "Section 14.22: Math.hypot". Java Script Notes for Professionals. EduGorilla. p. 144. ISBN 9789367840320.
  12. ^ Page Module:Citation/CS1/styles.css has no content.Meyer, J. G. A. (1902). "225. – To find the diagonal of a rectangle when its length and breadth are given". Easy Lessons in Mechanical Drawing & Machine Design: Arranged for Self-instruction, Vol. I. Industrial Publication Company. p. 133.
  13. ^ a b Page Module:Citation/CS1/styles.css has no content.Grieser, Daniel (2018). "6.2 The diagonal of a cuboid". Exploring Mathematics: Problem-Solving and Proof. Springer Undergraduate Mathematics Series. Springer International Publishing. pp. 143–145. doi:10.1007/978-3-319-90321-7. ISBN 9783319903217.
  14. ^ Page Module:Citation/CS1/styles.css has no content."SIN (3M): Trigonometric functions and their inverses". Unix Programmer's Manual: Reference Guide (4.3 Berkeley Software Distribution Virtual VAX-11 Version ed.). Department of Electrical Engineering and Computer Science, University of California, Berkeley. April 1986.
  15. ^ Page Module:Citation/CS1/styles.css has no content.Beebe, Nelson H. F. (2017). The Mathematical-Function Computation Handbook: Programming Using the MathCW Portable Software Library. Springer. p. 70. ISBN 9783319641102.
  16. ^ a b Page Module:Citation/CS1/styles.css has no content.Weisberg, Herbert F. (1992). Central Tendency and Variability. Quantitative Applications in the Social Sciences. Vol. 83. Sage. pp. 45, 52–53. ISBN 9780803940079.
  17. ^ D. B. Schneider, Error Analysis in Measuring Systems, Proceedings of the 1962 Standards Laboratory Conference, page 94
  18. ^ a b Page Module:Citation/CS1/styles.css has no content.Hicks, Charles R. (March 1955). "Two problems illustrating the use of mathematics in modern industry". The Mathematics Teacher. 48 (3). National Council of Teachers of Mathematics: 130–132. doi:10.5951/mt.48.3.0130. JSTOR 27954826.
  19. ^ Page Module:Citation/CS1/styles.css has no content.Smith, Walter F. (2020). Experimental Physics: Principles and Practice for the Laboratory. CRC Press. pp. 40–41. ISBN 9781498778688.
  20. ^ Page Module:Citation/CS1/styles.css has no content.Drosg, Manfred (2009). "Dealing with Internal Uncertainties". Dealing with Uncertainties. Springer Berlin Heidelberg. pp. 151–172. doi:10.1007/978-3-642-01384-3_8. ISBN 9783642013843.
  21. ^ Page Module:Citation/CS1/styles.css has no content.Barlow, Roger (March 22, 2002). "Systematic errors: facts and fictions". Conference on Advanced Statistical Techniques in Particle Physics. Durham, UK. pp. 134–144. arXiv:hep-ex/0207026.
  22. ^ Page Module:Citation/CS1/styles.css has no content.Kuehn, Kerry (2015). A Student's Guide Through the Great Physics Texts: Volume II: Space, Time and Motion. Undergraduate Lecture Notes in Physics. Springer New York. p. 372. doi:10.1007/978-1-4939-1366-4. ISBN 9781493913664.
  23. ^ a b c Page Module:Citation/CS1/styles.css has no content.Weagant, R. A. (June 1919). "Reception thru static and interference". Proceedings of the IRE. 7 (3): 207–244. doi:10.1109/jrproc.1919.217434. See p. 232.
  24. ^ a b Page Module:Citation/CS1/styles.css has no content.Eimerl, D. (August 1987). "Quadrature frequency conversion". IEEE Journal of Quantum Electronics. 23 (8): 1361–1371. doi:10.1109/jqe.1987.1073521.
  25. ^ Page Module:Citation/CS1/styles.css has no content.Powers, J. E.; Phillips, D. J.; Brandestini, M.; Ferraro, R.; Baker, D. W. (1980). "Quadrature sampling for phased array application". In Wang, Keith Y. (ed.). Acoustical Imaging: Visualization and Characterization. Vol. 9. Springer. pp. 263–273. doi:10.1007/978-1-4684-3755-3_18. ISBN 9781468437553.
  26. ^ Page Module:Citation/CS1/styles.css has no content.Yoo, Yongjae; Hwang, Inwook; Choi, Seungmoon (April 2022). "Perceived intensity model of dual-frequency superimposed vibration: Pythagorean sum". IEEE Transactions on Haptics. 15 (2): 405–415. doi:10.1109/toh.2022.3144290.
  27. ^ Page Module:Citation/CS1/styles.css has no content.Kanopoulos, N.; Vasanthavada, N.; Baker, R.L. (April 1988). "Design of an image edge detection filter using the Sobel operator". IEEE Journal of Solid-State Circuits. 23 (2): 358–367. doi:10.1109/4.996.
  28. ^ Page Module:Citation/CS1/styles.css has no content.Jeannerod, Claude-Pierre; Muller, Jean-Michel; Plet, Antoine (2017). "The classical relative error bounds for computing a2+b2 and c/a2+b2 in binary floating-point arithmetic are asymptotically optimal". In Burgess, Neil; Bruguera, Javier D.; de Dinechin, Florent (eds.). 24th IEEE Symposium on Computer Arithmetic, ARITH 2017, London, United Kingdom, July 24–26, 2017. IEEE Computer Society. pp. 66–73. doi:10.1109/ARITH.2017.40.
  29. ^ Page Module:Citation/CS1/styles.css has no content.Muller, Jean-Michel; Salvy, Bruno (2024). "Effective quadratic error bounds for floating-point algorithms computing the hypotenuse function". arXiv:2405.03588 [math.NA].
  30. ^ Page Module:Citation/CS1/styles.css has no content.Ziv, Abraham (1999). "Sharp ULP rounding error bound for the hypotenuse function". Mathematics of Computation. 68 (227): 1143–1148. doi:10.1090/S0025-5718-99-01103-5. JSTOR 2584955. MR 1648423.
  31. ^ a b c d Page Module:Citation/CS1/styles.css has no content.Borges, Carlos F. (2021). "Algorithm 1014: An Improved Algorithm for hypot(x, y)". ACM Transactions on Mathematical Software. 47 (1) 9: 1–12. arXiv:1904.09481. doi:10.1145/3428446.
  32. ^ Page Module:Citation/CS1/styles.css has no content.Fog, Agner (April 27, 2020). "Floating point exception tracking and NAN propagation" (PDF). p. 6.
  33. ^ Page Module:Citation/CS1/styles.css has no content.Lefèvre, Vincent; Louvet, Nicolas; Muller, Jean-Michel; Picot, Joris; Rideau, Laurence (2023). "Accurate calculation of Euclidean norms using double-word arithmetic" (PDF). ACM Transactions on Mathematical Software. 49 (1) 1: 1–34. doi:10.1145/3568672. MR 4567887.
  34. ^ Page Module:Citation/CS1/styles.css has no content.Lyons, Richard G. (2010). "13.2 High-speed vector magnitude approximation". Understanding Digital Signal Processing (3rd ed.). Pearson. pp. 13-6 – 13-8.
  35. ^ Page Module:Citation/CS1/styles.css has no content.Cimpanu, Catalin (March 10, 2019). "CSS to get support for trigonometry functions". ZDNet. Retrieved 2019-11-01.
  36. ^ Page Module:Citation/CS1/styles.css has no content."std.math.algebraic". Phobos Runtime Library Reference, version 2.109.1. D Language Foundation. Retrieved 2025-02-21.
  37. ^ Page Module:Citation/CS1/styles.css has no content.Reid, John (March 13, 2014). "9.6 Error and gamma functions". The new features of Fortran 2008 (PDF) (Report N1891). ISO/IEC JTC 1/SC 22, WG5 international Fortran standards committee. p. 20.
  38. ^ Page Module:Citation/CS1/styles.css has no content.Summerfield, Mark (2012). Programming in Go: Creating Applications for the 21st Century. Pearson Education. p. 66. ISBN 9780321774637.
  39. ^ Page Module:Citation/CS1/styles.css has no content.Nagar, Sandeep (2017). Beginning Julia Programming: For Engineers and Scientists. Apress. p. 105. ISBN 9781484231715.
  40. ^ Page Module:Citation/CS1/styles.css has no content.Higham, Desmond J.; Higham, Nicholas J. (2016). "26.9 Pythagorean sum". MATLAB Guide (3rd ed.). Society for Industrial and Applied Mathematics. pp. 430–432. ISBN 9781611974669.
  41. ^ Page Module:Citation/CS1/styles.css has no content.Atkinson, Leon; Suraski, Zeev (2004). "Listing 13.17: hypot". Core PHP Programming. Prentice Hall. p. 504. ISBN 9780130463463.
  42. ^ Page Module:Citation/CS1/styles.css has no content.Hill, Christian (2020). Learning Scientific Programming with Python (2nd ed.). Cambridge University Press. p. 14. ISBN 9781108787468.
  43. ^ Page Module:Citation/CS1/styles.css has no content.Hanson, Daniel (2024). Learning Modern C++ for Finance. O'Reilly. p. 25. ISBN 9781098100773.
  44. ^ Page Module:Citation/CS1/styles.css has no content.Horton, Ivor (2005). Ivor Horton's Beginning Java 2. John Wiley & Sons. p. 57. ISBN 9780764568749.
  45. ^ Page Module:Citation/CS1/styles.css has no content.van der Leun, Vincent (2017). "Java Class Library". Introduction to JVM Languages: Java, Scala, Clojure, Kotlin, and Groovy. Packt Publishing Ltd. pp. 10–11. ISBN 9781787126589.
  46. ^ Page Module:Citation/CS1/styles.css has no content.Taylor, Mischa; Vargo, Seth (2014). "Mathematical operations". Learning Chef: A Guide to Configuration Management and Automation. O'Reilly Media. p. 40. ISBN 9781491945117.
  47. ^ Page Module:Citation/CS1/styles.css has no content."Primitive Type f64". The Rust Standard Library. February 17, 2025. Retrieved 2025-02-22.
  48. ^ Page Module:Citation/CS1/styles.css has no content.Maor, Eli (2007). The Pythagorean Theorem: A 4,000-Year History. Princeton, New Jersey: Princeton University Press. pp. 4–15. ISBN 978-0-691-12526-8.
  49. ^ Page Module:Citation/CS1/styles.css has no content.van Dantzig, D. (1953). "Another form of the weak law of large numbers" (PDF). Nieuw Archief voor Wiskunde. 3rd ser. 1: 129–145. MR 0056872.
  50. ^ Page Module:Citation/CS1/styles.css has no content.Morrell, William E. (January 1946). "A slide rule for the addition of squares". Science. 103 (2665): 113–114. doi:10.1126/science.103.2665.113. JSTOR 1673946.
  51. ^ Page Module:Citation/CS1/styles.css has no content.Dempster, J. R. (April 1946). "A circular slide rule". Science. 103 (2677): 488. doi:10.1126/science.103.2677.488.b. JSTOR 1671874.
  52. ^ Page Module:Citation/CS1/styles.css has no content.Dawson, Bernhard H. (July 1946). "An improved slide rule for the addition of squares". Science. 104 (2688): 18. doi:10.1126/science.104.2688.18.c. JSTOR 1675936.
  53. ^ Page Module:Citation/CS1/styles.css has no content.Stern, T. E.; Lerner, R. M. (April 1963). "A circuit for the square root of the sum of the squares". Proceedings of the IEEE. 51 (4): 593–596. doi:10.1109/proc.1963.2206.