Next month: August 2003
Of course, it's quite straightforward to "reverse engineer" the main and Extra draw sales figures to within a few pounds because they have set formulae for calculating the prize amounts based on, amongst other things, that draw's sales. Since we know all the other variables in the formulae, it's not rocket science to code up something that will come up with the now-elusive ticket sales figure.
For the main draw, I just opted for a simple "homing in" method. Basically, I used the code that told me how much each tier was wrong by, totalled up that and then added it (complete with sign, it might be too much) to the initial guess and then recursed until all the tiers worked out. However, this will only you to within about a £2 accuracy.
The Extra draw's jackpot is simply the previous draw's rollover amount plus 45% of the ticket sales of the latest draw, so it's expressed as (round the sales value up):
Extra sales = (latest jackpot-previous jackpot rollover)/0.45Again, the accuracy is to within about £2.
Previous month: June 2003