Download PDF

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

Mathematics of radio engineering wikipedia , lookup

History of trigonometry wikipedia , lookup

Location arithmetic wikipedia , lookup

Mathematics and architecture wikipedia , lookup

Elementary mathematics wikipedia , lookup

Factorization wikipedia , lookup

Addition wikipedia , lookup

Proofs of Fermat's little theorem wikipedia , lookup

Pythagorean theorem wikipedia , lookup

Weber problem wikipedia , lookup

Transcript
Pascal’s triangle∗
Koro†
2013-03-21 15:58:57
Pascal’s triangle, also called Tartaglia’s triangle, is the following configuration of numbers:
1
1
1
1
1
1
1
1
1
3
4
5
6
7
2
6
10
15
21
1
3
1
4
10
20
35
15
35
..
.
..
.
1
5
1
6
21
1
7
1
..
.
In general, this triangle is constructed such that entries on the left side and
right side are 1, and every entry inside the triangle is obtained by adding the
two entries immediately above it. For instance, on the fourth row 4 = 1 + 3.
Historically, the application of this triangle has been to give the coefficients
when expanding binomial expressions. For instance, to expand (a + b)4 , one
simply look up the coefficients on the fourth row, and write
(a + b)4 = a4 + 4a3 b + 6a2 b2 + 4ab3 + b4 .
Pascal’s triangle is named after the French mathematician Blaise Pascal
(1623-1662) [?]. However, this triangle was known at least around 1100 AD in
China; five centuries before Pascal [?]. In modern language, the expansion of
the binomial is given by the binomial theorem discovered by Isaac Newton in
∗ hPascalsTrianglei created: h2013-03-21i by: hKoroi version: h34248i Privacy setting:
h1i hTopici h05A10i
† This text is available under the Creative Commons Attribution/Share-Alike License 3.0.
You can reuse this document or portions thereof only if you do so under terms that are
compatible with the CC-BY-SA license.
1
1665 [?]: For any n = 1, 2, . . . and real numbers a, b, we have
n
(a + b)
n X
n
an−k bk
k
k=0
n n−1
n n−2 2
n
= a +
a
b+
a
b + · · · + bn .
1
2
=
Thus, in Pascal’s triangle, the entries on the nth row are given by the binomial
coefficients
n
n!
=
.
k
(n − k)!k!
for k = 1, . . . , n.
Pascal’s triangle has many interesting numerical properties. For example, it
is easy to see that the sum of the entries in the nth row is 2n . This can be easily
proved by induction, but a more elegant proof goes as follows:
2n = (1 + 1)n =
n n X
n n−k k X n
1
1 =
k
k
k=0
k=0
If you look at the long diagonals parallel to the diagonal sides of the triangle,
you see in the second diagonal the integers 1, 2, 3, 4, . . .. The next diagonal down
contains the triangular numbers 1, 3, 6, 10, 15, . . ., and the row below that the
tetrahedral number 1, 4, 10, 20, 35, . . .. It is easy to see why this is: for example,
each triangular number is the sum of the previous triangular number and the
next integer, which precisely reflects the arrangement of the triangle. Each
tetrahedral number is the sum of the previous tetrahedral number and the size
of the next “layer” of the tetrahedron, which is just the next triangular number.
Similarly, succeeding diagonals give “triangular” number in higher dimensions.
References
[1] Wikipedia’s entry on the binomial coefficients
[2] Wikipedia’s entry on Isaac Newton
[3] Wikipedia’s entry on Blaise Pascal
2