Home » CEEFAX disks » telesoftware9.adl » 11-09-88/F\INFO
11-09-88/F\INFO
This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.
Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.
Tape/disk: | Home » CEEFAX disks » telesoftware9.adl |
Filename: | 11-09-88/F\INFO |
Read OK: | ✔ |
File size: | 220F bytes |
Load address: | 0000 |
Exec address: | FFFFFFFF |
File contents
__________________________________________________________________________ These pools prediction programs have been updated for use with the expanded CEEFAX league table data for the 1988/9 season. Some makes of adapter cannot implement multiple page grabbers, necessary to give a reasonable data access time, due to their design. This cannot be overcome by software, and is a direct result of the type of teletext reception chip used in their design. Such adapters will not be able to use these routines. The routines have been adjusted since their last broadcast to cater for the various page layouts and quantity of sub-pages occasionally implemented by the CEEFAX editors. Other adjustments may be necessary in the future! __________________________________________________________________________ Pools Prediction Programs: ========================== This suite of programs uses CEEFAX data to predict the football results for the current week. There are three different programs: 1. Match 2. Foot 3. Results 1. Match: ========= From about Tuesday onwards, BBC2 CEEFAX transmit the following Saturday's fixture list. The program "Match" will analyse these transmissions and create a data file of match data on disc. This file can then be used by FOOT as match data, to avoid having to type in by hand the teams playing in each match. The program will check to see if the fixtures list is actually being transmitted. If it finds it, the CEEFAX pages required are listed on screen, with each found page being reported. The data file is created automatically as each page is found. Several of the system's page grabbers are used, which gives a considerable time saving over previous versions of this program. As processing is carried out, the match number (directly relating to the pools coupon number) of each match found is briefly displayed on screen. The program will inform you if the fixtures list is not yet available from CEEFAX. If this is so, the program should be run again later in the week. 2. Foot: ======== This is the main prediction program. Before using this, however, some things must be noted. The program uses CEEFAX data to compile information from the league tables about each team playing in the league. This information is then used to predict the outcome of the match. It is important to understand how this process works, as the user must provide his own algorithm using this data! The information is kept in the following arrays: ITEM HOMETEAM AWAYTEAM ==== ========= ========= League points gained: PT(m) PT(n) Total matches played: P(m) P(n) Goals scored for team: F(m) F(n) Goals scored against team: A(m) A(n) Games lost: L(m) L(n) Games won: W(m) W(n) Games drawn: D(m) D(n) A formula must be devised to use as much of this information as is necessary to produce a winning solution. The formula must be of the form: = (Strength of away team) - (strength of home team) i.e. it must calculate a value for the home team, then a value for the away team, then subtract one result from the other. Calculations that produce results closest to zero are considered more likely to be drawn games than those producing high values. So two teams producing a similar number will be more likely to result in a draw than two teams producing very different values. The formula included in the program is very simple, and only compares the two teams league positions. To give some idea of how to enter a suitable formula, some examples of calculating team strength follow: =(PT(m)+(D(m)*3)-W(m))-(PT(n)+(D(n)*3)-W(n)) This uses points gained, drawn games and games won for each team =(P(m)/D(m))-(P(n)/D(n)) calculates the number of matches played, divided by the number of matches drawn for each team =PT(m)-PT(n) calculates the number of points gained for each team =(P(m)/L(m))-(P(n)/W(n)) studies the number of games lost by the home team, and the number of games won by away team (a perfectly "legal" if not very logical formula!) These formulae can be very simple such as: =D(m)-D(n) which compares the number of drawn matches of each team, or more complex, such as: =((L(m)+(P(m)*20))*D(m))-((W(n)+(P(n)*20))*D(n)) which considers matches drawn, lost, won, etc. A winning solution is likely to be even more involved! It should be remembered that, particularly early in the season, several of these values will be equal to zero, and an error will result if your formula includes a 'division by zero'! Your desired formula should replace the one given in line 5000 of the program "Foot", then the new version saved to disc before use. When the program is run, you are asked if the match data is to be read from disc. This is only possible if it has previously been saved to disc using the program "Match" (see above), but will save a lot of time if it can be read from a disc file. You are then asked if the league details are to be read from disc. Again, this may only be done if this data has already been saved to disc from a previous run of the "Foot" program. (The data is automatically saved to disc each time "Foot" is run.) If the league data has been taken from CEEFAX, you will then be offered a chance to see (or print out) a list of the team names and their corresponding numbers. This option is not available if the data is read from disc, as the program then relies on a compressed version of the team names which may not be very much help to you! The team names and numbers will be needed later if you have opted to manually enter the fixtures list. If a printout of this list is required, simply set your printer "on line" before selecting this option. The program proceeds to request the match data in numeric form. If the data is read from disc, the fixtures list will be read in, stopping at the bottom of each screen to allow you to look for any necessary corrections. Press SHIFT to scroll the screen. If this data needs to be entered manually, type in the appropriate team number at the prompt, as taken from the team list offered earlier. Any corrections can be made after all the match data has been entered. The program will then calculate the most likely 18 matches to result in a draw. If you want this selection sent to your printer, ensure that your printer is "on line". Otherwise it will be sent to the screen only. 3. Results: =========== During the execution of "Foot", a data file is created on disc of the matches predicted. "Results" will analyse the actual results as transmitted by CEEFAX, and calculate the maximum pools points that have gained using the given forecast. If you use a pools entry with more (or less) than ten selections, the appropriate line at the beginning of the program must be altered. The program calculates the maximum points possible using a Full Perm plan, but also presents the results in pools points format for normal checking of a coupon. The results are broadcast on BBC1 on a Saturday afternoon/evening, and then are transferred to BBC2 for the early part of the following week. The program detects the day on which it is run, and will select the correct channel and page numbers automatically. (i.e. if run on Saturday, it will select BBC1, pages 331 onwards, but if run on, say, Monday, it will select BBC2, page 341.) A check is carried out to ensure the actual results are obtained, and not the half-time results or other data. A report will be given, and the program terminated if the results are not found. If a match is declared void, or a result decided by the Pools panel, the correct pools points will be found. Such situations will be reported when the results are listed by the program. This program uses several of the system's page grabbers, resulting in a much faster execution time than from previous versions. Whilst each page from CEEFAX is being processed, the screen will indicate briefly which particular pools coupon match number is being studied at the time. (c) Jeremy Brayshaw August 1988 Note: The programs have been written to operate with the BBC Microcomputer System Teletext Adapter (both the Acorn system and the new GIS adapter) and ATS or ATS+ software. They are not guaranteed to function correctly on other makes of adapter, even with ATS. This is because some other teletext adapters use less versatile teletext reception chips, and it is not possible to implement multiple simultaneous page grabbers. This is a restriction of the hardware, and cannot be overcome in software.
00000000 0d 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f |._______________| 00000010 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f |________________| * 00000040 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 0d 0d 54 68 65 |___________..The| 00000050 73 65 20 70 6f 6f 6c 73 20 70 72 65 64 69 63 74 |se pools predict| 00000060 69 6f 6e 20 70 72 6f 67 72 61 6d 73 20 68 61 76 |ion programs hav| 00000070 65 20 62 65 65 6e 20 75 70 64 61 74 65 64 20 66 |e been updated f| 00000080 6f 72 20 75 73 65 20 77 69 74 68 20 74 68 65 0d |or use with the.| 00000090 65 78 70 61 6e 64 65 64 20 43 45 45 46 41 58 20 |expanded CEEFAX | 000000a0 6c 65 61 67 75 65 20 74 61 62 6c 65 20 64 61 74 |league table dat| 000000b0 61 20 66 6f 72 20 74 68 65 20 31 39 38 38 2f 39 |a for the 1988/9| 000000c0 20 73 65 61 73 6f 6e 2e 0d 0d 53 6f 6d 65 20 6d | season...Some m| 000000d0 61 6b 65 73 20 6f 66 20 61 64 61 70 74 65 72 20 |akes of adapter | 000000e0 63 61 6e 6e 6f 74 20 69 6d 70 6c 65 6d 65 6e 74 |cannot implement| 000000f0 20 6d 75 6c 74 69 70 6c 65 20 70 61 67 65 20 67 | multiple page g| 00000100 72 61 62 62 65 72 73 2c 20 6e 65 63 65 73 73 61 |rabbers, necessa| 00000110 72 79 0d 74 6f 20 67 69 76 65 20 61 20 72 65 61 |ry.to give a rea| 00000120 73 6f 6e 61 62 6c 65 20 64 61 74 61 20 61 63 63 |sonable data acc| 00000130 65 73 73 20 74 69 6d 65 2c 20 64 75 65 20 74 6f |ess time, due to| 00000140 20 74 68 65 69 72 20 64 65 73 69 67 6e 2e 20 54 | their design. T| 00000150 68 69 73 20 63 61 6e 6e 6f 74 20 62 65 0d 6f 76 |his cannot be.ov| 00000160 65 72 63 6f 6d 65 20 62 79 20 73 6f 66 74 77 61 |ercome by softwa| 00000170 72 65 2c 20 61 6e 64 20 69 73 20 61 20 64 69 72 |re, and is a dir| 00000180 65 63 74 20 72 65 73 75 6c 74 20 6f 66 20 74 68 |ect result of th| 00000190 65 20 74 79 70 65 20 6f 66 20 74 65 6c 65 74 65 |e type of telete| 000001a0 78 74 0d 72 65 63 65 70 74 69 6f 6e 20 63 68 69 |xt.reception chi| 000001b0 70 20 75 73 65 64 20 69 6e 20 74 68 65 69 72 20 |p used in their | 000001c0 64 65 73 69 67 6e 2e 20 53 75 63 68 20 61 64 61 |design. Such ada| 000001d0 70 74 65 72 73 20 77 69 6c 6c 20 6e 6f 74 20 62 |pters will not b| 000001e0 65 20 61 62 6c 65 20 74 6f 20 75 73 65 0d 74 68 |e able to use.th| 000001f0 65 73 65 20 72 6f 75 74 69 6e 65 73 2e 0d 0d 54 |ese routines...T| 00000200 68 65 20 72 6f 75 74 69 6e 65 73 20 68 61 76 65 |he routines have| 00000210 20 62 65 65 6e 20 61 64 6a 75 73 74 65 64 20 73 | been adjusted s| 00000220 69 6e 63 65 20 74 68 65 69 72 20 6c 61 73 74 20 |ince their last | 00000230 62 72 6f 61 64 63 61 73 74 20 74 6f 20 63 61 74 |broadcast to cat| 00000240 65 72 20 66 6f 72 0d 74 68 65 20 76 61 72 69 6f |er for.the vario| 00000250 75 73 20 70 61 67 65 20 6c 61 79 6f 75 74 73 20 |us page layouts | 00000260 61 6e 64 20 71 75 61 6e 74 69 74 79 20 6f 66 20 |and quantity of | 00000270 73 75 62 2d 70 61 67 65 73 20 6f 63 63 61 73 69 |sub-pages occasi| 00000280 6f 6e 61 6c 6c 79 0d 69 6d 70 6c 65 6d 65 6e 74 |onally.implement| 00000290 65 64 20 62 79 20 74 68 65 20 43 45 45 46 41 58 |ed by the CEEFAX| 000002a0 20 65 64 69 74 6f 72 73 2e 20 4f 74 68 65 72 20 | editors. Other | 000002b0 61 64 6a 75 73 74 6d 65 6e 74 73 20 6d 61 79 20 |adjustments may | 000002c0 62 65 20 6e 65 63 65 73 73 61 72 79 20 69 6e 0d |be necessary in.| 000002d0 74 68 65 20 66 75 74 75 72 65 21 0d 5f 5f 5f 5f |the future!.____| 000002e0 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f |________________| * 00000320 5f 5f 5f 5f 5f 5f 0d 0d 50 6f 6f 6c 73 20 50 72 |______..Pools Pr| 00000330 65 64 69 63 74 69 6f 6e 20 50 72 6f 67 72 61 6d |ediction Program| 00000340 73 3a 0d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d |s:.=============| 00000350 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 0d 0d 54 |=============..T| 00000360 68 69 73 20 73 75 69 74 65 20 6f 66 20 70 72 6f |his suite of pro| 00000370 67 72 61 6d 73 20 75 73 65 73 20 43 45 45 46 41 |grams uses CEEFA| 00000380 58 20 64 61 74 61 20 74 6f 20 70 72 65 64 69 63 |X data to predic| 00000390 74 20 74 68 65 20 66 6f 6f 74 62 61 6c 6c 20 72 |t the football r| 000003a0 65 73 75 6c 74 73 0d 66 6f 72 20 74 68 65 20 63 |esults.for the c| 000003b0 75 72 72 65 6e 74 20 77 65 65 6b 2e 20 54 68 65 |urrent week. The| 000003c0 72 65 20 61 72 65 20 74 68 72 65 65 20 64 69 66 |re are three dif| 000003d0 66 65 72 65 6e 74 20 70 72 6f 67 72 61 6d 73 3a |ferent programs:| 000003e0 0d 0d 31 2e 20 4d 61 74 63 68 0d 32 2e 20 46 6f |..1. Match.2. Fo| 000003f0 6f 74 0d 33 2e 20 52 65 73 75 6c 74 73 0d 0d 0d |ot.3. Results...| 00000400 31 2e 20 4d 61 74 63 68 3a 0d 3d 3d 3d 3d 3d 3d |1. Match:.======| 00000410 3d 3d 3d 0d 0d 46 72 6f 6d 20 61 62 6f 75 74 20 |===..From about | 00000420 54 75 65 73 64 61 79 20 6f 6e 77 61 72 64 73 2c |Tuesday onwards,| 00000430 20 42 42 43 32 20 43 45 45 46 41 58 20 74 72 61 | BBC2 CEEFAX tra| 00000440 6e 73 6d 69 74 20 74 68 65 20 66 6f 6c 6c 6f 77 |nsmit the follow| 00000450 69 6e 67 20 53 61 74 75 72 64 61 79 27 73 0d 66 |ing Saturday's.f| 00000460 69 78 74 75 72 65 20 6c 69 73 74 2e 20 54 68 65 |ixture list. The| 00000470 20 70 72 6f 67 72 61 6d 20 22 4d 61 74 63 68 22 | program "Match"| 00000480 20 77 69 6c 6c 20 61 6e 61 6c 79 73 65 20 74 68 | will analyse th| 00000490 65 73 65 20 74 72 61 6e 73 6d 69 73 73 69 6f 6e |ese transmission| 000004a0 73 20 61 6e 64 0d 63 72 65 61 74 65 20 61 20 64 |s and.create a d| 000004b0 61 74 61 20 66 69 6c 65 20 6f 66 20 6d 61 74 63 |ata file of matc| 000004c0 68 20 64 61 74 61 20 6f 6e 20 64 69 73 63 2e 20 |h data on disc. | 000004d0 54 68 69 73 20 66 69 6c 65 20 63 61 6e 20 74 68 |This file can th| 000004e0 65 6e 20 62 65 20 75 73 65 64 20 62 79 0d 46 4f |en be used by.FO| 000004f0 4f 54 20 61 73 20 6d 61 74 63 68 20 64 61 74 61 |OT as match data| 00000500 2c 20 74 6f 20 61 76 6f 69 64 20 68 61 76 69 6e |, to avoid havin| 00000510 67 20 74 6f 20 74 79 70 65 20 69 6e 20 62 79 20 |g to type in by | 00000520 68 61 6e 64 20 74 68 65 20 74 65 61 6d 73 20 70 |hand the teams p| 00000530 6c 61 79 69 6e 67 0d 69 6e 20 65 61 63 68 20 6d |laying.in each m| 00000540 61 74 63 68 2e 0d 0d 54 68 65 20 70 72 6f 67 72 |atch...The progr| 00000550 61 6d 20 77 69 6c 6c 20 63 68 65 63 6b 20 74 6f |am will check to| 00000560 20 73 65 65 20 69 66 20 74 68 65 20 66 69 78 74 | see if the fixt| 00000570 75 72 65 73 20 6c 69 73 74 20 69 73 20 61 63 74 |ures list is act| 00000580 75 61 6c 6c 79 20 62 65 69 6e 67 0d 74 72 61 6e |ually being.tran| 00000590 73 6d 69 74 74 65 64 2e 20 49 66 20 69 74 20 66 |smitted. If it f| 000005a0 69 6e 64 73 20 69 74 2c 20 74 68 65 20 43 45 45 |inds it, the CEE| 000005b0 46 41 58 20 70 61 67 65 73 20 72 65 71 75 69 72 |FAX pages requir| 000005c0 65 64 20 61 72 65 20 6c 69 73 74 65 64 20 6f 6e |ed are listed on| 000005d0 0d 73 63 72 65 65 6e 2c 20 77 69 74 68 20 65 61 |.screen, with ea| 000005e0 63 68 20 66 6f 75 6e 64 20 70 61 67 65 20 62 65 |ch found page be| 000005f0 69 6e 67 20 72 65 70 6f 72 74 65 64 2e 0d 0d 54 |ing reported...T| 00000600 68 65 20 64 61 74 61 20 66 69 6c 65 20 69 73 20 |he data file is | 00000610 63 72 65 61 74 65 64 20 61 75 74 6f 6d 61 74 69 |created automati| 00000620 63 61 6c 6c 79 20 61 73 20 65 61 63 68 20 70 61 |cally as each pa| 00000630 67 65 20 69 73 20 66 6f 75 6e 64 2e 20 53 65 76 |ge is found. Sev| 00000640 65 72 61 6c 20 6f 66 0d 74 68 65 20 73 79 73 74 |eral of.the syst| 00000650 65 6d 27 73 20 70 61 67 65 20 67 72 61 62 62 65 |em's page grabbe| 00000660 72 73 20 61 72 65 20 75 73 65 64 2c 20 77 68 69 |rs are used, whi| 00000670 63 68 20 67 69 76 65 73 20 61 20 63 6f 6e 73 69 |ch gives a consi| 00000680 64 65 72 61 62 6c 65 20 74 69 6d 65 0d 73 61 76 |derable time.sav| 00000690 69 6e 67 20 6f 76 65 72 20 70 72 65 76 69 6f 75 |ing over previou| 000006a0 73 20 76 65 72 73 69 6f 6e 73 20 6f 66 20 74 68 |s versions of th| 000006b0 69 73 20 70 72 6f 67 72 61 6d 2e 20 41 73 20 70 |is program. As p| 000006c0 72 6f 63 65 73 73 69 6e 67 20 69 73 20 63 61 72 |rocessing is car| 000006d0 72 69 65 64 0d 6f 75 74 2c 20 74 68 65 20 6d 61 |ried.out, the ma| 000006e0 74 63 68 20 6e 75 6d 62 65 72 20 28 64 69 72 65 |tch number (dire| 000006f0 63 74 6c 79 20 72 65 6c 61 74 69 6e 67 20 74 6f |ctly relating to| 00000700 20 74 68 65 20 70 6f 6f 6c 73 20 63 6f 75 70 6f | the pools coupo| 00000710 6e 20 6e 75 6d 62 65 72 29 20 6f 66 0d 65 61 63 |n number) of.eac| 00000720 68 20 6d 61 74 63 68 20 66 6f 75 6e 64 20 69 73 |h match found is| 00000730 20 62 72 69 65 66 6c 79 20 64 69 73 70 6c 61 79 | briefly display| 00000740 65 64 20 6f 6e 20 73 63 72 65 65 6e 2e 0d 0d 54 |ed on screen...T| 00000750 68 65 20 70 72 6f 67 72 61 6d 20 77 69 6c 6c 20 |he program will | 00000760 69 6e 66 6f 72 6d 20 79 6f 75 20 69 66 20 74 68 |inform you if th| 00000770 65 20 66 69 78 74 75 72 65 73 20 6c 69 73 74 20 |e fixtures list | 00000780 69 73 20 6e 6f 74 20 79 65 74 20 61 76 61 69 6c |is not yet avail| 00000790 61 62 6c 65 20 66 72 6f 6d 0d 43 45 45 46 41 58 |able from.CEEFAX| 000007a0 2e 20 49 66 20 74 68 69 73 20 69 73 20 73 6f 2c |. If this is so,| 000007b0 20 74 68 65 20 70 72 6f 67 72 61 6d 20 73 68 6f | the program sho| 000007c0 75 6c 64 20 62 65 20 72 75 6e 20 61 67 61 69 6e |uld be run again| 000007d0 20 6c 61 74 65 72 20 69 6e 20 74 68 65 20 77 65 | later in the we| 000007e0 65 6b 2e 0d 0d 32 2e 20 46 6f 6f 74 3a 0d 3d 3d |ek...2. Foot:.==| 000007f0 3d 3d 3d 3d 3d 3d 0d 0d 54 68 69 73 20 69 73 20 |======..This is | 00000800 74 68 65 20 6d 61 69 6e 20 70 72 65 64 69 63 74 |the main predict| 00000810 69 6f 6e 20 70 72 6f 67 72 61 6d 2e 20 42 65 66 |ion program. Bef| 00000820 6f 72 65 20 75 73 69 6e 67 20 74 68 69 73 2c 20 |ore using this, | 00000830 68 6f 77 65 76 65 72 2c 20 73 6f 6d 65 0d 74 68 |however, some.th| 00000840 69 6e 67 73 20 6d 75 73 74 20 62 65 20 6e 6f 74 |ings must be not| 00000850 65 64 2e 20 54 68 65 20 70 72 6f 67 72 61 6d 20 |ed. The program | 00000860 75 73 65 73 20 43 45 45 46 41 58 20 64 61 74 61 |uses CEEFAX data| 00000870 20 74 6f 20 63 6f 6d 70 69 6c 65 20 69 6e 66 6f | to compile info| 00000880 72 6d 61 74 69 6f 6e 0d 66 72 6f 6d 20 74 68 65 |rmation.from the| 00000890 20 6c 65 61 67 75 65 20 74 61 62 6c 65 73 20 61 | league tables a| 000008a0 62 6f 75 74 20 65 61 63 68 20 74 65 61 6d 20 70 |bout each team p| 000008b0 6c 61 79 69 6e 67 20 69 6e 20 74 68 65 20 6c 65 |laying in the le| 000008c0 61 67 75 65 2e 20 54 68 69 73 0d 69 6e 66 6f 72 |ague. This.infor| 000008d0 6d 61 74 69 6f 6e 20 69 73 20 74 68 65 6e 20 75 |mation is then u| 000008e0 73 65 64 20 74 6f 20 70 72 65 64 69 63 74 20 74 |sed to predict t| 000008f0 68 65 20 6f 75 74 63 6f 6d 65 20 6f 66 20 74 68 |he outcome of th| 00000900 65 20 6d 61 74 63 68 2e 20 49 74 20 69 73 0d 69 |e match. It is.i| 00000910 6d 70 6f 72 74 61 6e 74 20 74 6f 20 75 6e 64 65 |mportant to unde| 00000920 72 73 74 61 6e 64 20 68 6f 77 20 74 68 69 73 20 |rstand how this | 00000930 70 72 6f 63 65 73 73 20 77 6f 72 6b 73 2c 20 61 |process works, a| 00000940 73 20 74 68 65 20 75 73 65 72 20 6d 75 73 74 20 |s the user must | 00000950 70 72 6f 76 69 64 65 0d 68 69 73 20 6f 77 6e 20 |provide.his own | 00000960 61 6c 67 6f 72 69 74 68 6d 20 75 73 69 6e 67 20 |algorithm using | 00000970 74 68 69 73 20 64 61 74 61 21 20 54 68 65 20 69 |this data! The i| 00000980 6e 66 6f 72 6d 61 74 69 6f 6e 20 69 73 20 6b 65 |nformation is ke| 00000990 70 74 20 69 6e 20 74 68 65 0d 66 6f 6c 6c 6f 77 |pt in the.follow| 000009a0 69 6e 67 20 61 72 72 61 79 73 3a 0d 0d 49 54 45 |ing arrays:..ITE| 000009b0 4d 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 |M | 000009c0 20 20 20 20 20 20 20 20 20 48 4f 4d 45 1a 54 45 | HOME.TE| 000009d0 41 4d 20 20 20 20 20 20 20 41 57 41 59 1a 54 45 |AM AWAY.TE| 000009e0 41 4d 0d 3d 3d 3d 3d 20 20 20 20 20 20 20 20 20 |AM.==== | 000009f0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 3d | =| 00000a00 3d 3d 3d 3d 3d 3d 3d 3d 20 20 20 20 20 20 20 3d |======== =| 00000a10 3d 3d 3d 3d 3d 3d 3d 3d 0d 4c 65 61 67 75 65 20 |========.League | 00000a20 70 6f 69 6e 74 73 20 67 61 69 6e 65 64 3a 20 20 |points gained: | 00000a30 20 20 20 20 20 20 20 50 54 28 6d 29 20 20 20 20 | PT(m) | 00000a40 20 20 20 20 20 20 20 50 54 28 6e 29 0d 54 6f 74 | PT(n).Tot| 00000a50 61 6c 20 6d 61 74 63 68 65 73 20 70 6c 61 79 65 |al matches playe| 00000a60 64 3a 20 20 20 20 20 20 20 20 20 50 28 6d 29 20 |d: P(m) | 00000a70 20 20 20 20 20 20 20 20 20 20 20 50 28 6e 29 0d | P(n).| 00000a80 47 6f 61 6c 73 20 73 63 6f 72 65 64 20 66 6f 72 |Goals scored for| 00000a90 20 74 65 61 6d 3a 20 20 20 20 20 20 20 20 46 28 | team: F(| 00000aa0 6d 29 20 20 20 20 20 20 20 20 20 20 20 20 46 28 |m) F(| 00000ab0 6e 29 0d 47 6f 61 6c 73 20 73 63 6f 72 65 64 20 |n).Goals scored | 00000ac0 61 67 61 69 6e 73 74 20 74 65 61 6d 3a 20 20 20 |against team: | 00000ad0 20 41 28 6d 29 20 20 20 20 20 20 20 20 20 20 20 | A(m) | 00000ae0 20 41 28 6e 29 0d 47 61 6d 65 73 20 6c 6f 73 74 | A(n).Games lost| 00000af0 3a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 |: | 00000b00 20 20 20 20 4c 28 6d 29 20 20 20 20 20 20 20 20 | L(m) | 00000b10 20 20 20 20 4c 28 6e 29 0d 47 61 6d 65 73 20 77 | L(n).Games w| 00000b20 6f 6e 3a 20 20 20 20 20 20 20 20 20 20 20 20 20 |on: | 00000b30 20 20 20 20 20 20 20 57 28 6d 29 20 20 20 20 20 | W(m) | 00000b40 20 20 20 20 20 20 20 57 28 6e 29 0d 47 61 6d 65 | W(n).Game| 00000b50 73 20 64 72 61 77 6e 3a 20 20 20 20 20 20 20 20 |s drawn: | 00000b60 20 20 20 20 20 20 20 20 20 20 44 28 6d 29 20 20 | D(m) | 00000b70 20 20 20 20 20 20 20 20 20 20 44 28 6e 29 0d 0d | D(n)..| 00000b80 41 20 66 6f 72 6d 75 6c 61 20 6d 75 73 74 20 62 |A formula must b| 00000b90 65 20 64 65 76 69 73 65 64 20 74 6f 20 75 73 65 |e devised to use| 00000ba0 20 61 73 20 6d 75 63 68 20 6f 66 20 74 68 69 73 | as much of this| 00000bb0 20 69 6e 66 6f 72 6d 61 74 69 6f 6e 20 61 73 20 | information as | 00000bc0 69 73 0d 6e 65 63 65 73 73 61 72 79 20 74 6f 20 |is.necessary to | 00000bd0 70 72 6f 64 75 63 65 20 61 20 77 69 6e 6e 69 6e |produce a winnin| 00000be0 67 20 73 6f 6c 75 74 69 6f 6e 2e 20 54 68 65 20 |g solution. The | 00000bf0 66 6f 72 6d 75 6c 61 20 6d 75 73 74 20 62 65 20 |formula must be | 00000c00 6f 66 20 74 68 65 20 66 6f 72 6d 3a 0d 0d 20 3d |of the form:.. =| 00000c10 20 28 53 74 72 65 6e 67 74 68 20 6f 66 20 61 77 | (Strength of aw| 00000c20 61 79 20 74 65 61 6d 29 20 2d 20 28 73 74 72 65 |ay team) - (stre| 00000c30 6e 67 74 68 20 6f 66 20 68 6f 6d 65 20 74 65 61 |ngth of home tea| 00000c40 6d 29 0d 0d 69 2e 65 2e 20 69 74 20 6d 75 73 74 |m)..i.e. it must| 00000c50 20 63 61 6c 63 75 6c 61 74 65 20 61 20 76 61 6c | calculate a val| 00000c60 75 65 20 66 6f 72 20 74 68 65 20 68 6f 6d 65 20 |ue for the home | 00000c70 74 65 61 6d 2c 20 74 68 65 6e 20 61 20 76 61 6c |team, then a val| 00000c80 75 65 20 66 6f 72 20 74 68 65 0d 61 77 61 79 20 |ue for the.away | 00000c90 74 65 61 6d 2c 20 74 68 65 6e 20 73 75 62 74 72 |team, then subtr| 00000ca0 61 63 74 20 6f 6e 65 20 72 65 73 75 6c 74 20 66 |act one result f| 00000cb0 72 6f 6d 20 74 68 65 20 6f 74 68 65 72 2e 20 43 |rom the other. C| 00000cc0 61 6c 63 75 6c 61 74 69 6f 6e 73 20 74 68 61 74 |alculations that| 00000cd0 0d 70 72 6f 64 75 63 65 20 72 65 73 75 6c 74 73 |.produce results| 00000ce0 20 63 6c 6f 73 65 73 74 20 74 6f 20 7a 65 72 6f | closest to zero| 00000cf0 20 61 72 65 20 63 6f 6e 73 69 64 65 72 65 64 20 | are considered | 00000d00 6d 6f 72 65 20 6c 69 6b 65 6c 79 20 74 6f 20 62 |more likely to b| 00000d10 65 20 64 72 61 77 6e 0d 67 61 6d 65 73 20 74 68 |e drawn.games th| 00000d20 61 6e 20 74 68 6f 73 65 20 70 72 6f 64 75 63 69 |an those produci| 00000d30 6e 67 20 68 69 67 68 20 76 61 6c 75 65 73 2e 20 |ng high values. | 00000d40 53 6f 20 74 77 6f 20 74 65 61 6d 73 20 70 72 6f |So two teams pro| 00000d50 64 75 63 69 6e 67 20 61 20 73 69 6d 69 6c 61 72 |ducing a similar| 00000d60 0d 6e 75 6d 62 65 72 20 77 69 6c 6c 20 62 65 20 |.number will be | 00000d70 6d 6f 72 65 20 6c 69 6b 65 6c 79 20 74 6f 20 72 |more likely to r| 00000d80 65 73 75 6c 74 20 69 6e 20 61 20 64 72 61 77 20 |esult in a draw | 00000d90 74 68 61 6e 20 74 77 6f 20 74 65 61 6d 73 20 70 |than two teams p| 00000da0 72 6f 64 75 63 69 6e 67 0d 76 65 72 79 20 64 69 |roducing.very di| 00000db0 66 66 65 72 65 6e 74 20 76 61 6c 75 65 73 2e 20 |fferent values. | 00000dc0 54 68 65 20 66 6f 72 6d 75 6c 61 20 69 6e 63 6c |The formula incl| 00000dd0 75 64 65 64 20 69 6e 20 74 68 65 20 70 72 6f 67 |uded in the prog| 00000de0 72 61 6d 20 69 73 20 76 65 72 79 20 73 69 6d 70 |ram is very simp| 00000df0 6c 65 2c 0d 61 6e 64 20 6f 6e 6c 79 20 63 6f 6d |le,.and only com| 00000e00 70 61 72 65 73 20 74 68 65 20 74 77 6f 20 74 65 |pares the two te| 00000e10 61 6d 73 20 6c 65 61 67 75 65 20 70 6f 73 69 74 |ams league posit| 00000e20 69 6f 6e 73 2e 20 54 6f 20 67 69 76 65 20 73 6f |ions. To give so| 00000e30 6d 65 20 69 64 65 61 20 6f 66 20 68 6f 77 0d 74 |me idea of how.t| 00000e40 6f 20 65 6e 74 65 72 20 61 20 73 75 69 74 61 62 |o enter a suitab| 00000e50 6c 65 20 66 6f 72 6d 75 6c 61 2c 20 73 6f 6d 65 |le formula, some| 00000e60 20 65 78 61 6d 70 6c 65 73 20 6f 66 20 63 61 6c | examples of cal| 00000e70 63 75 6c 61 74 69 6e 67 20 74 65 61 6d 20 73 74 |culating team st| 00000e80 72 65 6e 67 74 68 0d 66 6f 6c 6c 6f 77 3a 0d 0d |rength.follow:..| 00000e90 20 3d 28 50 54 28 6d 29 2b 28 44 28 6d 29 2a 33 | =(PT(m)+(D(m)*3| 00000ea0 29 2d 57 28 6d 29 29 2d 28 50 54 28 6e 29 2b 28 |)-W(m))-(PT(n)+(| 00000eb0 44 28 6e 29 2a 33 29 2d 57 28 6e 29 29 0d 0d 54 |D(n)*3)-W(n))..T| 00000ec0 68 69 73 20 75 73 65 73 20 70 6f 69 6e 74 73 20 |his uses points | 00000ed0 67 61 69 6e 65 64 2c 20 64 72 61 77 6e 20 67 61 |gained, drawn ga| 00000ee0 6d 65 73 20 61 6e 64 20 67 61 6d 65 73 20 77 6f |mes and games wo| 00000ef0 6e 20 66 6f 72 20 65 61 63 68 20 74 65 61 6d 0d |n for each team.| 00000f00 0d 20 3d 28 50 28 6d 29 2f 44 28 6d 29 29 2d 28 |. =(P(m)/D(m))-(| 00000f10 50 28 6e 29 2f 44 28 6e 29 29 0d 0d 63 61 6c 63 |P(n)/D(n))..calc| 00000f20 75 6c 61 74 65 73 20 74 68 65 20 6e 75 6d 62 65 |ulates the numbe| 00000f30 72 20 6f 66 20 6d 61 74 63 68 65 73 20 70 6c 61 |r of matches pla| 00000f40 79 65 64 2c 20 64 69 76 69 64 65 64 20 62 79 20 |yed, divided by | 00000f50 74 68 65 20 6e 75 6d 62 65 72 20 6f 66 20 6d 61 |the number of ma| 00000f60 74 63 68 65 73 0d 64 72 61 77 6e 20 66 6f 72 20 |tches.drawn for | 00000f70 65 61 63 68 20 74 65 61 6d 0d 0d 20 3d 50 54 28 |each team.. =PT(| 00000f80 6d 29 2d 50 54 28 6e 29 0d 0d 63 61 6c 63 75 6c |m)-PT(n)..calcul| 00000f90 61 74 65 73 20 74 68 65 20 6e 75 6d 62 65 72 20 |ates the number | 00000fa0 6f 66 20 70 6f 69 6e 74 73 20 67 61 69 6e 65 64 |of points gained| 00000fb0 20 66 6f 72 20 65 61 63 68 20 74 65 61 6d 0d 0d | for each team..| 00000fc0 20 3d 28 50 28 6d 29 2f 4c 28 6d 29 29 2d 28 50 | =(P(m)/L(m))-(P| 00000fd0 28 6e 29 2f 57 28 6e 29 29 0d 0d 73 74 75 64 69 |(n)/W(n))..studi| 00000fe0 65 73 20 74 68 65 20 6e 75 6d 62 65 72 20 6f 66 |es the number of| 00000ff0 20 67 61 6d 65 73 20 6c 6f 73 74 20 62 79 20 74 | games lost by t| 00001000 68 65 20 68 6f 6d 65 20 74 65 61 6d 2c 20 61 6e |he home team, an| 00001010 64 20 74 68 65 20 6e 75 6d 62 65 72 20 6f 66 20 |d the number of | 00001020 67 61 6d 65 73 0d 77 6f 6e 20 62 79 20 61 77 61 |games.won by awa| 00001030 79 20 74 65 61 6d 20 28 61 20 70 65 72 66 65 63 |y team (a perfec| 00001040 74 6c 79 20 22 6c 65 67 61 6c 22 20 69 66 20 6e |tly "legal" if n| 00001050 6f 74 20 76 65 72 79 20 6c 6f 67 69 63 61 6c 20 |ot very logical | 00001060 66 6f 72 6d 75 6c 61 21 29 0d 0d 54 68 65 73 65 |formula!)..These| 00001070 20 66 6f 72 6d 75 6c 61 65 20 63 61 6e 20 62 65 | formulae can be| 00001080 20 76 65 72 79 20 73 69 6d 70 6c 65 20 73 75 63 | very simple suc| 00001090 68 20 61 73 3a 0d 0d 20 3d 44 28 6d 29 2d 44 28 |h as:.. =D(m)-D(| 000010a0 6e 29 0d 0d 77 68 69 63 68 20 63 6f 6d 70 61 72 |n)..which compar| 000010b0 65 73 20 74 68 65 20 6e 75 6d 62 65 72 20 6f 66 |es the number of| 000010c0 20 64 72 61 77 6e 20 6d 61 74 63 68 65 73 20 6f | drawn matches o| 000010d0 66 20 65 61 63 68 20 74 65 61 6d 2c 20 6f 72 20 |f each team, or | 000010e0 6d 6f 72 65 20 63 6f 6d 70 6c 65 78 2c 0d 73 75 |more complex,.su| 000010f0 63 68 20 61 73 3a 0d 0d 20 3d 28 28 4c 28 6d 29 |ch as:.. =((L(m)| 00001100 2b 28 50 28 6d 29 2a 32 30 29 29 2a 44 28 6d 29 |+(P(m)*20))*D(m)| 00001110 29 2d 28 28 57 28 6e 29 2b 28 50 28 6e 29 2a 32 |)-((W(n)+(P(n)*2| 00001120 30 29 29 2a 44 28 6e 29 29 0d 0d 77 68 69 63 68 |0))*D(n))..which| 00001130 20 63 6f 6e 73 69 64 65 72 73 20 6d 61 74 63 68 | considers match| 00001140 65 73 20 64 72 61 77 6e 2c 20 6c 6f 73 74 2c 20 |es drawn, lost, | 00001150 77 6f 6e 2c 20 65 74 63 2e 20 41 20 77 69 6e 6e |won, etc. A winn| 00001160 69 6e 67 20 73 6f 6c 75 74 69 6f 6e 20 69 73 0d |ing solution is.| 00001170 6c 69 6b 65 6c 79 20 74 6f 20 62 65 20 65 76 65 |likely to be eve| 00001180 6e 20 6d 6f 72 65 20 69 6e 76 6f 6c 76 65 64 21 |n more involved!| 00001190 20 49 74 20 73 68 6f 75 6c 64 20 62 65 20 72 65 | It should be re| 000011a0 6d 65 6d 62 65 72 65 64 20 74 68 61 74 2c 0d 70 |membered that,.p| 000011b0 61 72 74 69 63 75 6c 61 72 6c 79 20 65 61 72 6c |articularly earl| 000011c0 79 20 69 6e 20 74 68 65 20 73 65 61 73 6f 6e 2c |y in the season,| 000011d0 20 73 65 76 65 72 61 6c 20 6f 66 20 74 68 65 73 | several of thes| 000011e0 65 20 76 61 6c 75 65 73 20 77 69 6c 6c 20 62 65 |e values will be| 000011f0 20 65 71 75 61 6c 20 74 6f 0d 7a 65 72 6f 2c 20 | equal to.zero, | 00001200 61 6e 64 20 61 6e 20 65 72 72 6f 72 20 77 69 6c |and an error wil| 00001210 6c 20 72 65 73 75 6c 74 20 69 66 20 79 6f 75 72 |l result if your| 00001220 20 66 6f 72 6d 75 6c 61 20 69 6e 63 6c 75 64 65 | formula include| 00001230 73 20 61 20 27 64 69 76 69 73 69 6f 6e 0d 62 79 |s a 'division.by| 00001240 20 7a 65 72 6f 27 21 0d 0d 59 6f 75 72 20 64 65 | zero'!..Your de| 00001250 73 69 72 65 64 20 66 6f 72 6d 75 6c 61 20 73 68 |sired formula sh| 00001260 6f 75 6c 64 20 72 65 70 6c 61 63 65 20 74 68 65 |ould replace the| 00001270 20 6f 6e 65 20 67 69 76 65 6e 20 69 6e 20 6c 69 | one given in li| 00001280 6e 65 20 35 30 30 30 20 6f 66 20 74 68 65 0d 70 |ne 5000 of the.p| 00001290 72 6f 67 72 61 6d 20 22 46 6f 6f 74 22 2c 20 74 |rogram "Foot", t| 000012a0 68 65 6e 20 74 68 65 20 6e 65 77 20 76 65 72 73 |hen the new vers| 000012b0 69 6f 6e 20 73 61 76 65 64 20 74 6f 20 64 69 73 |ion saved to dis| 000012c0 63 20 62 65 66 6f 72 65 20 75 73 65 2e 0d 0d 57 |c before use...W| 000012d0 68 65 6e 20 74 68 65 20 70 72 6f 67 72 61 6d 20 |hen the program | 000012e0 69 73 20 72 75 6e 2c 20 79 6f 75 20 61 72 65 20 |is run, you are | 000012f0 61 73 6b 65 64 20 69 66 20 74 68 65 20 6d 61 74 |asked if the mat| 00001300 63 68 20 64 61 74 61 20 69 73 20 74 6f 20 62 65 |ch data is to be| 00001310 20 72 65 61 64 0d 66 72 6f 6d 20 64 69 73 63 2e | read.from disc.| 00001320 20 54 68 69 73 20 69 73 20 6f 6e 6c 79 20 70 6f | This is only po| 00001330 73 73 69 62 6c 65 20 69 66 20 69 74 20 68 61 73 |ssible if it has| 00001340 20 70 72 65 76 69 6f 75 73 6c 79 20 62 65 65 6e | previously been| 00001350 20 73 61 76 65 64 20 74 6f 20 64 69 73 63 0d 75 | saved to disc.u| 00001360 73 69 6e 67 20 74 68 65 20 70 72 6f 67 72 61 6d |sing the program| 00001370 20 22 4d 61 74 63 68 22 20 28 73 65 65 20 61 62 | "Match" (see ab| 00001380 6f 76 65 29 2c 20 62 75 74 20 77 69 6c 6c 20 73 |ove), but will s| 00001390 61 76 65 20 61 20 6c 6f 74 20 6f 66 20 74 69 6d |ave a lot of tim| 000013a0 65 20 69 66 20 69 74 20 0d 63 61 6e 20 62 65 20 |e if it .can be | 000013b0 72 65 61 64 20 66 72 6f 6d 20 61 20 64 69 73 63 |read from a disc| 000013c0 20 66 69 6c 65 2e 0d 0d 59 6f 75 20 61 72 65 20 | file...You are | 000013d0 74 68 65 6e 20 61 73 6b 65 64 20 69 66 20 74 68 |then asked if th| 000013e0 65 20 6c 65 61 67 75 65 20 64 65 74 61 69 6c 73 |e league details| 000013f0 20 61 72 65 20 74 6f 20 62 65 20 72 65 61 64 20 | are to be read | 00001400 66 72 6f 6d 20 64 69 73 63 2e 20 41 67 61 69 6e |from disc. Again| 00001410 2c 0d 74 68 69 73 20 6d 61 79 20 6f 6e 6c 79 20 |,.this may only | 00001420 62 65 20 64 6f 6e 65 20 69 66 20 74 68 69 73 20 |be done if this | 00001430 64 61 74 61 20 68 61 73 20 61 6c 72 65 61 64 79 |data has already| 00001440 20 62 65 65 6e 20 73 61 76 65 64 20 74 6f 20 64 | been saved to d| 00001450 69 73 63 20 66 72 6f 6d 20 61 0d 70 72 65 76 69 |isc from a.previ| 00001460 6f 75 73 20 72 75 6e 20 6f 66 20 74 68 65 20 22 |ous run of the "| 00001470 46 6f 6f 74 22 20 70 72 6f 67 72 61 6d 2e 20 28 |Foot" program. (| 00001480 54 68 65 20 64 61 74 61 20 69 73 20 61 75 74 6f |The data is auto| 00001490 6d 61 74 69 63 61 6c 6c 79 20 73 61 76 65 64 20 |matically saved | 000014a0 74 6f 0d 64 69 73 63 20 65 61 63 68 20 74 69 6d |to.disc each tim| 000014b0 65 20 22 46 6f 6f 74 22 20 69 73 20 72 75 6e 2e |e "Foot" is run.| 000014c0 29 0d 0d 49 66 20 74 68 65 20 6c 65 61 67 75 65 |)..If the league| 000014d0 20 64 61 74 61 20 68 61 73 20 62 65 65 6e 20 74 | data has been t| 000014e0 61 6b 65 6e 20 66 72 6f 6d 20 43 45 45 46 41 58 |aken from CEEFAX| 000014f0 2c 20 79 6f 75 20 77 69 6c 6c 20 74 68 65 6e 20 |, you will then | 00001500 62 65 20 6f 66 66 65 72 65 64 20 61 0d 63 68 61 |be offered a.cha| 00001510 6e 63 65 20 74 6f 20 73 65 65 20 28 6f 72 20 70 |nce to see (or p| 00001520 72 69 6e 74 20 6f 75 74 29 20 61 20 6c 69 73 74 |rint out) a list| 00001530 20 6f 66 20 74 68 65 20 74 65 61 6d 20 6e 61 6d | of the team nam| 00001540 65 73 20 61 6e 64 20 74 68 65 69 72 0d 63 6f 72 |es and their.cor| 00001550 72 65 73 70 6f 6e 64 69 6e 67 20 6e 75 6d 62 65 |responding numbe| 00001560 72 73 2e 20 54 68 69 73 20 6f 70 74 69 6f 6e 20 |rs. This option | 00001570 69 73 20 6e 6f 74 20 61 76 61 69 6c 61 62 6c 65 |is not available| 00001580 20 69 66 20 74 68 65 20 64 61 74 61 20 69 73 20 | if the data is | 00001590 72 65 61 64 0d 66 72 6f 6d 20 64 69 73 63 2c 20 |read.from disc, | 000015a0 61 73 20 74 68 65 20 70 72 6f 67 72 61 6d 20 74 |as the program t| 000015b0 68 65 6e 20 72 65 6c 69 65 73 20 6f 6e 20 61 20 |hen relies on a | 000015c0 63 6f 6d 70 72 65 73 73 65 64 20 76 65 72 73 69 |compressed versi| 000015d0 6f 6e 20 6f 66 20 74 68 65 20 74 65 61 6d 0d 6e |on of the team.n| 000015e0 61 6d 65 73 20 77 68 69 63 68 20 6d 61 79 20 6e |ames which may n| 000015f0 6f 74 20 62 65 20 76 65 72 79 20 6d 75 63 68 20 |ot be very much | 00001600 68 65 6c 70 20 74 6f 20 79 6f 75 21 20 54 68 65 |help to you! The| 00001610 20 74 65 61 6d 20 6e 61 6d 65 73 20 61 6e 64 20 | team names and | 00001620 6e 75 6d 62 65 72 73 0d 77 69 6c 6c 20 62 65 20 |numbers.will be | 00001630 6e 65 65 64 65 64 20 6c 61 74 65 72 20 69 66 20 |needed later if | 00001640 79 6f 75 20 68 61 76 65 20 6f 70 74 65 64 20 74 |you have opted t| 00001650 6f 20 6d 61 6e 75 61 6c 6c 79 20 65 6e 74 65 72 |o manually enter| 00001660 20 74 68 65 20 66 69 78 74 75 72 65 73 0d 6c 69 | the fixtures.li| 00001670 73 74 2e 20 49 66 20 61 20 70 72 69 6e 74 6f 75 |st. If a printou| 00001680 74 20 6f 66 20 74 68 69 73 20 6c 69 73 74 20 69 |t of this list i| 00001690 73 20 72 65 71 75 69 72 65 64 2c 20 73 69 6d 70 |s required, simp| 000016a0 6c 79 20 73 65 74 20 79 6f 75 72 20 70 72 69 6e |ly set your prin| 000016b0 74 65 72 20 22 6f 6e 0d 6c 69 6e 65 22 20 62 65 |ter "on.line" be| 000016c0 66 6f 72 65 20 73 65 6c 65 63 74 69 6e 67 20 74 |fore selecting t| 000016d0 68 69 73 20 6f 70 74 69 6f 6e 2e 0d 0d 54 68 65 |his option...The| 000016e0 20 70 72 6f 67 72 61 6d 20 70 72 6f 63 65 65 64 | program proceed| 000016f0 73 20 74 6f 20 72 65 71 75 65 73 74 20 74 68 65 |s to request the| 00001700 20 6d 61 74 63 68 20 64 61 74 61 20 69 6e 20 6e | match data in n| 00001710 75 6d 65 72 69 63 20 66 6f 72 6d 2e 20 49 66 20 |umeric form. If | 00001720 74 68 65 0d 64 61 74 61 20 69 73 20 72 65 61 64 |the.data is read| 00001730 20 66 72 6f 6d 20 64 69 73 63 2c 20 74 68 65 20 | from disc, the | 00001740 66 69 78 74 75 72 65 73 20 6c 69 73 74 20 77 69 |fixtures list wi| 00001750 6c 6c 20 62 65 20 72 65 61 64 20 69 6e 2c 20 73 |ll be read in, s| 00001760 74 6f 70 70 69 6e 67 20 61 74 20 74 68 65 0d 62 |topping at the.b| 00001770 6f 74 74 6f 6d 20 6f 66 20 65 61 63 68 20 73 63 |ottom of each sc| 00001780 72 65 65 6e 20 74 6f 20 61 6c 6c 6f 77 20 79 6f |reen to allow yo| 00001790 75 20 74 6f 20 6c 6f 6f 6b 20 66 6f 72 20 61 6e |u to look for an| 000017a0 79 20 6e 65 63 65 73 73 61 72 79 20 63 6f 72 72 |y necessary corr| 000017b0 65 63 74 69 6f 6e 73 2e 0d 50 72 65 73 73 20 53 |ections..Press S| 000017c0 48 49 46 54 20 74 6f 20 73 63 72 6f 6c 6c 20 74 |HIFT to scroll t| 000017d0 68 65 20 73 63 72 65 65 6e 2e 20 49 66 20 74 68 |he screen. If th| 000017e0 69 73 20 64 61 74 61 20 6e 65 65 64 73 20 74 6f |is data needs to| 000017f0 20 62 65 20 65 6e 74 65 72 65 64 0d 6d 61 6e 75 | be entered.manu| 00001800 61 6c 6c 79 2c 20 74 79 70 65 20 69 6e 20 74 68 |ally, type in th| 00001810 65 20 61 70 70 72 6f 70 72 69 61 74 65 20 74 65 |e appropriate te| 00001820 61 6d 20 6e 75 6d 62 65 72 20 61 74 20 74 68 65 |am number at the| 00001830 20 70 72 6f 6d 70 74 2c 20 61 73 20 74 61 6b 65 | prompt, as take| 00001840 6e 20 66 72 6f 6d 0d 74 68 65 20 74 65 61 6d 20 |n from.the team | 00001850 6c 69 73 74 20 6f 66 66 65 72 65 64 20 65 61 72 |list offered ear| 00001860 6c 69 65 72 2e 20 41 6e 79 20 63 6f 72 72 65 63 |lier. Any correc| 00001870 74 69 6f 6e 73 20 63 61 6e 20 62 65 20 6d 61 64 |tions can be mad| 00001880 65 20 61 66 74 65 72 20 61 6c 6c 20 74 68 65 0d |e after all the.| 00001890 6d 61 74 63 68 20 64 61 74 61 20 68 61 73 20 62 |match data has b| 000018a0 65 65 6e 20 65 6e 74 65 72 65 64 2e 0d 0d 54 68 |een entered...Th| 000018b0 65 20 70 72 6f 67 72 61 6d 20 77 69 6c 6c 20 74 |e program will t| 000018c0 68 65 6e 20 63 61 6c 63 75 6c 61 74 65 20 74 68 |hen calculate th| 000018d0 65 20 6d 6f 73 74 20 6c 69 6b 65 6c 79 20 31 38 |e most likely 18| 000018e0 20 6d 61 74 63 68 65 73 20 74 6f 20 72 65 73 75 | matches to resu| 000018f0 6c 74 20 69 6e 20 61 0d 64 72 61 77 2e 20 49 66 |lt in a.draw. If| 00001900 20 79 6f 75 20 77 61 6e 74 20 74 68 69 73 20 73 | you want this s| 00001910 65 6c 65 63 74 69 6f 6e 20 73 65 6e 74 20 74 6f |election sent to| 00001920 20 79 6f 75 72 20 70 72 69 6e 74 65 72 2c 20 65 | your printer, e| 00001930 6e 73 75 72 65 20 74 68 61 74 20 79 6f 75 72 0d |nsure that your.| 00001940 70 72 69 6e 74 65 72 20 69 73 20 22 6f 6e 20 6c |printer is "on l| 00001950 69 6e 65 22 2e 20 4f 74 68 65 72 77 69 73 65 20 |ine". Otherwise | 00001960 69 74 20 77 69 6c 6c 20 62 65 20 73 65 6e 74 20 |it will be sent | 00001970 74 6f 20 74 68 65 20 73 63 72 65 65 6e 20 6f 6e |to the screen on| 00001980 6c 79 2e 0d 0d 33 2e 20 52 65 73 75 6c 74 73 3a |ly...3. Results:| 00001990 0d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 0d 0d 44 75 |.===========..Du| 000019a0 72 69 6e 67 20 74 68 65 20 65 78 65 63 75 74 69 |ring the executi| 000019b0 6f 6e 20 6f 66 20 22 46 6f 6f 74 22 2c 20 61 20 |on of "Foot", a | 000019c0 64 61 74 61 20 66 69 6c 65 20 69 73 20 63 72 65 |data file is cre| 000019d0 61 74 65 64 20 6f 6e 20 64 69 73 63 20 6f 66 20 |ated on disc of | 000019e0 74 68 65 0d 6d 61 74 63 68 65 73 20 70 72 65 64 |the.matches pred| 000019f0 69 63 74 65 64 2e 20 22 52 65 73 75 6c 74 73 22 |icted. "Results"| 00001a00 20 77 69 6c 6c 20 61 6e 61 6c 79 73 65 20 74 68 | will analyse th| 00001a10 65 20 61 63 74 75 61 6c 20 72 65 73 75 6c 74 73 |e actual results| 00001a20 20 61 73 0d 74 72 61 6e 73 6d 69 74 74 65 64 20 | as.transmitted | 00001a30 62 79 20 43 45 45 46 41 58 2c 20 61 6e 64 20 63 |by CEEFAX, and c| 00001a40 61 6c 63 75 6c 61 74 65 20 74 68 65 20 6d 61 78 |alculate the max| 00001a50 69 6d 75 6d 20 70 6f 6f 6c 73 20 70 6f 69 6e 74 |imum pools point| 00001a60 73 20 74 68 61 74 20 68 61 76 65 0d 67 61 69 6e |s that have.gain| 00001a70 65 64 20 75 73 69 6e 67 20 74 68 65 20 67 69 76 |ed using the giv| 00001a80 65 6e 20 66 6f 72 65 63 61 73 74 2e 0d 0d 49 66 |en forecast...If| 00001a90 20 79 6f 75 20 75 73 65 20 61 20 70 6f 6f 6c 73 | you use a pools| 00001aa0 20 65 6e 74 72 79 20 77 69 74 68 20 6d 6f 72 65 | entry with more| 00001ab0 20 28 6f 72 20 6c 65 73 73 29 20 74 68 61 6e 20 | (or less) than | 00001ac0 74 65 6e 20 73 65 6c 65 63 74 69 6f 6e 73 2c 20 |ten selections, | 00001ad0 74 68 65 0d 61 70 70 72 6f 70 72 69 61 74 65 20 |the.appropriate | 00001ae0 6c 69 6e 65 20 61 74 20 74 68 65 20 62 65 67 69 |line at the begi| 00001af0 6e 6e 69 6e 67 20 6f 66 20 74 68 65 20 70 72 6f |nning of the pro| 00001b00 67 72 61 6d 20 6d 75 73 74 20 62 65 20 61 6c 74 |gram must be alt| 00001b10 65 72 65 64 2e 20 54 68 65 0d 70 72 6f 67 72 61 |ered. The.progra| 00001b20 6d 20 63 61 6c 63 75 6c 61 74 65 73 20 74 68 65 |m calculates the| 00001b30 20 6d 61 78 69 6d 75 6d 20 70 6f 69 6e 74 73 20 | maximum points | 00001b40 70 6f 73 73 69 62 6c 65 20 75 73 69 6e 67 20 61 |possible using a| 00001b50 20 46 75 6c 6c 20 50 65 72 6d 20 70 6c 61 6e 2c | Full Perm plan,| 00001b60 0d 62 75 74 20 61 6c 73 6f 20 70 72 65 73 65 6e |.but also presen| 00001b70 74 73 20 74 68 65 20 72 65 73 75 6c 74 73 20 69 |ts the results i| 00001b80 6e 20 70 6f 6f 6c 73 20 70 6f 69 6e 74 73 20 66 |n pools points f| 00001b90 6f 72 6d 61 74 20 66 6f 72 20 6e 6f 72 6d 61 6c |ormat for normal| 00001ba0 20 63 68 65 63 6b 69 6e 67 0d 6f 66 20 61 20 63 | checking.of a c| 00001bb0 6f 75 70 6f 6e 2e 0d 0d 54 68 65 20 72 65 73 75 |oupon...The resu| 00001bc0 6c 74 73 20 61 72 65 20 62 72 6f 61 64 63 61 73 |lts are broadcas| 00001bd0 74 20 6f 6e 20 42 42 43 31 20 6f 6e 20 61 20 53 |t on BBC1 on a S| 00001be0 61 74 75 72 64 61 79 20 61 66 74 65 72 6e 6f 6f |aturday afternoo| 00001bf0 6e 2f 65 76 65 6e 69 6e 67 2c 20 61 6e 64 0d 74 |n/evening, and.t| 00001c00 68 65 6e 20 61 72 65 20 74 72 61 6e 73 66 65 72 |hen are transfer| 00001c10 72 65 64 20 74 6f 20 42 42 43 32 20 66 6f 72 20 |red to BBC2 for | 00001c20 74 68 65 20 65 61 72 6c 79 20 70 61 72 74 20 20 |the early part | 00001c30 6f 66 20 74 68 65 20 66 6f 6c 6c 6f 77 69 6e 67 |of the following| 00001c40 20 77 65 65 6b 2e 0d 54 68 65 20 70 72 6f 67 72 | week..The progr| 00001c50 61 6d 20 64 65 74 65 63 74 73 20 74 68 65 20 64 |am detects the d| 00001c60 61 79 20 6f 6e 20 77 68 69 63 68 20 69 74 20 69 |ay on which it i| 00001c70 73 20 72 75 6e 2c 20 61 6e 64 20 77 69 6c 6c 20 |s run, and will | 00001c80 73 65 6c 65 63 74 20 74 68 65 0d 63 6f 72 72 65 |select the.corre| 00001c90 63 74 20 63 68 61 6e 6e 65 6c 20 61 6e 64 20 70 |ct channel and p| 00001ca0 61 67 65 20 6e 75 6d 62 65 72 73 20 61 75 74 6f |age numbers auto| 00001cb0 6d 61 74 69 63 61 6c 6c 79 2e 20 28 69 2e 65 2e |matically. (i.e.| 00001cc0 20 69 66 20 72 75 6e 20 6f 6e 20 53 61 74 75 72 | if run on Satur| 00001cd0 64 61 79 2c 0d 69 74 20 77 69 6c 6c 20 73 65 6c |day,.it will sel| 00001ce0 65 63 74 20 42 42 43 31 2c 20 70 61 67 65 73 20 |ect BBC1, pages | 00001cf0 33 33 31 20 6f 6e 77 61 72 64 73 2c 20 62 75 74 |331 onwards, but| 00001d00 20 69 66 20 72 75 6e 20 6f 6e 2c 20 73 61 79 2c | if run on, say,| 00001d10 20 4d 6f 6e 64 61 79 2c 20 69 74 0d 77 69 6c 6c | Monday, it.will| 00001d20 20 73 65 6c 65 63 74 20 42 42 43 32 2c 20 20 70 | select BBC2, p| 00001d30 61 67 65 20 33 34 31 2e 29 20 41 20 63 68 65 63 |age 341.) A chec| 00001d40 6b 20 69 73 20 63 61 72 72 69 65 64 20 6f 75 74 |k is carried out| 00001d50 20 74 6f 20 65 6e 73 75 72 65 20 74 68 65 20 61 | to ensure the a| 00001d60 63 74 75 61 6c 0d 72 65 73 75 6c 74 73 20 61 72 |ctual.results ar| 00001d70 65 20 6f 62 74 61 69 6e 65 64 2c 20 61 6e 64 20 |e obtained, and | 00001d80 6e 6f 74 20 74 68 65 20 68 61 6c 66 2d 74 69 6d |not the half-tim| 00001d90 65 20 72 65 73 75 6c 74 73 20 6f 72 20 6f 74 68 |e results or oth| 00001da0 65 72 20 64 61 74 61 2e 20 41 0d 72 65 70 6f 72 |er data. A.repor| 00001db0 74 20 77 69 6c 6c 20 62 65 20 67 69 76 65 6e 2c |t will be given,| 00001dc0 20 61 6e 64 20 74 68 65 20 70 72 6f 67 72 61 6d | and the program| 00001dd0 20 74 65 72 6d 69 6e 61 74 65 64 20 69 66 20 74 | terminated if t| 00001de0 68 65 20 72 65 73 75 6c 74 73 20 61 72 65 20 6e |he results are n| 00001df0 6f 74 0d 66 6f 75 6e 64 2e 0d 0d 49 66 20 61 20 |ot.found...If a | 00001e00 6d 61 74 63 68 20 69 73 20 64 65 63 6c 61 72 65 |match is declare| 00001e10 64 20 76 6f 69 64 2c 20 6f 72 20 61 20 72 65 73 |d void, or a res| 00001e20 75 6c 74 20 64 65 63 69 64 65 64 20 62 79 20 74 |ult decided by t| 00001e30 68 65 20 50 6f 6f 6c 73 20 70 61 6e 65 6c 2c 20 |he Pools panel, | 00001e40 74 68 65 0d 63 6f 72 72 65 63 74 20 70 6f 6f 6c |the.correct pool| 00001e50 73 20 70 6f 69 6e 74 73 20 77 69 6c 6c 20 62 65 |s points will be| 00001e60 20 66 6f 75 6e 64 2e 20 53 75 63 68 20 73 69 74 | found. Such sit| 00001e70 75 61 74 69 6f 6e 73 20 77 69 6c 6c 20 62 65 20 |uations will be | 00001e80 72 65 70 6f 72 74 65 64 20 77 68 65 6e 0d 74 68 |reported when.th| 00001e90 65 20 72 65 73 75 6c 74 73 20 61 72 65 20 6c 69 |e results are li| 00001ea0 73 74 65 64 20 62 79 20 74 68 65 20 70 72 6f 67 |sted by the prog| 00001eb0 72 61 6d 2e 0d 0d 54 68 69 73 20 70 72 6f 67 72 |ram...This progr| 00001ec0 61 6d 20 75 73 65 73 20 73 65 76 65 72 61 6c 20 |am uses several | 00001ed0 6f 66 20 74 68 65 20 73 79 73 74 65 6d 27 73 20 |of the system's | 00001ee0 70 61 67 65 20 67 72 61 62 62 65 72 73 2c 20 72 |page grabbers, r| 00001ef0 65 73 75 6c 74 69 6e 67 20 69 6e 20 61 0d 6d 75 |esulting in a.mu| 00001f00 63 68 20 66 61 73 74 65 72 20 65 78 65 63 75 74 |ch faster execut| 00001f10 69 6f 6e 20 74 69 6d 65 20 74 68 61 6e 20 66 72 |ion time than fr| 00001f20 6f 6d 20 70 72 65 76 69 6f 75 73 20 76 65 72 73 |om previous vers| 00001f30 69 6f 6e 73 2e 20 57 68 69 6c 73 74 20 65 61 63 |ions. Whilst eac| 00001f40 68 20 70 61 67 65 0d 66 72 6f 6d 20 43 45 45 46 |h page.from CEEF| 00001f50 41 58 20 69 73 20 62 65 69 6e 67 20 70 72 6f 63 |AX is being proc| 00001f60 65 73 73 65 64 2c 20 74 68 65 20 73 63 72 65 65 |essed, the scree| 00001f70 6e 20 77 69 6c 6c 20 69 6e 64 69 63 61 74 65 20 |n will indicate | 00001f80 62 72 69 65 66 6c 79 20 77 68 69 63 68 0d 70 61 |briefly which.pa| 00001f90 72 74 69 63 75 6c 61 72 20 70 6f 6f 6c 73 20 63 |rticular pools c| 00001fa0 6f 75 70 6f 6e 20 6d 61 74 63 68 20 6e 75 6d 62 |oupon match numb| 00001fb0 65 72 20 69 73 20 62 65 69 6e 67 20 73 74 75 64 |er is being stud| 00001fc0 69 65 64 20 61 74 20 74 68 65 20 74 69 6d 65 2e |ied at the time.| 00001fd0 0d 0d 0d 20 20 20 20 20 20 20 20 20 20 20 20 20 |... | 00001fe0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00001ff0 20 20 20 20 20 20 20 20 28 63 29 20 4a 65 72 65 | (c) Jere| 00002000 6d 79 20 42 72 61 79 73 68 61 77 20 20 20 41 75 |my Brayshaw Au| 00002010 67 75 73 74 20 31 39 38 38 0d 0d 0d 4e 6f 74 65 |gust 1988...Note| 00002020 3a 20 54 68 65 20 70 72 6f 67 72 61 6d 73 20 68 |: The programs h| 00002030 61 76 65 20 62 65 65 6e 20 77 72 69 74 74 65 6e |ave been written| 00002040 20 74 6f 20 6f 70 65 72 61 74 65 20 77 69 74 68 | to operate with| 00002050 20 74 68 65 20 42 42 43 20 4d 69 63 72 6f 63 6f | the BBC Microco| 00002060 6d 70 75 74 65 72 0d 53 79 73 74 65 6d 20 54 65 |mputer.System Te| 00002070 6c 65 74 65 78 74 20 41 64 61 70 74 65 72 20 28 |letext Adapter (| 00002080 62 6f 74 68 20 74 68 65 20 41 63 6f 72 6e 20 73 |both the Acorn s| 00002090 79 73 74 65 6d 20 61 6e 64 20 74 68 65 20 6e 65 |ystem and the ne| 000020a0 77 20 47 49 53 20 61 64 61 70 74 65 72 29 0d 61 |w GIS adapter).a| 000020b0 6e 64 20 41 54 53 20 6f 72 20 41 54 53 2b 20 73 |nd ATS or ATS+ s| 000020c0 6f 66 74 77 61 72 65 2e 20 54 68 65 79 20 61 72 |oftware. They ar| 000020d0 65 20 6e 6f 74 20 67 75 61 72 61 6e 74 65 65 64 |e not guaranteed| 000020e0 20 74 6f 20 66 75 6e 63 74 69 6f 6e 20 63 6f 72 | to function cor| 000020f0 72 65 63 74 6c 79 20 6f 6e 0d 6f 74 68 65 72 20 |rectly on.other | 00002100 6d 61 6b 65 73 20 6f 66 20 61 64 61 70 74 65 72 |makes of adapter| 00002110 2c 20 65 76 65 6e 20 77 69 74 68 20 41 54 53 2e |, even with ATS.| 00002120 20 54 68 69 73 20 69 73 20 62 65 63 61 75 73 65 | This is because| 00002130 20 73 6f 6d 65 20 6f 74 68 65 72 20 74 65 6c 65 | some other tele| 00002140 74 65 78 74 0d 61 64 61 70 74 65 72 73 20 75 73 |text.adapters us| 00002150 65 20 6c 65 73 73 20 76 65 72 73 61 74 69 6c 65 |e less versatile| 00002160 20 74 65 6c 65 74 65 78 74 20 72 65 63 65 70 74 | teletext recept| 00002170 69 6f 6e 20 63 68 69 70 73 2c 20 61 6e 64 20 69 |ion chips, and i| 00002180 74 20 69 73 20 6e 6f 74 0d 70 6f 73 73 69 62 6c |t is not.possibl| 00002190 65 20 74 6f 20 69 6d 70 6c 65 6d 65 6e 74 20 6d |e to implement m| 000021a0 75 6c 74 69 70 6c 65 20 73 69 6d 75 6c 74 61 6e |ultiple simultan| 000021b0 65 6f 75 73 20 70 61 67 65 20 67 72 61 62 62 65 |eous page grabbe| 000021c0 72 73 2e 20 54 68 69 73 20 69 73 20 61 0d 72 65 |rs. This is a.re| 000021d0 73 74 72 69 63 74 69 6f 6e 20 6f 66 20 74 68 65 |striction of the| 000021e0 20 68 61 72 64 77 61 72 65 2c 20 61 6e 64 20 63 | hardware, and c| 000021f0 61 6e 6e 6f 74 20 62 65 20 6f 76 65 72 63 6f 6d |annot be overcom| 00002200 65 20 69 6e 20 73 6f 66 74 77 61 72 65 2e 0d |e in software..| 0000220f