Say that you are a statistician and are asked to come up with a probability distribution for the current state of knowledge on some particular topic you know little about. (This, in Bayesian statistics, is known as choosing a suitable prior.) To do this, the safest bet is coming up with the least informative distribution via the principle of maximum entropy.
This principle is clearly explained by Jaynes (1968): consider a die which has been tossed a very large number of times . We expect the average to be , that is, we expect the following distribution where for each .
using DataFrames
using Gadfly
output_dir = @OUTPUT
write_svg(name, p) = draw(SVG(joinpath(output_dir, "$name.svg"), 6inch, 2inch), p)
function plot_distribution(probabilities::Array)::Plot
df = DataFrame(n = 1:6, P_n = probabilities)
plot(df, x = :n, y = :P_n,
Geom.bar(position = :dodge),
Theme(bar_spacing=2mm, default_color = "gray"),
Guide.xticks(ticks = 1:6),
Guide.yticks(ticks = 0.2:0.2:1)
)
end
plot_distribution([1/6, 1/6, 1/6, 1/6, 1/6, 1/6])
Instead, we are told that the average is . How likely is it for each number to come up for the next toss?
Since we know that always sums to 1, we have
We also know that the average is , that is,
We could satisfy these constraints by choosing .
plot_distribution([0, 0, 0, 0.5, 0.5, 0])
This is unlikely to be the distribution for our data since it can be derived in relatively few ways, namely: by throwing only and , and in such a way that the throws average to . A more likely distribution would be
plot_distribution([0, 0, 1/4, 1/4, 1/4, 1/4])
This is still not the least informative distribution since it assumes and to be impossible events. Jaynes presents the straight line solution ,
plot_distribution([(12n - 7)/210 for n in 1:6])
This solution would also fail if the mean would have been higher, because then would occur again. The correct measure is the following information measure (Shannon, 1948), which is also known as information entropy,
We can find for by maximizing for given constraints. This problem, known as MaxEnt, is hard to solve manually since there are unknowns and various constraints. The solution can be approximated by rewriting it to a linear program.
Alternatively, analytic solutions exist for some subsets of this Shanon entropy maximization problem (Zabarankin & Uryasev, 2014). Here, we have that the mean is known (and nothing else), so the number of moments is . Then, the maximum entropy distribution takes the form (Zabarankin & Uryasev, 2014; Eq. 5.1.7)
This function satisfies for any . Now, we only have to find the for which the average is . After some trial and error, you'll find that gives .
plot_distribution([0.0543, 0.0787, 0.114, 0.165, 0.240, 0.348])
This is the least informative distribution which satisfies the constraints. In other words, this is the distribution which can be obtained in the largest number of ways, given the constraints. For another example of maximum entropy distributions, see Chapter 10.1 of the book by McElreath (2020).
Jaynes, E. T. (1968). Prior Probabilities. IEEE Transactions on Systems Science and Cybernetics. 4 (3): 227–241. https://doi.org/10.1109/TSSC.1968.300117
McElreath, R. (2020). Statistical Rethinking: A Bayesian course with examples in R and Stan. CRC press.
Shannon, C. E. (1948). A mathematical theory of communication. The Bell System Technical Journal (Volume: 27 , Issue: 3 , July 1948). https://doi.org/10.1002/j.1538-7305.1948.tb01338.x
Zabarankin M., Uryasev S. (2014) Entropy Maximization. In: Statistical Decision Problems. Springer Optimization and Its Applications, vol 85. Springer, New York, NY. https://doi.org/10.1007/978-1-4614-8471-4_5
julia > p(k, rho) = exp(rho*k) / sum([exp(rho*1), exp(rho*2), exp(rho*3), exp(rho*4), exp(rho*5), exp(rho*6)])
julia > function ps(rho)
values = map(k -> p(k, rho), 1:6)
@show values
sum_values = sum(values)
@show sum_values
average = sum([values[1]*1, values[2]*2, values[3]*3, values[4]*4, values[5]*5, values[6]*6])
@show average
nothing
end
julia> ps(0.4)
values = [0.04906874617024226, 0.0732019674190579, 0.1092045029116822, 0.16291397453728548, 0.24303909080562353, 0.36257171815610867]
sum_values = 1.0
average = 4.565367850857316
julia> ps(0.34)
values = [0.0605247711421319, 0.08503413138555115, 0.11946849800579816, 0.16784697842149762, 0.23581620791666263, 0.3313094131283586]
sum_values = 1.0
average = 4.427323959970084
...
julia> ps(0.3715)
values = [0.05426741458481561, 0.07868275019416264, 0.11408273685935422, 0.165409455277101, 0.2398284670256302, 0.3477291760589363]
sum_values = 1.0
average = 4.501036338141376