Partition (number theory)

Partition (number theory)
Young diagrams associated to the partitions of the positive integers 1 through 8. They are so arranged that images under the reflection about the main diagonal of the square are conjugate partitions.

In number theory and combinatorics, a partition of a positive integer n, also called an integer partition, is a way of writing n as a sum of positive integers. Two sums that differ only in the order of their summands are considered to be the same partition; if order matters then the sum becomes a composition. For example, 4 can be partitioned in five distinct ways:

4,     3 + 1,     2 + 2,     2 + 1 + 1,     1 + 1 + 1 + 1.

The order-dependent composition 1 + 3 is the same partition as 3 + 1, while 1 + 2 + 1 and 1 + 1 + 2 are the same partition as 2 + 1 + 1.

A summand in a partition is also called a part. The number of partitions of n is given by the partition function p(n). The notation p n means that p is a partition of n. So p(4) = 5.

Partitions can be graphically visualized with Young diagrams or Ferrers diagrams. They occur in a number of branches of mathematics and physics, including the study of symmetric polynomials, the symmetric group and in group representation theory in general.

Contents

Examples

The partitions of 4 are:

  1. 4
  2. 3 + 1
  3. 2 + 2
  4. 2 + 1 + 1
  5. 1 + 1 + 1 + 1

In some sources partitions are treated as the sequence of summands, rather than as an expression with plus signs. For example, the partition 2 + 1 + 1 might instead be written as the tuple (2, 1, 1) or in the even more compact form (2, 12) where the superscript indicates the number of repetitions of a term.

Partition function

In number theory, the partition function p(n) represents the number of possible partitions of a natural number n, which is to say the number of distinct (and order independent) ways of representing n as a sum of natural numbers. By convention p(0) = 1, p(n) = 0 for n negative.

Values

The number of partitions of the numbers from 1 to 10 are

1, 2, 3, 5, 7, 11, 15, 22, 30, 42 (sequence A000041 in OEIS).

There are 190,569,292 partitions of the number 100, and approximately 2.4×1031 partitions of the number 1000.

As of September 2011, the largest known prime number that counts a number of partitions is p(60016427), with 8622 decimal digits, found by Bernardo Boncompagni.[1]

Intermediate function

One way of getting a handle on the partition function involves an intermediate function p(k, n), which represents the number of partitions of n using only natural numbers at least as large as k. For any given value of k, partitions counted by p(k, n) fit into exactly one of the following categories:

  1. smallest addend is k
  2. smallest addend is strictly greater than k.

The number of partitions meeting the first condition is p(kn − k). To see this, imagine a list of all the partitions of the number n − k into numbers of size at least k, then imagine appending "+ k" to each partition in the list. Now what is it a list of? As a side note, one can use this to define a sort of recursion relation for the partition function in term of the intermediate function, namely

1+\sum_{k=1}^{\lfloor \frac{1}{2}n \rfloor} p(k,n-k) = p(n),

where \lfloor{n}\rfloor is the floor function.

The number of partitions meeting the second condition is p(k + 1, n) since a partition into parts of at least k that contains no parts of exactly k must have all parts at least k + 1.

Since the two conditions are mutually exclusive, the number of partitions meeting either condition is p(k + 1, n) + p(kn − k). The recursively defined function is thus:

  • p(k, n) = 0 if k > n
  • p(k, n) = 1 if k = n
  • p(k, n) = p(k+1, n) + p(k, nk) otherwise.

This function tends to exhibit deceptive behavior.

p(1, 4) = 5
p(2, 8) = 7
p(3, 12) = 9
p(4, 16) = 11
p(5, 20) = 13
p(6, 24) = 16

Our original function p(n) is just p(1, n).

The values of this function:

k
1 2 3 4 5 6 7 8 9 10
n 1 1 0 0 0 0 0 0 0 0 0
2 2 1 0 0 0 0 0 0 0 0
3 3 1 1 0 0 0 0 0 0 0
4 5 2 1 1 0 0 0 0 0 0
5 7 2 1 1 1 0 0 0 0 0
6 11 4 2 1 1 1 0 0 0 0
7 15 4 2 1 1 1 1 0 0 0
8 22 7 3 2 1 1 1 1 0 0
9 30 8 4 2 1 1 1 1 1 0
10 42 12 5 3 2 1 1 1 1 1

Generating function

A generating function for p(n) is given by the reciprocal of Euler's function:

\sum_{n=0}^\infty p(n)x^n = \prod_{k=1}^\infty \left(\frac {1}{1-x^k} \right).

Expanding each term on the right-hand side as a geometric series, we can rewrite it as

(1 + x + x2 + x3 + ...)(1 + x2 + x4 + x6 + ...)(1 + x3 + x6 + x9 + ...) ....

The xn term in this product counts the number of ways to write

n = a1 + 2a2 + 3a3 + ... = (1 + 1 + ... + 1) + (2 + 2 + ... + 2) + (3 + 3 + ... + 3) + ...,

where each number i appears ai times. This is precisely the definition of a partition of n, so our product is the desired generating function. More generally, the generating function for the partitions of n into numbers from a set A can be found by taking only those terms in the product where k is an element of A. This result is due to Euler.

The formulation of Euler's generating function is a special case of a q-Pochhammer symbol and is similar to the product formulation of many modular forms, and specifically the Dedekind eta function. It can also be used in conjunction with the pentagonal number theorem to derive a recurrence for the partition function stating that:

p(k) = p(k − 1) + p(k − 2) − p(k − 5) − p(k − 7) + p(k − 12) + p(k − 15) − p(k − 22) − ...

where p(0) is taken to equal 1, p(k) is zero for negative k, and the sum is taken over all generalized pentagonal numbers of the form ½n(3n − 1), for n running over positive and negative integers: successively taking n = 1, −1, 2, −2, 3, −3, 4, −4 ..., generates the values 1, 2, 5, 7, 12, 15, 22, 26, 35, 40, 51, .... The signs in the summation continue to alternate +, +, −, −, +, +, ...

Congruences

Srinivasa Ramanujan is credited with discovering that "congruences" in the number of partitions exist for integers ending in 4 and 9.

p(5k+4)\equiv 0 \pmod 5

For instance, the number of partitions for the integer 4 is 5. For the integer 9, the number of partitions is 30; for 14 there are 135 partitions. He also discovered congruences related to 7 and 11:

\begin{align}
 p(7k + 5) &\equiv 0 \pmod 7\\
 p(11k + 6) &\equiv 0 \pmod {11}
\end{align}

Since 5, 7, and 11 are consecutive primes, one might think that there would be such a congruence for the next prime 13, \scriptstyle p(13k \,+\, a) \;\equiv\; 0 \pmod{13} for some a. This is, however, false. It can also be shown that there is no congruence of the form \scriptstyle p(bk \,+\, a) \;\equiv\; 0 \pmod{b} for any prime b other than 5, 7, or 11.

In the 1960s, A. O. L. Atkin of the University of Illinois at Chicago discovered additional congruences for small prime moduli. For example:

p(11^3 \cdot 13 \cdot k + 237)\equiv 0 \pmod {13}

In 2000, Ken Ono of the University of Wisconsin–Madison proved that there are such congruences for every prime modulus. A few years later Ono, together with Scott Ahlgren of the University of Illinois, proved that there are partition congruences modulo every integer coprime to 6.[2]

Partition function formulas

An asymptotic expression for p(n) is given by

p(n) \sim \frac {1} {4n\sqrt{3}} e^{\pi \sqrt {\frac{2n}{3}}} \mbox { as } n\rightarrow \infty.

This asymptotic formula was first obtained by G. H. Hardy and Ramanujan in 1918 and independently by J. V. Uspensky in 1920. Considering p(1000), the asymptotic formula gives about 2.4402 × 1031, reasonably close to the exact answer given above (1.415% larger than the true value).

In 1937, Hans Rademacher was able to improve on Hardy and Ramanujan's results by providing a convergent series expression for p(n). It is

p(n)=\frac{1}{\pi \sqrt{2}} \sum_{k=1}^\infty \sqrt{k}\, A_k(n)\,
\frac{d}{dn} \left(
    \frac {1} {\sqrt{n-\frac{1}{24}}}
    \sinh \left[ \frac{\pi}{k}
    \sqrt{\frac{2}{3}\left(n-\frac{1}{24}\right)}\right]
\right)

where

A_k(n) = \sum_{0 \,\le\, m \,<\, k; \; (m,\, k) \,=\, 1}
e^{ \pi i \left[ s(m,\, k) \;-\; \frac{1}{k} 2 nm \right] }.

It can be shown that the derivative part of the sum can be simplified. [3] Here, the notation (mn) = 1 implies that the sum should occur only over the values of m that are relatively prime to n. The function s(mk) is a Dedekind sum. The proof of Rademacher's formula involves Ford circles, Farey sequences, modular symmetry and the Dedekind eta function in a central way.

In January 2011, it was announced that Ono and Jan Hendrik Bruinier, of the Technische Universität Darmstadt, had developed a finite, algebraic formula determining the value of p(n) for any positive integer n.[4] [5]

The partition function can be expressed as a sum over the pentagonal partitions of n. Let n = k1 + 2k2 + 5k5 + . . . =  \scriptstyle \sum_m q m kqm be a pentagonal partition of n, where each qm = m(3m-1)/2 is a generalized pentagonal number (GPN) with qM being the largest GPN less than or equal to n. Then[6]

  p(n)  =   \sum_{k_1 =0}^{n}  \sum_{k_2 =0}^{\lfloor n/2 \rfloor } \sum_{k_5 =0}^{\lfloor n/5 \rfloor } 
          \cdots \sum_{k_{q_{M}} =0}^{\lfloor n/q_M \rfloor }  (-1)^A
          \left( \begin{array}{c} K \\ k_1, k_2, k_5,  \ldots ,k_{q_M} \end{array} \right) 
          \delta_{n,  \sum q_m k_{q_{m}}},

where

 \begin{align} 
           K & = k_1 + k_2 + k_5 + k_7 + \cdots, \\
          A & = k_5 + k_7 + k_{22} +k_{26} + \cdots =\sum_{m= \pm 2, \pm 4, \ldots} k_{q_{m}}, \end{align}

and where

 \left( \begin{array}{c} K \\ k_1, \ldots , k_n \end{array} \right)
          \equiv \frac{ K!}{k_1! \cdots k_n!} ~ \delta_{K,k_1+ \cdots + k_n}

is a multinomial coefficient. The number of terms in the sum for p(n) is sequence OEISA095699. E.g., 8=7+1 = 5+2+1 = 5+1+1+1 = 2+2+2+2 = . . . . , and

\begin{align} p(8) &= -  \left( \begin{array}{c} 2 \\ 1,0,0,1 \end{array} \right) -  \left( \begin{array}{c} 3 \\ 1,1,1,0 \end{array} \right) 
         -  \left( \begin{array}{c} 4 \\ 3,0,1,0 \end{array} \right) + \left( \begin{array}{c} 4 \\ 0,4,0,0 \end{array} \right)  \\ & ~~~
           + \left( \begin{array}{c} 5 \\ 2,3,0,0 \end{array} \right)  +
           \left( \begin{array}{c} 6 \\ 4,2,0,0 \end{array} \right) 
            +  \left( \begin{array}{c} 7 \\ 6,1,0,0 \end{array} \right) +
             \left( \begin{array}{c} 8 \\ 8,0,0,0 \end{array} \right) \\
             &= -2 - 6 - 4 + 1 + 10 + 15 + 7 + 1 = 22. \end{align}

Determinant formulas

The value of p(n) for any n can be found from the formula:

 \begin{matrix}  {\rm GPN's} \\ 0 \\1\\2\\~\\~\\5\\~\\ 7\\ ~ \\ ~\\ \vdots \\ ~ \\ ~   \end{matrix}  
     ~~~    p(n) = \begin{vmatrix} ~~1 & -1~ & ~& ~ & ~ &~&~&~ \\
                                                         ~~1 & ~1 & -1~ & ~ \\
                                                         ~~0 & ~1 & ~1  & -1~ & ~ \\
                                                         ~~0 & ~0 & ~1 & ~1 &-1~ & ~ \\
                                                          -1 &~0 & ~0 & ~1 & ~1 &-1~ & ~  \\
                                                         ~~0 & -1~ & ~0 & ~0  & ~1 & ~1 & -1~ & ~ \\
                                                           -1 & ~0& -1~ & ~0 & ~0  & ~1 & ~1 & -1~ &~ \\ 
                                                         ~~0 & -1~ &~0& -1~ & ~0 & ~0  & ~1 & ~1 & -1~ &~ \\
                                                         ~~0 & ~0 & -1~ &~0& -1~ & ~0 & ~0  & ~1 & ~1 & ~ \\ 
                                                           ~~ \vdots & ~ & ~ & ~ & ~ & ~ &~ & ~ & ~ &  \ddots   \\ 
\end{vmatrix} _{ n \times n} .

I.e., p(n) is the determinant of the n X n truncation of the infinite-dimensional Toeplitz matrix shown above. The only non-zero diagonals of this matrix are those which start on a row labeled by a generalized pentagonal number qm. (The superdiagonal is taken to start on row "0".) On these diagonals, the matrix element is (-1)m+1. This determinant formula is equivalent to the matrix relation,

 \begin{pmatrix}            ~p(0) & ~ \\
                                                         ~ p(1) & p(0) &~ \\
                                                         ~p(2) & p(1) & p(0) & ~ \\
                                                          ~p(3) & p(2) & p(1)  & p(0) & ~ \\
                                                          ~p(4) & p(3) & p(2) & p(1)  & p(0) & ~ \\
                                                          ~p(5) & p(4) & p(3) & p(2) & p(1)  & p(0) & ~ \\
                                                         ~ \vdots & ~ & ~ & ~ & ~ & ~ &  \ddots   \end{pmatrix} 
                        = \begin{pmatrix}  ~1 & ~ \\  
                                                          -1 & ~1 &~ \\
                                                          -1 & -1 & ~1 & ~ \\
                                                          ~0 & -1 & -1  & ~1 & ~ \\
                                                          ~0 & ~0 & -1 & -1 &~1 & ~ \\
                                                          ~1 &~0 & ~0 & -1 & -1 &~1 & ~  \\                                                    
                                                          ~\vdots & ~ & ~ & ~ & ~ &  ~ &  \ddots   \\ \end{pmatrix}^{-1} ,

which is simply the generating-function equation above (plus the pentagonal number theorem) translated into matrix form.

By using the identity by Ramanujan,[7]

  \sum_{k=0}^{\infty} p(5k+4)x^k = 5~ \frac{ (x^5)^5_{\infty} } {(x)^6_{\infty}} , ~  (x)_{\infty} \equiv \prod_{m=1}^{\infty}(1-x^m),

the partition function p(5k-1) can be expressed alternatively as the determinant of a lower, k-dimensional matrix:

 p(5k-1) = 5 \cdot\begin{vmatrix}   ~1& ~ & ~&~&~&~&~&~1~\\
                                                                                  -6& ~1& ~ & ~&~&~&~&~0~\\
                                                                                  ~9& -6& ~1& ~ & ~&~&~&~0~\\
                                                                                ~10& ~9& -6& ~1 & ~ & ~&~&~0~\\
                                                                               -30 & ~10 & ~9& -6&~1 & ~& ~&~0~\\
                                                                                  ~0& -30 & ~10& ~9&   -6&~1& ~& -5~\\
                                                                                ~11&  ~0& -30 & ~10& ~9& -6 &  ~ &~0~\\
                                                                              ~ \vdots & ~&~&~&~&~&~\ddots &  ~\vdots~ \end{vmatrix}_{k \times k} .

The numbers making up the first column correspond to sequence OEISA000729, while every fifth element (after the initial "1") in the last column is from sequence OEISA000728: (1,-5,5,10,-15,-6, . . . .); all other elements in that column are zero. For example,

   p(29) = 5 \cdot\begin{vmatrix}   ~1 & ~   & ~ &~&~& ~1~\\
                                                                          -6 & ~1 & ~ &~&~&  ~0~\\
                                                                          ~9 & -6 & ~1 &~&~& ~0~\\
                                                                        ~10& ~9& -6&~1&~&  ~0~\\
                                                                        -30 &~10& ~9& -6&~1&  ~0~\\  
                                                                        0 &  -30 &~10& ~9& -6&  -5~\\  \end{vmatrix}= 4565.

In a like fashion, by using two other identities by Ramanujan, the partition functions p(7k-2) and p(25k-1) can also be expressed as k-dimensional determinants:

 
\begin{align}
p(7k-2) &= 7 \cdot\begin{vmatrix}   ~1& ~ &~& ~&1~\\
                                                                  -8& ~1& ~ &~&3~\\
                                                                ~20& -8& ~1& ~ & 2~\\
                                                                 ~0 &  ~20& -8& ~&  8~\\   
                                                       ~ \vdots & ~&~& \ddots &  \vdots~ \end{vmatrix}_{ k \times k } \\ 

 p(25k-1) & = 25 \cdot\begin{vmatrix}   ~1& ~ &~& ~& 63~\\
                                                                      -31& ~1& ~ &~& 4988~\\
                                                                   ~434 & -31& ~1& ~ & 95751~\\
                                                                 -3565 &~434 & -31& ~ & 766014~\\  
                                                              ~ \vdots & ~&~& \ddots &  \vdots~ \end{vmatrix}_{ k \times k }
\end{align}

where the first column in each matrix is sequence OEISA000731 and OEISA010836, respectively, and the last column in each is from the expansions:

 
\begin{align}
 (x)^4_{\infty} (x^7)^3_{\infty} +7x(x^7)^7_{\infty} &= 1 +3x+2x^2+8x^3 + \cdots ;\\& \\
  63  (x)^{24}_{\infty}  (x^5)^{6}_{\infty} + 5^3 \cdot 52x  (x)^{18}_{\infty}  (x^5)^{12}_{\infty}  
          &+ 5^5 \cdot 63x^2 (x)^{12}_{\infty}   (x^5)^{18}_{\infty} \\
       +~ 5^{8} \cdot 6x^3 (x)^{6}_{\infty} (x^5)^{24}_{\infty} &+ 5^{10} \cdot x^4 (x^5)^{30}_{\infty} \\
   & =  63+4988x +95751x^2 +766014x^3 + \cdots.
\end{align}

As an example, the calculation of p(149) is:

 p(149) = 25 \cdot \begin{vmatrix}   
                                                                           ~1 & ~   & ~ &~&~& ~63~\\
                                                                          -31 & ~1 & ~ &~&~& ~4988~\\
                                                                          ~434 & -31 & ~1 &~&~& ~95751~\\
                                                                        -3565 & ~434 & -31&~1&~& ~766014~\\
                                                                        ~18445 & -3565 & ~434& -31&~1&  ~3323665~\\  
                                                                         -57505 &  ~18445 &-3565& ~434& -31 &~ 8359848~\\ 
                                                                           \end{vmatrix}=  37027355200 .

The nth partial sum of the partition function is given by

 \sum_{k=0}^n p(k) = \begin{vmatrix} ~2 & -1 & ~ \\
                                                                                     ~0 & ~2 & -1 & ~ \\
                                                                                     -1 & ~0 & ~2 & -1 & ~\\
                                                                                     ~0 & -1 & ~0 & ~2 & -1 & ~ \\
                                                                                     -1 & ~0 & -1 & ~0 & ~2 & -1 & ~ \\
                                                                                     ~1 & -1 & ~0 & -1 & ~0 & ~2 & -1 & ~ \\
                                                                                      ~\vdots &~&~&~&~&~& \ddots & \ddots & ~\\
                                                                                      c_{n-1} & c_{n-2} & ~& \cdots &~&~&~&~ 2 & -1 &~\\
                                                                                      c_n & c_{n-1} &~& \cdots &~& ~&~& ~0 &~2&~
 \end{vmatrix}_{n \times n} ,

where c0 =-1, c1 = 2, c2 = 0, and for k > 2,

 c_k = \left\{ \begin{align} (-1)^{m+1} ~ & {\rm if~}  k= q_m ,\\
                                                                 (-1)^m ~~~& {\rm if~} k=q_m+1, \\
                                                                    0 ~~~~~~ & {\rm otherwise} .
\end{align}  \right.

The partition function for partitions into distinct integers, q(n), is

 q(n) = \begin{vmatrix}   ~1& ~ & ~&~&~&~&~&~&~1~\\
                                                             -1& ~1& ~ & ~&~&~&~&~&~0~\\
                                                             -1& -1& ~1& ~ & ~&~&~&~&-1~\\
                                                             ~0& -1& -1& ~1 & ~ & ~&~&~&~0~\\
                                                             ~0 & ~0 & -1& -1&~1 & ~&~&~&-1~\\
                                                             ~1& ~0 & ~0& -1&   -1&~1&~&~& ~0~\\
                                                             ~0 &  ~1& ~0 & ~0& -1& -1&~1 &  ~ &~0~\\
                                                             ~1 &  ~0& ~1 & ~0&~0& -1& -1 &~&~0~\\   
                                                            ~ \vdots & ~&~&~&~&~& ~& \ddots &  ~\vdots~ \end{vmatrix}_{(n+1) \times (n+1)} ,

where the first column is sequence OEISA010815, and a matrix element in the last column equals (-1) m if the row number is 2qm+1; otherwise it equals zero. (This is also the partition function for partitions into odd integers; see below.)

Restricted partitions

Among the 22 partitions for the number 8, 6 contain only odd parts:

  • 7 + 1
  • 5 + 3
  • 5 + 1 + 1 + 1
  • 3 + 3 + 1 + 1
  • 3 + 1 + 1 + 1 + 1 + 1
  • 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1

If we count the partitions of 8 with distinct parts, we also obtain the number 6:

  • 8
  • 7 + 1
  • 6 + 2
  • 5 + 3
  • 5 + 2 + 1
  • 4 + 3 + 1

It is true for all positive numbers that the number of partitions with odd parts always equals the number of partitions with distinct parts. This result was proved by Leonhard Euler in 1748.[8]

Some similar results about restricted partitions can be obtained by the aid of a visual tool, a Ferrers graph (also called Ferrers diagram, since it is not a graph in the graph-theoretical sense, or sometimes Young diagram, alluding to the Young tableau).

Ferrers diagram

The partition 6 + 4 + 3 + 1 of the positive number 14 can be represented by the following diagram; these diagrams are named in honor of Norman Macleod Ferrers:

****
***
***
**
*
*
6 + 4 + 3 + 1

The 14 circles are lined up in 4 columns, each having the size of a part of the partition. The diagrams for the 5 partitions of the number 4 are listed below:

*
*
*
*
**
*
*
**
**
***
*
****
4 = 3 + 1 = 2 + 2 = 2 + 1 + 1 = 1 + 1 + 1 + 1

If we now flip the diagram of the partition 6 + 4 + 3 + 1 along its main diagonal, we obtain another partition of 14:

****
***
***
**
*
*
******
****
***
*
6 + 4 + 3 + 1 = 4 + 3 + 3 + 2 + 1 + 1

By turning the rows into columns, we obtain the partition 4 + 3 + 3 + 2 + 1 + 1 of the number 14. Such partitions are said to be conjugate of one another. In the case of the number 4, partitions 4 and 1 + 1 + 1 + 1 are conjugate pairs, and partitions 3 + 1 and 2 + 1 + 1 are conjugate of each other. Of particular interest is the partition 2 + 2, which has itself as conjugate. Such a partition is said to be self-conjugate.

Claim: The number of self-conjugate partitions is the same as the number of partitions with distinct odd parts.

Proof (outline): The crucial observation is that every odd part can be "folded" in the middle to form a self-conjugate diagram:

*
*
*
*
*
***
*
*

One can then obtain a bijection between the set of partitions with distinct odd parts and the set of self-conjugate partitions, as illustrated by the following example:

o*x
o*x
o*x
o*
o*
o*
o*
o
o
ooooo
o****
o*xx
o*x
o*
9 + 7 + 3 = 5 + 5 + 4 + 3 + 2
Dist. odd self-conjugate

Similar techniques can be employed to establish, for example, the following equalities:

  • The number of partitions of n into no more than k parts is the same as the number of partitions of n into parts no larger than k.
  • The number of partitions of n into no more than k parts is the same as the number of partitions of n + k into exactly k parts.

Young diagrams

An alternative visual representation of an integer partition is its Young diagram, named after the British mathematician Alfred Young. Rather than representing a partition with dots, as in the Ferrers diagram, the Young diagram uses boxes. Thus, the Young diagram for the partition 5 + 4 + 1 is

Young diagram for 541 partition.svg

while the Ferrers diagram for the same partition is

*****
****
*

While this seemingly trivial variation doesn't appear worthy of separate mention, Young diagrams turn out to be extremely useful in the study of symmetric functions and group representation theory: in particular, filling the boxes of Young diagrams with numbers (or sometimes more complicated objects) obeying various rules leads to a family of objects called Young tableaux, and these tableaux have combinatorial and representation-theoretic significance.

See also

Notes

References

  • George E. Andrews, The Theory of Partitions (1976), Cambridge University Press. ISBN 0-521-63766-X .
  • Tom M. Apostol, Modular functions and Dirichlet Series in Number Theory (1990), Springer-Verlag, New York. ISBN 0-387-97127-0 (See chapter 5 for a modern pedagogical intro to Rademacher's formula).
  • Sautoy, Marcus Du. The Music of the Primes. New York: Perennial-HarperCollins, 2003.
  • Lehmer, D. H. (1939). "On the remainder and convergence of the series for the partition function". Trans. Amer. Math. Soc. 46: 362–373. doi:10.1090/S0002-9947-1939-0000410-9. MR0000410.  Provides the main formula (no derivatives), remainder, and older form for Ak(n).)
  • Gupta, Gwyther, Miller, Roy. Soc. Math. Tables, vol 4, Tables of partitions, (1962) (Has text, nearly complete bibliography, but they (and Abramowitz) missed the Selberg formula for Ak(n), which is in Whiteman.)
  • Ian G. Macdonald, Symmetric functions and Hall polynomials, Oxford University Press, 1979, ISBN 0-19-853530-9 (See section I.1)
  • Ken Ono, Distribution of the partition function modulo m, Annals of Mathematics 151 (2000) pp 293–307. (This paper proves congruences modulo every prime greater than 3)
  • Richard P. Stanley, Enumerative Combinatorics, Volumes 1 and 2. Cambridge University Press, 1999 ISBN 0-521-56069-1
  • A. L. Whiteman, A sum connected with the series for the partition function, Pacific Journal of Math. 6:1 (1956) 159–176. (Provides the Selberg formula. The older form is the finite Fourier expansion of Selberg.)
  • Hans Rademacher, Collected Papers of Hans Rademacher, (1974) MIT Press; v II, p 100–107, 108–122, 460–475.
  • Miklós Bóna (2002). A Walk Through Combinatorics: An Introduction to Enumeration and Graph Theory. World Scientific Publishing. ISBN 981-02-4900-4.  (qn elementary introduction to the topic of integer partition, including a discussion of Ferrers graphs)
  • George E. Andrews, Kimmo Eriksson (2004). Integer Partitions. Cambridge University Press. ISBN 0-521-60090-1. 
  • 'A Disappearing Number', devised piece by Complicite, mention Ramanujan's work on the Partition Function, 2007

External links


Wikimedia Foundation. 2010.

Игры ⚽ Поможем написать реферат

Look at other dictionaries:

  • Composition (number theory) — For other uses, see Composition (disambiguation). In mathematics, a composition of an integer n is a way of writing n as the sum of a sequence of (strictly) positive integers. Two sequences that differ in the order of their terms define different …   Wikipedia

  • List of number theory topics — This is a list of number theory topics, by Wikipedia page. See also List of recreational number theory topics Topics in cryptography Contents 1 Factors 2 Fractions 3 Modular arithmetic …   Wikipedia

  • Timeline of number theory — A timeline of number theory.Before 1000 BC* ca. 20,000 BC Nile Valley, Ishango Bone: possibly the earliest reference to prime numbers and Egyptian multiplication.1st millennium* 250 Diophantus writes Arithmetica , one of the earliest treatises on …   Wikipedia

  • Partition — Generally, a partition is a splitting of something into parts. The term is used in a variety of senses: Law *Partition (law), to divide up a piece of land into separate portions representing the proportionate interests of the tenants. It may also …   Wikipedia

  • Partition function — may refer to:*Partition function (number theory) *Partition function (mathematics), which generalizes its use in statistical mechanics and quantum field theory: **Partition function (statistical mechanics) **Partition function (quantum field… …   Wikipedia

  • Partition d'un entier — Pour les articles homonymes, voir Partition.  En particulier en mathématiques, ne pas confondre avec la notion de partition de l unité ni celle de partition d un ensemble …   Wikipédia en Français

  • Number system — This article is about different sets of numbers. For different methods of expressing numbers with symbols, see numeral system. In mathematics, a number system is a set of numbers, (in the broadest sense of the word), together with one or more… …   Wikipedia

  • partition — partitionable, adj. partitionary, adj. partitioner, partitionist, n. partitionment, n. /pahr tish euhn, peuhr /, n. 1. a division into or distribution in portions or shares. 2. a separation, as of two or more things. 3. something that separates… …   Universalium

  • Multiplicative partition — In number theory, a multiplicative partition or unordered factorization of an integer n that is greater than 1 is a way of writing n as a product of integers greater than 1, treating two products as equivalent if they differ only in the ordering… …   Wikipedia

  • Partition function (statistical mechanics) — For other uses, see Partition function (disambiguation). Partition function describe the statistical properties of a system in thermodynamic equilibrium. It is a function of temperature and other parameters, such as the volume enclosing a gas.… …   Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”