Category Archives: Model-1

Anything computer related. Games and generators etc.

BeRKA is back

I am back from my trip to planet Carinthia. Now I have a lot of work to do. There are some new Traveller products I should post links to (at the Zhodani Base Facebook Page), and I must decide which of the very good 16 entries in the 76 Patrons contest that are the best ones. I also have a lot of pictures to post at the berka.se blog.

Planet Carinthia
Planet Carinthia

I made this image using GIMP and the gas giant plugin. I changed the colors of the my image from Carinthia and then added the gas giant as another layer. Then I changed the opacity of the added layer to make it look good.

Benford’s law, or why you shouldn’t use a D10 for generating some random numbers

This applies to all games where you want to generate a random number to describe something. In many cases you cannot just use a D10 since Benford’s law says that the lower numbers will have a higher probability.

Benford's law
Benford’s law – Public domain

This law is usually true when applied to things that grow exponentially. Like the population modifier digit (the P in the PBG-number) in the extended UWP for Traveller. Why is it so? Here is an explanation! A shorter explanation is that to change the first digit from 1 to 2, the population needs to increase 100%. To change the first digit from 8 to 9 the population needs to increase 12%. This means that the population digit will stay longer at lower values and therefore the lower values will be more likely.

Something else that is interesting for Traveller, Benford’s law can also be applied on asteroid sizes, since these has been built up of smaller objects over time.

It can most likely be used for anything that is big and varied enough like the size of buildings, the size of villages or towns, the size of space ships etc…

If you use a D10 to get a first digit for something that should behave according to Benford’s law, you will create a statistical anomaly. Doing it for one, or a few planets doesn’t matter, but if you do it for the P in the PBG-number of a subsector or something larger the result you get will be very unlikely.

So stop using that D10 now! Write a simple program on your calculator or computer that calculates the first digit according to Benford’s law!

For those who still (for some reason) needs to use dice, here is a table with a distribution that is close enough to the Benford distribution using 2D6, like you should do in Traveller.

2D6 First Digit
2 1
3 7
4 5
5 3
6 1
7 2
8 1
9 4
10 6
11 8
12 9

Just for fun, test Benford’s law for a number of datasets. It works!