Content deleted Content added
mNo edit summary |
Kevinatilusa (talk | contribs) Added more information regarding unrestricted partitions |
||
Line 1:
The '''partition [[function]]''' p(''n'') is a [[multiplicative function|non-multiplicative function]] and represents the [[number]] of possible [[integer partition|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(<i>n</i>)=0 for <i>n</i> negative.
1. smallest [[addend]] is ''k''
Line 6 ⟶ 7:
2. smallest addend is [[strictly greater than]] than ''k''
The number of partitions meeting the first condition is p(''k'',''n''-''k'').
The number of partitions meeting the second condition is p(''k''+1,''n'')
Since the two conditions are [[mutually exclusive]], the number of partitions meeting either condition is p(''k''+1,''n'')+p(''k'',''n''-''k''). The base cases of this [[recursion|recursive]] function are as follows:
Line 16 ⟶ 17:
* p(''k'',''n'') = 1 if ''k'' = ''n''
This function
:p(1,4)=5
Line 24 ⟶ 25:
:p(5,20)=13
:p(6,24)='''16'''
Our original function p(<i>n</i>) is just p(1,<i>n</i>).
An alternative computation of the partition function involves [[generating function|generating functions]]. Consider the infinite product
<math>\prod_{k=1}^\infty \left(\frac {1}{1-x^k} \right) </math>
Expanding each term as a [[geometric series]], we can rewrite it as
(1+<i>x</i>+<i>x</i><sup>2</sup>+<i>x</i><sup>3</sup>+...)(1+<i>x</i><sup>2</sup>+<i>x</i><sup>4</sup>+<i>x</i><sup>6</sup>+...)(1+<i>x</i><sup>3</sup>+<i>x</i><sup>6</sup>+<i>x</i><sup>9</sup>+...)...
The <i>x</i><sup>m</sup> term in this product counts the number of ways to write
<i>n</i>=<i>a</i><sub>1</sub>+2<i>a</i><sub>2</sub>+3<i>a</i><sub>3</sub>+...=(1+1+1+1+...)+(2+2+2+2+...)+(3+3+3...)+...,
where each number <i>i</i> appears <i>a</i><sub>i</sub> times. This is precisely the definition of a partition of <i>n</i>, so our product is the desired generating function. More generally, the generating function for the partitions of <i>n</i> into numbers from a set <i>A</i> can be found by taking only those terms in the product where <i>k</i> is an element of <i>A</i> This result is due to [[Leonhard Euler|Euler]]
The formulation of the generating function is similar to the product formulation of many [[modular form|modular forms]], giving some idea of the connection between the two. It can also be used in conjunction with the [[pentagonal number theorem]] to derive a recurrence for the partition function stating that
p(<i>k</i>)-p(<i>k</i>-1)-p(<i>k</i>-2)+p(<i>k</i>-5)+p(<i>k</i>-7)-p(<i>k</i>-12)-...=0,
where the sum is taken over all [[polygonal number|pentagonal numbers]] of the form ½<i>n</i>(3<i>n</i> - 1), including those where <i>n</i><0, and the terms continue to alternate +, +, -, -, +, +, ...
Some values of the partition function are as follows:
*p(1)=1
*p(2)=2
*p(3)=3
*p(4)=5
*p(5)=7
*p(6)=11
*p(7)=15
*p(8)=22
*p(9)=30
*p(10)=42
*p(100)=190569292
|