Está en la página 1de 9

Plus and minus signs

The plus and minus signs (+ and −) are mathematical symbols used to
represent the notions of positive and negative as well as the operations of
addition and subtraction. Their use has been extended to many other
meanings, more or less analogous. Plus and minus are Latin terms
meaning "more" and "less", respectively.
+−
Plus and minus signs

Contents
History
Plus sign
Minus sign
Use in elementary education
Use as a qualifier
Uses in computing
Other uses
Character codes
Alternative plus sign
See also
References and footnotes

History
Though the signs now seem as familiar as the alphabet or the Hindu-Arabic numerals, they are not of great antiquity.
The Egyptian hieroglyphic sign for addition, for example, resembled a pair of legs walking in the direction in which
the text was written (Egyptian could be written either from right to left or left to right), with the reverse sign indicating
subtraction:[1]

or
Nicole Oresme's manuscripts from the 14th century show what may be one of the earliest uses of the plus sign "+".[2]

In Europe in the early 15th century the letters "P" and "M" were generally used.[3][4] The symbols (P with line p̄ for più,
i.e., plus, and M with line m̄ for meno, i.e., minus) appeared for the first time in Luca Pacioli’s mathematics
compendium, Summa de arithmetica, geometria, proportioni et proportionalità, first printed and published in
Venice in 1494.[5] The + is a simplification of the Latin "et" (comparable to the ampersand &).[6] The − may be derived
from a tilde written over m when used to indicate subtraction; or it may come from a shorthand version of the letter m
itself.[7] In his 1489 treatise Johannes Widmann referred to the symbols − and + as minus and mer (Modern German
mehr; "more"): "was − ist, das ist minus, und das + ist das mer".[8] They weren't used for addition and subtraction
here, but to indicate surplus and deficit; their first use in their modern sense appears in a book by Henricus
Grammateus in 1518.[9][10]
Robert Recorde, the designer of the equals sign, introduced plus and minus to Britain in 1557 in The Whetstone of
Witte:[11] "There be other 2 signes in often use of which the first is made thus + and betokeneth more: the other is thus
made – and betokeneth lesse."

Plus sign
The plus sign (+) is a binary operator that indicates addition, as in 2 + 3 = 5. It can also serve as a unary operator that
leaves its operand unchanged (+x means the same as x). This notation may be used when it is desired to emphasize
the positiveness of a number, especially when contrasting with the negative (+5 versus −5).

The plus sign can also indicate many other operations, depending on the mathematical system under consideration.
Many algebraic structures have some operation which is called, or is equivalent to, addition. It is conventional to use
the plus sign to only denote commutative operations.[12] Moreover, the symbolism has been extended to very different
operations; plus can also mean:

exclusive or (usually written ⊕): 1 + 1 = 0, 1 + 0 = 1


logical disjunction (usually written ∨): 1 + 1 = 1, 1 + 0 = 1

Minus sign
The minus sign (−) has three main uses in mathematics:[13]

1. The subtraction operator: A binary operator to indicate the operation of subtraction, as in 5 − 3 = 2. Subtraction is
the inverse of addition.
2. Directly in front of a number (numeric literal) and when it is not a subtraction operator it means a negative
number. For instance −5 is negative 5.
3. A unary operator that acts as an instruction to replace the operand by its additive inverse. For example, if x is 3,
then −x is −3, but if x is −3, then −x is 3. Similarly, −(−2) is equal to 2. The above is a special case of this.
All three uses can be referred to as "minus" in everyday speech. In most English-speaking countries, −5 (for example)
is normally pronounced "minus five", but in modern US usage it is instead sometimes pronounced "negative five";
here, "minus" may be used by speakers born before 1950, and is still popular in some contexts, but "negative" is
usually taught as the only correct reading.[14] Further, some textbooks in the United States encourage −x to be read as
"the opposite of x" or "the additive inverse of x" to avoid giving the impression that −x is necessarily negative.[15]

In some contexts, different glyphs are used for these meanings; for instance in the computer language APL and the
expression language used by Texas Instruments graphing calculators (definitely at least the early models including the
TI-81 and TI-82) a raised minus sign is used in negative numbers (as in 2 − 5 shows −3), but such usage is uncommon.

In mathematics and most programming languages, the rules for the order of operations mean that −52 is equal to −25:
Powers bind more strongly than the unary minus, which binds more strongly than multiplication or division.
However, in some programming languages and Microsoft Excel in particular, unary operators bind strongest, so in
those cases −5^2 is 25 but 0−5^2 is −25.[16]

Use in elementary education


Some elementary teachers use raised plus and minus signs before numbers to show they are positive or negative
numbers.[17] For example, subtracting −5 from 3 might be read as "positive three take away negative 5" and be shown
as

3 − −5 becomes 3 + 5 = 8,
or even as

+3 − −5 becomes +3 + +5 = +8.

Use as a qualifier
In grading systems (such as examination marks), the plus sign indicates a grade one level higher and the minus sign a
grade lower. For example, B− ("B minus") is one grade lower than B. Sometimes this is extended to two plus or minus
signs; for example A++ is two grades higher than A.

Positive and negative are sometimes abbreviated as +ve and −ve.[18]

In mathematics the one-sided limit x→a+ means x approaches a from the right, and x→a− means x approaches a
from the left. For example, when calculating what x−1 is when x approaches 0, because x−1→+∞ when x→0+ but
x−1→−∞ when x→0−.

Blood types are often qualified with a plus or minus to indicate the presence or absence of the Rh factor; for instance,
A+ means A-type blood with the Rh factor present, while B− means B-type blood with the Rh factor absent.

In music, augmented chords are symbolized with a plus sign, although this practice is not universal as there are other
methods for spelling those chords. For example, "C+" is read "C augmented chord". Also used as superscript.

Uses in computing
As well as the normal mathematical usage plus and minus may be used for a number of other purposes in computing.

Plus and minus signs are often used in tree view on a computer screen to show if a folder is collapsed or not.

In some programming languages, concatenation of strings is written "a" + "b", and results in "ab".

In most programming languages, subtraction and negation are indicated with the ASCII hyphen-minus character, -.
In APL a raised minus sign (Unicode U+00AF) is used to denote a negative number, as in ¯3. While in J a negative
number is denoted by an underscore, as in _5.

In C and some other computer programming languages, two plus signs indicate the increment operator and two
minus signs a decrement. For example, x++ means "increment the value of x by one" and x-- means "decrement the
value of x by one". By extension, "++" is sometimes used in computing terminology to signify an improvement, as in
the name of the language C++.

In regular expressions, "+" is used to indicate "1 or more" in a pattern to be matched. For example, "x+" means "one or
more of the letter x".

There is no concept of negative zero in mathematics, but in computing −0 may have a separate representation from
zero. In the IEEE floating-point standard, 1 / −0 is negative infinity (−∞) whereas 1 / 0 is positive infinity (∞).

Other uses
In chemistry, the minus sign (rather than an en dash) is used for a single covalent bond between two atoms, as in the
skeletal formula.
Subscripted plus and minus signs are used as diacritics in the International Phonetic Alphabet to indicate advanced or
retracted articulations of speech sounds.

The minus sign is also used as tone letter in the orthographies of Dan, Krumen, Karaboro, Mwan, Wan, Yaouré, Wè,
Nyabwa and Godié.[19] The Unicode character used for the tone letter (U+02D7) is different from the mathematical
minus sign.

In the algebraic notation used to record games of chess, the plus sign (+) is used to denote a move that puts the
opponent into check. A double plus (++) is sometimes used to denote double check. Combinations of the plus and
minus signs are used to evaluate a move (+/−, +/=, =/+, −/+).

Character codes

Plus, minus, and hyphen-minus.

Read Character Unicode ASCII in URL HTML notations

Plus + U+002B + %2B +

Minus − U+2212 %E2%88%92 − − −

Hyphen-minus - U+002D - %2D

Small Hyphen-minus ﹣ U+FE63 %EF%B9%A3 ﹣ ﹣

Full-width Plus + U+FF0B %EF%BC%8B + +

Full-width Hyphen-minus - U+FF0D %EF%BC%8D - -

The hyphen-minus sign (-) is the ASCII alternative/version of the minus sign, and doubles as a hyphen. It is usually
shorter in length than the plus sign and sometimes at a different height. It can be used as a substitute for the true
minus sign when the character set is limited to ASCII. Most programming languages and other computer readable
languages do this, since ASCII is generally available as a subset of most character encodings, while U+2212 is a
Unicode feature only.

There is a commercial minus sign (⁒), which looks somewhat like an obelus, at U+2052 (HTML ⁒).

The + entity is HTML 5.

Alternative plus sign


A Jewish tradition that dates from at least the 19th century is to write plus using a symbol
like an inverted T.[20] This practice was adopted into Israeli schools and is still commonplace
today in elementary schools (including secular schools) but in fewer secondary schools.[21] It
is also used occasionally in books by religious authors, but most books for adults use the
international symbol "+". The reason for this practice is that it avoids the writing of a symbol
"+" that looks like a Christian cross.[20][21] Unicode has this symbol at position U+FB29 ﬩
HEBREW LETTER ALTERNATIVE PLUS SIGN.[22]
See also
Graft-chimaera for the meaning of + in botanical names
List of international call prefixes that + can represent the numbers required to dial out of a country as seen in a
phone number
Table of mathematical symbols
En dash, a dash that looks similar to the subtraction symbol but is used for different purposes
Asterisk, the star mark ⟨*⟩ denoting unattested linguistic reconstructions, sometimes replaced by a superscript
plus⟨+⟩

References and footnotes


1. Karpinski, Louis C. (1917). "Algebraical Developments Among the Egyptians and Babylonians". The American
Mathematical Monthly. 24 (6): 257–265. doi:10.2307/2973180 (https://doi.org/10.2307%2F2973180).
MR 1518824 (https://www.ams.org/mathscinet-getitem?mr=1518824).
2. The birth of symbols – Zdena Lustigova, Faculty of Mathematics and Physics Charles University, Prague (http://e
duc.ubc.ca/courses/etec540/Sep02/ResearchAssignment/LustigovaZ/ra-LustigovaZ.htm)
3. Ley, Willy (April 1965). "Symbolically Speaking" (https://archive.org/stream/Galaxy_v23n04_1965-04#page/n57/m
ode/2up). For Your Information. Galaxy Science Fiction. pp. 57–67.
4. Stallings, Lynn (May 2000). "A brief history of algebraic notation" (http://findarticles.com/p/articles/mi_qa3667/is_2
00005/ai_n8885415/). School Science and Mathematics. Retrieved 13 April 2009.
5. Sangster, Alan; Stoner, Greg; McCarthy, Patricia (2008). "The market for Luca Pacioli's Summa Arithmetica" (http
://eprints.mdx.ac.uk/3201/1/final_final_proof_Market_paper_050308.pdf) (PDF). Accounting Historians Journal.
35 (1): 111–134 [p. 115].
6. Cajori, Florian (1928). "Origin and meanings of the signs + and -". A History of Mathematical Notations, Vol. 1.
The Open Court Company, Publishers.
7. Wright, D. Franklin; New, Bill D. (2000). Intermediate Algebra (4th ed.). Thomson Learning. p. 1. "The minus sign
or bar, — , is thought to be derived from the habit of early scribes of using a bar to represent the letter m"
8. "plus" (http://oed.com/search?searchType=dictionary&q=plus). Oxford English Dictionary (3rd ed.). Oxford
University Press. September 2005. (Subscription or UK public library membership (http://www.oxforddnb.com/help/subs
cribe#public) required.)
9. Smith, D.E. (1951). History of Mathematics. 1. Courier Dover Publications. pp. 258, 330. ISBN 0486204308.
10. Earliest Uses of Various Mathematical Symbols (http://jeff560.tripod.com/operation.html)
11. Cajori, Florian (2007), A History of Mathematical Notations (https://books.google.com/books?id=rhEh8jPGQOcC&
pg=PA164), Cosimo, p. 164, ISBN 9781602066847.
12. Fraleigh, John B. (1989). A First Course in Abstract Algebra (4 ed.). United States: Addison-Wesley. p. 52.
ISBN 0-201-52821-5.
13. Henri Picciotto. The Algebra Lab (https://books.google.com/books?id=nzukMBV6ReoC&pg=PA9). Creative
Publications. p. 9. ISBN 978-0-88488-964-9.
14. Schwartzman, Steven (1994). The words of mathematics. The Mathematical Association of America. p. 136.
15. Wheeler, Ruric E. (2001). Modern Mathematics (11 ed.). p. 171.
16. "Microsoft Office Excel Calculation operators and precedence" (https://web.archive.org/web/20090811090433/htt
p://office.microsoft.com/en-us/excel/HP100788861033.aspx). Archived from the original (http://office.microsoft.co
m/en-us/excel/HP100788861033.aspx) on 2009-08-11. Retrieved 2009-07-29.
17. Grant P. Wiggins; Jay McTighe (2005). Understanding by design. ACSD Publications. p. 210. ISBN 1-4166-0035-
3.
18. Castledine, George; Close, Ann (2009). Oxford Handbook of Adult Nursing (https://books.google.com/books?id=
R6icAwAAQBAJ&pg=PR17). Oxford University Press. p. xvii. ISBN 9780191039676..
19. Hartell, Rhonda L., ed. (1993), The Alphabets of Africa. Dakar: UNESCO and SIL.
20. Kaufmann Kohler (1901–1906). "Cross". In Cyrus Adler; et al. Jewish Encyclopedia (http://www.jewishencycloped
ia.com/articles/4776-cross).
21. Christian-Jewish Dialogue: Theological Foundations By Peter von der Osten-Sacken (1986 – Fortress Press) (htt
ps://books.google.com/books?id=m8sWAAAAIAAJ&dq=Jewish+plus+sign&q=%22plus+sign+used+in+mathemati
cs%22&pgis=1) ISBN 0-8006-0771-6 "In Israel the plus sign used in mathematics is represented by a horizontal
stroke with a vertical hook instead of the sign otherwise used all over the world, because the latter is reminiscent
of a cross." (Page 96)
22. Unicode U+FB29 reference page (http://www.decodeunicode.org/U+FB29) This form of the plus sign is also used
on the control buttons at individual seats on board the El Al Israel Airlines aircraft.
Retrieved from "https://en.wikipedia.org/w/index.php?title=Plus_and_minus_signs&oldid=823910122"

This page was last edited on 4 February 2018, at 04:22.

Text is available under the Creative Commons Attribution-ShareAlike License; additional terms may apply. By using
this site, you agree to the Terms of Use and Privacy Policy. Wikipedia® is a registered trademark of the Wikimedia
Foundation, Inc., a non-profit organization.

También podría gustarte