HOME

TheInfoList



OR:

A triangular number or triangle number counts objects arranged in an
equilateral triangle An equilateral triangle is a triangle in which all three sides have the same length, and all three angles are equal. Because of these properties, the equilateral triangle is a regular polygon, occasionally known as the regular triangle. It is the ...
. Triangular numbers are a type of figurate number, other examples being
square number In mathematics, a square number or perfect square is an integer that is the square (algebra), square of an integer; in other words, it is the multiplication, product of some integer with itself. For example, 9 is a square number, since it equals ...
s and cube numbers. The th triangular number is the number of dots in the triangular arrangement with dots on each side, and is equal to the sum of the
natural number In mathematics, the natural numbers are the numbers 0, 1, 2, 3, and so on, possibly excluding 0. Some start counting with 0, defining the natural numbers as the non-negative integers , while others start with 1, defining them as the positive in ...
s from 1 to . The first 100 terms
sequence In mathematics, a sequence is an enumerated collection of objects in which repetitions are allowed and order matters. Like a set, it contains members (also called ''elements'', or ''terms''). The number of elements (possibly infinite) is cal ...
of triangular numbers, starting with the 0th triangular number, are


Formula

The triangular numbers are given by the following explicit formulas: where \textstyle is notation for a
binomial coefficient In mathematics, the binomial coefficients are the positive integers that occur as coefficients in the binomial theorem. Commonly, a binomial coefficient is indexed by a pair of integers and is written \tbinom. It is the coefficient of the t ...
. It represents the number of distinct pairs that can be selected from objects, and it is read aloud as " plus one choose two". The fact that the nth triangular number equals n(n+1)/2 can be illustrated using a visual proof. For every triangular number T_n, imagine a "half-rectangle" arrangement of objects corresponding to the triangular number, as in the figure below. Copying this arrangement and rotating it to create a rectangular figure doubles the number of objects, producing a rectangle with dimensions n \times (n+1), which is also the number of objects in the rectangle. Clearly, the triangular number itself is always exactly half of the number of objects in such a figure, or: T_n = \frac . The example T_4 follows: This formula can be proven formally using
mathematical induction Mathematical induction is a method for mathematical proof, proving that a statement P(n) is true for every natural number n, that is, that the infinitely many cases P(0), P(1), P(2), P(3), \dots  all hold. This is done by first proving a ...
. It is clearly true for 1: T_1 = \sum_^k = \frac = \frac = 1. Now assume that, for some natural number m, T_m = \sum_^k = \frac. We can then verify it for m+1: \begin \sum_^k &= \sum_^k + (m + 1) \\ &= \frac + m + 1\\ &= \frac + \frac\\ &= \frac\\ &= \frac, \end so if the formula is true for m, it is true for m+1. Since it is clearly true for 1, it is therefore true for 2, 3, and ultimately all natural numbers n by induction. The German mathematician and scientist,
Carl Friedrich Gauss Johann Carl Friedrich Gauss (; ; ; 30 April 177723 February 1855) was a German mathematician, astronomer, geodesist, and physicist, who contributed to many fields in mathematics and science. He was director of the Göttingen Observatory and ...
, is said to have found this relationship in his early youth, by multiplying pairs of numbers in the sum by the values of each pair . However, regardless of the truth of this story, Gauss was not the first to discover this formula, and some find it likely that its origin goes back to the
Pythagoreans Pythagoreanism originated in the 6th century BC, based on and around the teachings and beliefs held by Pythagoras and his followers, the Pythagoreans. Pythagoras established the first Pythagorean community in the Ancient Greece, ancient Greek co ...
in the 5th century BC. The two formulas were described by the Irish monk Dicuil in about 816 in his
Computus As a moveable feast, the date of Easter is determined in each year through a calculation known as – often simply ''Computus'' – or as paschalion particularly in the Eastern Orthodox Church. Easter is celebrated on the first Sunday after th ...
. An English translation of Dicuil's account is available. Occasionally it is necessary to compute large triangular numbers where the standard formula t = n*(n+1)/2 would suffer
integer overflow In computer programming, an integer overflow occurs when an arithmetic operation on integers attempts to create a numeric value that is outside of the range that can be represented with a given number of digits – either higher than the maximu ...
before the final division by 2. For example, = 210 < 256, so will fit into an 8-bit byte, but not the intermediate product 420. This can be solved by dividing either or by 2 before the multiplication, whichever is even. This does not require a
conditional branch A branch, jump or transfer is an instruction in a computer program that can cause a computer to begin executing a different instruction sequence and thus deviate from its default behavior of executing instructions in order. ''Branch'' (or ''br ...
if implemented as t = (n, 1) * ((n+1)/2). If n is odd, the binary OR operation n, 1 has no effect, so this is equivalent to t = n * ((n+1)/2) and thus correct. If n is even, setting the low bit with n, 1 is the same as adding 1, while the 1 added before the division is truncated away, so this is equivalent to t = (n+1) * (n/2) and also correct.


Relations to other figurate numbers

Triangular numbers have a wide variety of relations to other figurate numbers. Most simply, the sum of two consecutive triangular numbers is a square number, since: :T_ + T_ := \frac \, n(n-1) + \frac \, n (n + 1) := \frac \, n\Bigl((n - 1) + (n + 1)\Bigr) := n^2 with the sum being the square of the difference between the two (and thus the difference of the two being the square root of the sum): T_n + T_ = \left (\frac + \frac\right) + \left(\frac + \frac \right ) = \left (\frac + \frac\right) + \left(\frac - \frac \right ) = n^2 = (T_n - T_)^2. This property, colloquially known as the theorem of Theon of Smyrna, is visually demonstrated in the following sum, which represents T_ + T_ = 5^2 as digit sums: \begin & 4 & 3 & 2 & 1 & \\ + & 1 & 2 & 3 & 4 & 5 \\ \hline & 5 & 5 & 5 & 5 & 5 \end This fact can also be demonstrated graphically by positioning the triangles in opposite directions to create a square: The double of a triangular number, as in the visual proof from the above section , is called a pronic number. There are infinitely many triangular numbers that are also square numbers; e.g., 1, 36, 1225. Some of them can be generated by a simple recursive formula: S_ = 4S_n \left( 8S_n + 1\right) with S_1 = 1. ''All'' square triangular numbers are found from the recursion S_n = 34S_ - S_ + 2 with S_0 = 0 and S_1 = 1. Also, the square of the th triangular number is the same as the sum of the cubes of the integers 1 to . This can also be expressed as \sum_^n k^3 = \left(\sum_^n k \right)^2. The sum of the first triangular numbers is the th
tetrahedral number A tetrahedral number, or triangular pyramidal number, is a figurate number that represents a pyramid (geometry), pyramid with a triangular base and three sides, called a tetrahedron. The th tetrahedral number, , is the sum of the first triangular ...
: \sum_^n T_k = \sum_^n \frac = \frac . More generally, the difference between the th -gonal number and the th -gonal number is the th triangular number. For example, the sixth heptagonal number (81) minus the sixth hexagonal number (66) equals the fifth triangular number, 15. Every other triangular number is a hexagonal number. Knowing the triangular numbers, one can reckon any centered polygonal number; the th centered -gonal number is obtained by the formula Ck_n = kT_+1 where is a triangular number. The positive difference of two triangular numbers is a trapezoidal number. The pattern found for triangular numbers \sum_^n_1=\binom and for tetrahedral numbers \sum_^\sum_^ n_1=\binom, which uses
binomial coefficient In mathematics, the binomial coefficients are the positive integers that occur as coefficients in the binomial theorem. Commonly, a binomial coefficient is indexed by a pair of integers and is written \tbinom. It is the coefficient of the t ...
s, can be generalized. This leads to the formula: \sum_^\sum_^ \dots \sum_^\sum_^n_1 =\binom


Other properties

Triangular numbers correspond to the first-degree case of Faulhaber's formula. Alternating triangular numbers (1, 6, 15, 28, ...) are also hexagonal numbers. Every even
perfect number In number theory, a perfect number is a positive integer that is equal to the sum of its positive proper divisors, that is, divisors excluding the number itself. For instance, 6 has proper divisors 1, 2 and 3, and 1 + 2 + 3 = 6, so 6 is a perfec ...
is triangular (as well as hexagonal), given by the formula M_p 2^ = \frac2 = T_ where is a
Mersenne prime In mathematics, a Mersenne prime is a prime number that is one less than a power of two. That is, it is a prime number of the form for some integer . They are named after Marin Mersenne, a French Minim friar, who studied them in the early 1 ...
. No odd perfect numbers are known; hence, all known perfect numbers are triangular. For example, the third triangular number is (3 × 2 =) 6, the seventh is (7 × 4 =) 28, the 31st is (31 × 16 =) 496, and the 127th is (127 × 64 =) 8128. The final digit of a triangular number is 0, 1, 3, 5, 6, or 8, and thus such numbers never end in 2, 4, 7, or 9. A final 3 must be preceded by a 0 or 5; a final 8 must be preceded by a 2 or 7. In
base 10 The decimal numeral system (also called the base-ten positional numeral system and denary or decanary) is the standard system for denoting integer and non-integer numbers. It is the extension to non-integer numbers (''decimal fractions'') of t ...
, the digital root of a nonzero triangular number is always 1, 3, 6, or 9. Hence, every triangular number is either divisible by three or has a remainder of 1 when divided by 9: The digital root pattern for triangular numbers, repeating every nine terms, as shown above, is "1, 3, 6, 1, 6, 3, 1, 9, 9". The converse of the statement above is, however, not always true. For example, the digital root of 12, which is not a triangular number, is 3 and divisible by three. If is a triangular number, is an odd square, and , then is also a triangular number. Note that will always be a triangular number, because , which yields all the odd squares are revealed by multiplying a triangular number by 8 and adding 1, and the process for given is an odd square is the inverse of this operation. The first several pairs of this form (not counting ) are: , , , , , , ... etc. Given is equal to , these formulas yield , , , , and so on. The sum of the reciprocals of all the nonzero triangular numbers is \sum_^\infty = 2\sum_^\infty = 2 . This can be shown by using the basic sum of a telescoping series: \sum_^\infty = 1 . In addition, the ''n''th partial sum of this series can be written as Two other formulas regarding triangular numbers are T_ = T_a + T_b + ab and T_ = T_aT_b + T_T_, both of which can easily be established either by looking at dot patterns (see above) or with some simple algebra. The first formula are relevant to multiplication algorithm#Quarter square multiplication. In 1796, Gauss discovered that every positive integer is representable as a sum of three triangular numbers, writing in his diary his famous words, " ΕΥΡΗΚΑ! ". The three triangular numbers are not necessarily distinct, or nonzero; for example 20 = 10 + 10 + 0. This is a special case of the Fermat polygonal number theorem. The largest triangular number of the form is 4095 (see Ramanujan–Nagell equation). Wacław Franciszek Sierpiński posed the question as to the existence of four distinct triangular numbers in geometric progression. It was conjectured by Polish mathematician Kazimierz Szymiczek to be impossible and was later proven by Fang and Chen in 2007. Formulas involving expressing an integer as the sum of triangular numbers are connected to theta functions, in particular the Ramanujan theta function. The number of line segments between closest pairs of dots in the triangle can be represented in terms of the number of dots or with a
recurrence relation In mathematics, a recurrence relation is an equation according to which the nth term of a sequence of numbers is equal to some combination of the previous terms. Often, only k previous terms of the sequence appear in the equation, for a parameter ...
: L_n = 3 T_ = 3;\qquad L_n = L_ + 3(n-1), ~L_1 = 0. In the limit, the ratio between the two numbers, dots and line segments is \lim_ \frac = \frac.


Applications

The triangular number solves the handshake problem of counting the number of handshakes if each person in a room with people shakes hands once with each person. In other words, the solution to the handshake problem of people is . Equivalently, a fully connected network of computing devices requires the presence of cables or other connections. A triangular number T_ is equivalent to the number of principal rotations in dimension n+1. For example, in five dimensions the number of principal rotations is 10 which is T_. In a tournament format that uses a round-robin
group stage A tournament is a competition involving at least three competitors, all participating in a sport or game. More specifically, the term may be used in either of two overlapping senses: # One or more competitions held at a single venue and concentr ...
, the number of matches that need to be played between teams is equal to the triangular number . For example, a group stage with 4 teams requires 6 matches, and a group stage with 8 teams requires 28 matches. This is also equivalent to the handshake problem and fully connected network problems. One way of calculating the
depreciation In accountancy, depreciation refers to two aspects of the same concept: first, an actual reduction in the fair value of an asset, such as the decrease in value of factory equipment each year as it is used and wears, and second, the allocation i ...
of an asset is the sum-of-years' digits method, which involves finding , where is the length in years of the asset's useful life. Each year, the item loses , where is the item's beginning value (in units of currency), is its final salvage value, is the total number of years the item is usable, and the current year in the depreciation schedule. Under this method, an item with a usable life of = 4 years would lose of its "losable" value in the first year, in the second, in the third, and in the fourth, accumulating a total depreciation of (the whole) of the losable value.
Board game A board game is a type of tabletop game that involves small objects () that are placed and moved in particular ways on a specially designed patterned game board, potentially including other components, e.g. dice. The earliest known uses of the ...
designers Geoffrey Engelstein and Isaac Shalev describe triangular numbers as having achieved "nearly the status of a mantra or koan among game designers", describing them as "deeply intuitive" and "featured in an enormous number of games, rovingincredibly versatile at providing escalating rewards for larger sets without overly incentivizing specialization to the exclusion of all other strategies".


Triangular roots and tests for triangular numbers

By analogy with the
square root In mathematics, a square root of a number is a number such that y^2 = x; in other words, a number whose ''square'' (the result of multiplying the number by itself, or y \cdot y) is . For example, 4 and −4 are square roots of 16 because 4 ...
of , one can define the (positive) triangular root of as the number such that : n = \frac which follows immediately from the
quadratic formula In elementary algebra, the quadratic formula is a closed-form expression describing the solutions of a quadratic equation. Other ways of solving quadratic equations, such as completing the square, yield the same solutions. Given a general quadr ...
. So an integer is triangular
if and only if In logic and related fields such as mathematics and philosophy, "if and only if" (often shortened as "iff") is paraphrased by the biconditional, a logical connective between statements. The biconditional is true in two cases, where either bo ...
is a square. Equivalently, if the positive triangular root of is an integer, then is the th triangular number.


Alternative name

By analogy with the
factorial In mathematics, the factorial of a non-negative denoted is the Product (mathematics), product of all positive integers less than or equal The factorial also equals the product of n with the next smaller factorial: \begin n! &= n \times ...
function, a product whose factors are the integers from 1 to ,
Donald Knuth Donald Ervin Knuth ( ; born January 10, 1938) is an American computer scientist and mathematician. He is a professor emeritus at Stanford University. He is the 1974 recipient of the ACM Turing Award, informally considered the Nobel Prize of comp ...
proposed the name Termial function, with the notation ? for the sum whose terms are the integers from 1 to  (the th triangular number). Although some other sources use this name and notation, they are not in wide use.


See also

* 1 + 2 + 3 + 4 + ⋯ * Doubly triangular number, a triangular number whose position in the sequence of triangular numbers is also a triangular number *
Tetractys The tetractys (), or tetrad, or the tetractys of the decad is a triangular number, triangular figure consisting of ten points arranged in four rows: one, two, three, and four points in each row, which is the geometrical representation of the fourt ...
, an arrangement of ten points in a triangle, important in Pythagoreanism * Factoriangular number


References


External links

*
Triangular numbers
at
cut-the-knot Alexander Bogomolny (January 4, 1948 July 7, 2018) was a Soviet Union, Soviet-born Israeli Americans, Israeli-American mathematician. He was Professor Emeritus of Mathematics at the University of Iowa, and formerly research fellow at the Moscow ...

There exist triangular numbers that are also square
at
cut-the-knot Alexander Bogomolny (January 4, 1948 July 7, 2018) was a Soviet Union, Soviet-born Israeli Americans, Israeli-American mathematician. He was Professor Emeritus of Mathematics at the University of Iowa, and formerly research fellow at the Moscow ...
*
Hypertetrahedral Polytopic Roots
by Rob Hubbard, including the generalisation to ''triangular cube roots'', some higher dimensions, and some approximate formulas {{Classes of natural numbers Figurate numbers Factorial and binomial topics Integer sequences Proof without words Squares in number theory Triangles Simplex numbers