Difference between revisions of "Partition"

Line 64: Line 64:
  
 
== Formulas ==
 
== Formulas ==
 
+
An interesting theorem is that the numbers of partitions ''consisitng of only consecutive positive integers'' of n is the number of odd divisors of n.  (Proof needed)
 
== Resources ==
 
== Resources ==
 
* [http://www.artofproblemsolving.com/Resources/Papers/LaurendiPartitions.pdf Partitions of Integers by Joseph Laurendi]
 
* [http://www.artofproblemsolving.com/Resources/Papers/LaurendiPartitions.pdf Partitions of Integers by Joseph Laurendi]
 
* [http://www.albanyconsort.com/JacobiTheta/JacobiTheta.pdf The Jacobi Theta Function by Simon Rubinstein-Salzedo]
 
* [http://www.albanyconsort.com/JacobiTheta/JacobiTheta.pdf The Jacobi Theta Function by Simon Rubinstein-Salzedo]

Revision as of 00:11, 4 July 2006

A partition of a positive integer is a way of expressing it as the sum of other positive integers. Typically, one disregards the order of the summands. For example, there are three partitions of 3: $3 = 2+1 =1+1+1$.

There is no known, simple formula that gives the number of partitions of a number. There is, however, a rather ugly formula discovered by G. H. Hardy, J. E. Littlewood, and Srinivasa Ramanujan. However, this formula is rather unwieldy: it is not even known for which values of $\displaystyle{n}$ the number of partitions of $\displaystyle{n}$ is even, despite the presence of a formula!

A more fruitful way of studying partition numbers is through generating functions. The generating function for the partitions is given by $P(x)=\prod_{n=1}^\infty \frac{1}{1-x^n}$. Partitions can also be studied by using the Jacobi theta function, in particular the triple product. The generating function approach and the theta function approach can be used to study many variants of the partition function, such as the number of ways to write a number n as the sum of odd parts, or of distinct parts, or of parts congruent to $1\pmod 3$, etc.

Ferrers Diagrams

A Ferrers Diagram is a way to represent a certain partition of a number. The diagram consists of rows of dots. Each row represents a different addend in the partition. The rows are ordered in non-increasing order so that that the row with the most dots is on the top and the row with the least dots is on the bottom.

For example, 9 can be partitioned into 4 + 3 + 1 + 1 which would be represented by the following Ferrers Diagram:

4 $\bullet$ $\bullet$ $\bullet$ $\bullet$
3 $\bullet$ $\bullet$ $\bullet$
1 $\bullet$
1 $\bullet$

The Conjugate

The conjugate of a Ferrers Diagram is formed by reflecting the diagram across its diagonal (the one starting in the top left of the diagram). This can also be interpreted as exchanging the rows for the columns. For example, consider our example from before but this time let's count the number of dots in each column:

4 2 2 1
4 $\bullet$ $\bullet$ $\bullet$ $\bullet$
3 $\bullet$ $\bullet$ $\bullet$
1 $\bullet$
1 $\bullet$

The original partition is 4 + 3 + 1 + 1 and the conjugate is 4 + 2 + 2 + 1.

Generating Functions

Formulas

An interesting theorem is that the numbers of partitions consisitng of only consecutive positive integers of n is the number of odd divisors of n. (Proof needed)

Resources