Our logoSpiele von Doris und FrankGreat German Games with a Hedgehog
Deutsche Version anzeigen!
Our Games About us Online Games Events Other Contact Order Infos
Home  >  Online Games  >  Numfield  >  The Pi Clique

Numfield - the Pi Experiment

This page is based on a simple and elegant idea by link mailDon Reble , who also contributed the WinningMode strategy and the efficent evalutaion class .

The idea is to have an empirical look at the clique phenomen, that is that strategies can profit from each other from cooperating.

He suggest the following "stupid class", which is called Pi for obvious reasons:

class Pi extends Strategy
{
    private int pi[] = {3,1,4,1,5,9,2,6,5,3};
    public int initial_turn() 
    { 
        return pi[0]; 
    }
    public int turn(int last_turns[], int scores[],
                int carryOver, int turn_no)
    {
        return pi[turn_no % pi.length];
    }
}

This little guy plays the same digits in the the same order over and over. In general its best expectation is to remain unrecognized and perform as good as a simple randomized strategy. A smart learning strategy could outlearn Pi very easily and take advantage of its very static behaviour.

But what happens if there are a lot of Pi's in an environment? Obviously a bunch of Pi's easily cooperate with each other, so if there are too many, they might actually force the other stratgies to react upon them:

Unfortunately your browser is not able to display the Numfield simulation applet.

There are learning strategies in the environment which are able to cope that clique of 10 Pi's. Alabama also, but Alabama doesn't perform well in the standard setting. Anyway the Pi test remains a very interesting benchmark for new strategies.

To make that benchmark even more valuable I've made a modified version of Pi, which is even harder to cope. I call that modification BlindPig, it is on the next page.

   (
 

Locations of visitors to this page
LPage Guestbook
http://doris-frank.de/numcliq.html changed 4/16/07, rendered 4/17/07
(c) 1997-2007 by   Doris & Frank    Site  imprint