Information about Common Logarithm
Before the early 1970s, hand-held electronic calculators were not yet in widespread use. Because of their utility in saving work in laborious calculations by hand on paper, tables of base-10 logarithms were found in appendices of many books. Such a table of "common logarithms" giving the logarithm of each number in the left-hand column, which ran from 1 to 10 by small increments, perhaps 0.01 or 0.001. There was no need to include numbers not between 1 and 10, since if one wanted the logarithm of, for example, 120, one would know that
The very last number ( 0.079181)—the fractional part of the logarithm of 120, known as the mantissa of the common logarithm of 120—was found in the table. (This stems from an older, non-numerical, meaning of the word mantissa: a minor addition or supplement, e.g. to a text. For a more modern use of the word mantissa, see significand.) The location of the decimal point in 120 tells us that the integer part of the common logarithm of 120, called the characteristic of the common logarithm of 120, is 2.
Similarly, for numbers less than 1 we have
The bar over the characteristic indicates that it is negative whilst the mantissa remains positive. Negative logarithm values were rarely converted to a normal negative number (−0.920819 in the example).
In addition, slide rules work by using a logarithmic scale.
History
Common logarithms are sometimes also called Briggsian logarithms after Henry Briggs, a 17th-century British mathematician.Because base-10 logarithms were most useful for computations, engineers generally wrote "log(x)" when they meant log10(x). Mathematicians, on the other hand, wrote "log(x)" when they mean loge(x) for the natural logarithm. Today, both notations are found. Since hand-held electronic calculators are designed by engineers rather than mathematicians, it became customary that they follow engineers' notation. So ironically, that notation, according to which one writes "ln(x)" when the natural logarithm is intended, may have been further popularized by the very invention that made the use of "common logarithms" far less common, electronic calculators.
Numeric value
The numerical value for logarithm to the base 10 can be calculated with the following identity.as procedures exist for determining the numerical value for logarithm base e and logarithm base 2.
- Natural logarithm#Numerical value
- Binary logarithm#Numerical value
> #!/usr/bin/python from __future__ import division import math # Calculates the logarithm (of any base > 1) of a positive number # to the an arbitary number of decimal places. The accuracy is # subjected only to limitation of the floating point representation. def log(X,base=math.e,decimalplace=12): integer_value=0 while X < 1: integer_value = integer_value - 1 X = X * base while X >= base: integer_value = integer_value + 1 X = X / base decimal_fraction = 0.0 partial = 1.0 # Replace X with X to the 10th power X = X ** 10 while decimalplace > 0: partial = partial / 10 digit=0 while X >= base: digit = digit + 1 X = X / base decimal_fraction = decimal_fraction + digit * partial # Replace X with X to the 10th power X = X ** 10 decimalplace = decimalplace - 1 return integer_value + decimal_fraction if __name__ == '__main__': value = 4.5 print " X =",value print " 6 decimal places LOG(X) =",log(value,base=10,decimalplace=6) print " 9 decimal places LOG(X) =",log(value,base=10,decimalplace=9) print "12 decimal places LOG(X) =",log(value,base=10,decimalplace=12) # Sample Run # # $ python log.py # X = 4.5 # 6 decimal places LOG(X) = 0.653212 # 9 decimal places LOG(X) = 0.653212513 # 12 decimal places LOG(X) = 0.653212513775
An approximation for simpler calculators
Early electronic calculators did not have the ability to calculate logarithms, but many could extract square roots. There is a curious approximation to the common logarithm that can be made on such a calculator. If a number has its square root taken 11 times, is reduced by 1, and is then multiplied by 889, then this is an approximation of the common logarithm of that number, of which accuracy varies. For a wide range of numbers from 10−17 to 10+18, this is accurate to within 1%. In other words:It is based on the fact that 889 ln 10 ≈ 2047 and ln x ≈ x − 1 for x ≈ 1.
References
See also
- Jurij Vega
- slide rule
- History of logarithms
External links
- Briggsian logarithms on PlanetMath includes a detailed example of using logarithm tables
Mathematics (colloquially, maths or math) is the body of knowledge centered on such concepts as quantity, structure, space, and change, and also the academic discipline that studies them. Benjamin Peirce called it "the science that draws necessary conclusions".
..... Click the link for more information.
..... Click the link for more information.
logarithm (to base b) of a number x is the exponent y that satisfies x = by. It is written logb(x) or, if the base is implicit, as log(x).
..... Click the link for more information.
..... Click the link for more information.
multivalued function is a total relation; i.e. every input is associated with one or more outputs. Strictly speaking, a "well-defined" function associates one, and only one, output to any particular input.
..... Click the link for more information.
..... Click the link for more information.
mathematician is a person whose primary area of study and research is the field of mathematics.
..... Click the link for more information.
Problems in mathematics
Some people incorrectly believe that mathematics has been fully understood, but the publication of new discoveries in mathematics continues at an immense..... Click the link for more information.
The natural logarithm, formerly known as the hyperbolic logarithm, is the logarithm to the base e, where e is an irrational constant approximately equal to 2.718281828459.
..... Click the link for more information.
..... Click the link for more information.
Centuries: 19th century - 20th century - 21st century
1940s 1950s 1960s - 1970s - 1980s 1990s 2000s
1970 1971 1972 1973 1974
1975 1976 1977 1978 1979
- -
- The 1970s decade refers to the years from 1970 to 1979, also called
..... Click the link for more information.
1940s 1950s 1960s - 1970s - 1980s 1990s 2000s
1970 1971 1972 1973 1974
1975 1976 1977 1978 1979
- -
- The 1970s decade refers to the years from 1970 to 1979, also called
..... Click the link for more information.
A calculator is a hand-held device for performing calculations. Although modern calculators often incorporate a general purpose computer, the device is designed for performing specific operations, rather than for flexibility.
..... Click the link for more information.
..... Click the link for more information.
Before calculators were cheap and plentiful, people would use mathematical tables —lists of numbers showing the results of calculation with varying arguments— to simplify and drastically speed up computation.
..... Click the link for more information.
..... Click the link for more information.
logarithm (to base b) of a number x is the exponent y that satisfies x = by. It is written logb(x) or, if the base is implicit, as log(x).
..... Click the link for more information.
..... Click the link for more information.
The significand (also coefficient or mantissa) is the part of a floating-point number that contains its significant digits. Depending on the interpretation of the exponent, the significand may be considered to be an integer or a fraction.
..... Click the link for more information.
..... Click the link for more information.
slide rule (often nicknamed a "slipstick"[1]) is a mechanical analog computer, consisting of at least two finely divided scales (rules), most often a fixed outer pair and a movable inner one, with a sliding window called the cursor.
..... Click the link for more information.
..... Click the link for more information.
logarithmic scale is a scale of measurement that uses the logarithm of a physical quantity instead of the quantity itself.
Presentation of data on a logarithmic scale can be helpful when the data covers a large range of values – the logarithm reduces this to a more
..... Click the link for more information.
Presentation of data on a logarithmic scale can be helpful when the data covers a large range of values – the logarithm reduces this to a more
..... Click the link for more information.
Henry Briggs (February 1561–January 26 1630) was an English mathematician notable for changing Napier's logarithms into common/Briggesian logarithms.
He was born at Warley Wood, near Halifax, in Yorkshire, England.
..... Click the link for more information.
He was born at Warley Wood, near Halifax, in Yorkshire, England.
..... Click the link for more information.
As a means of recording the passage of time, the 17th Century was that century which lasted from 1601-1700 in the Gregorian calendar.
The 17th Century falls into the Early Modern period of Europe and was characterized by the Baroque cultural movement and the beginning of
..... Click the link for more information.
The 17th Century falls into the Early Modern period of Europe and was characterized by the Baroque cultural movement and the beginning of
..... Click the link for more information.
Baron Jurij Bartolomej Vega (also correct Veha; official Latin Georgius Bartholomaei Vecha; German Georg Freiherr von Vega) (March 23, 1754 – September 26, 1802) was a Slovenian mathematician, physicist and artillery officer.
..... Click the link for more information.
..... Click the link for more information.
slide rule (often nicknamed a "slipstick"[1]) is a mechanical analog computer, consisting of at least two finely divided scales (rules), most often a fixed outer pair and a movable inner one, with a sliding window called the cursor.
..... Click the link for more information.
..... Click the link for more information.
PlanetMath is a free, collaborative, online mathematics encyclopedia. The emphasis is on peer review, rigour, openness, pedagogy, real-time content, interlinked content, and community.
..... Click the link for more information.
..... Click the link for more information.
This article is copied from an article on Wikipedia.org - the free encyclopedia created and edited by online user community. The text was not checked or edited by anyone on our staff. Although the vast majority of the wikipedia encyclopedia articles provide accurate and timely information please do not assume the accuracy of any particular article. This article is distributed under the terms of GNU Free Documentation License.
Herod_Archelaus

