the changing error in calculating pi from 5 to 10000 digits. pi calculation error.pdf · for the...

113
The changing error in calculating pi from 5 to 10000 digits. November 1, 2015 This is a study of the results of calculating pi by hand, this means that you use paper, pencil and your mind only and no computer or other calculating devices. For most people who do programming and use the extended math package like “GNU Multiple Precision Arithmetic Library” which is available with many different programming languages. The problem with GNU is that it does more digits than the required digits and when reduced will print the correct answer which is not the same results that hand calculation would give. Most of the printing of these numbers may end round up the results. All the calculations of PI they have to drop some of the last digits because they are not correct. The other problem is GNU works in binary and not decimal like humans prefer to and hand calculations have always been done in. Your problem is to create a decimal program not a binary program the prints he same results as results as a hand calculation. What is interesting, so far men are the only ones searching for more digits of PI although six women did help with ENIAC. This is standard approach by doing the ATN(1/5) and ATN(1/239) which requires the need for the two times multiplying by 4, which increases the error in the last digit. The equation used is PI = 4 * ( 4 * ATAN(1/5) – ATAN(1/239)) which has two multiplication by 4 and still has the one subtraction. Here is a collection of 994 different size of calculation from 6 to 1000 in steps of one increments. The first group of digits is the calculated digits and the second line tells the number of units in error. I increased the searching range to find if there are values with no error which is not so common and I did fine two values which were 226 and 330. There are many other numbers less than 10 units which is not a very large error. As with anything I decided to expand my search to 2600 and found more with a 0 unit error they are 1244, 1389, 1650, 1774, 1775, 2204 and 2344 and the largest value under 2600 is 2596 digits with 645 units error in the last digit, while 2539 has only 1 unit error in the last digit, go figure. If you want to test your computer program to calculate 100 digits for the formula PI = ATN(16/5) – ATAN(4/239) the last 5 digits have to be “70681” and not the real digits “70679”. For this sample there is an error of 2 units in the last digit which effects the last 2 digit so only 98 digits are correct. For the formula PI = 4 * (4 * ATN(1/5) – ATAN(1/239)) the last five digits have to be “70712” and not the real digits “70679”. For this second sample there is an error of 33 units in the last digit which effects the last 3 digit so only 97 digits are correct. In 1706, John Machin did 100 digits PI so how many digits did he calculate to produce 100 correct digit answer. The source of his output is found at “commons.wikimedia.org/wiki/File:John_Machin_Pi.png” it does not tell how many digits he did calculate. This sample of the calculation of increasing digits of PI shows how diverse PI is with its ups and downs. The error does not just increase as the digits, the assumption is with the alternating signs of the ATAN function most of the errors would cancel out but this is not always true and some times they build up in one direction.

Upload: others

Post on 30-Sep-2020

17 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

The changing error in calculating pi from 5 to 10000 digits.

November 1, 2015

This is a study of the results of calculating pi by hand, this means that you use paper, pencil and your mind only and no computer or other calculating devices. For most people who do programming and use the extended math package like “GNU Multiple Precision Arithmetic Library” which is available with many different programming languages. The problem with GNU is that it does more digits than the required digits and when reduced will print the correct answer which is not the same results that hand calculation would give. Most of the printing of these numbers may end round up the results. All the calculations of PI they have to drop some of the last digits because they are not correct. The other problem is GNU works in binary and not decimal like humans prefer to and hand calculations have always been done in. Your problem is to create a decimal program not a binary program the prints he same results as results as a hand calculation. What is interesting, so far men are the only ones searching for more digits of PI although six women did help with ENIAC.

This is standard approach by doing the ATN(1/5) and ATN(1/239) which requires the need for the two times multiplying by 4, which increases the error in the last digit. The equation used is PI = 4 * ( 4 * ATAN(1/5) – ATAN(1/239)) which has two multiplication by 4 and still has the one subtraction. Here is a collection of 994 different size of calculation from 6 to 1000 in steps of one increments. The first group of digits is the calculated digits and the second line tells the number of units in error. I increased the searching range to find if there are values with no error which is not so common and I did fine two values which were 226 and 330. There are many other numbers less than 10 units which is not a very large error. As with anything I decided to expand my search to 2600 and found more with a 0 unit error they are 1244, 1389, 1650, 1774, 1775, 2204 and 2344 and the largest value under 2600 is 2596 digits with 645 units error in the last digit, while 2539 has only 1 unit error in the last digit, go figure.

If you want to test your computer program to calculate 100 digits for the formula PI = ATN(16/5) – ATAN(4/239) the last 5 digits have to be “70681” and not the real digits “70679”. For this sample there is an error of 2 units in the last digit which effects the last 2 digit so only 98 digits are correct. For the formula PI = 4 * (4 * ATN(1/5) – ATAN(1/239)) the last five digits have to be “70712” and not the real digits “70679”. For this second sample there is an error of 33 units in the last digit which effects the last 3 digit so only 97 digits are correct. In 1706, JohnMachin did 100 digits PI so how many digits did he calculate to produce 100 correct digit answer. The source of his output is found at “commons.wikimedia.org/wiki/File:John_Machin_Pi.png” it does not tell how many digits he did calculate. This sample of the calculation of increasing digits of PI shows how diverse PI is with its ups and downs. The error does not just increase as the digits, the assumption is with the alternating signs of the ATAN function most of the errors would cancel out but this is not always true and some times they build up in one direction.

Page 2: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

Here are the first few 5 through 105 to see that 103 would be the minimal value so I would havepicked 105 digits to be on the safe side. See the 101 samples below and you can see for you rself.

The calculations below are base on the formula PI = 4 * (4 * ATN(1/5) – ATAN(1/239)) which is the most common method used even in the 1900’s by people and computers. See after this small group for the values beyond 4 to 10,000.

THE NUMBER PI TO 5 POSITION AFTER THE DECIMAL POINT=3.14168The last 5 digits should be 14159 the calculated value was 14168 with an error of 9 units in the last digit

THE NUMBER PI TO 6 POSITION AFTER THE DECIMAL POINT=3.14161 6The last 5 digits should be 41592 the calculated value was 41616 with an error of 24 units in the last digit

THE NUMBER PI TO 7 POSITION AFTER THE DECIMAL POINT=3.14159 32The last 5 digits should be 15926 the calculated value was 15932 with an error of 6 units in the last digit

THE NUMBER PI TO 8 POSITION AFTER THE DECIMAL POINT=3.14159 280The last 5 digits should be 59265 the calculated value was 59280 with an error of 15 units in the last digit

THE NUMBER PI TO 9 POSITION AFTER THE DECIMAL POINT=3.14159 2672The last 5 digits should be 92653 the calculated value was 92672 with an error of 19 units in the last digit

THE NUMBER PI TO 10 POSITION AFTER THE DECIMAL POINT=3.14159 26544The last 5 digits should be 26535 the calculated value was 26544 with an error of 9 units in the last digit

THE NUMBER PI TO 11 POSITION AFTER THE DECIMAL POINT=3.14159 26536 0

Page 3: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

The last 5 digits should be 65358 the calculated value was 65360 with an error of 2 units in the last digit

THE NUMBER PI TO 12 POSITION AFTER THE DECIMAL POINT=3.14159 26536 08The last 5 digits should be 53589 the calculated value was 53608 with an error of 19 units in the last digit

THE NUMBER PI TO 13 POSITION AFTER THE DECIMAL POINT=3.14159 26535 900The last 5 digits should be 35897 the calculated value was 35900 with an error of 3 units in the last digit

THE NUMBER PI TO 14 POSITION AFTER THE DECIMAL POINT=3.14159 26535 8996The last 5 digits should be 58979 the calculated value was 58996 with an error of 17 units in the last digit

THE NUMBER PI TO 15 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89812The last 5 digits should be 89793 the calculated value was 89812 with an error of 19 units in the last digit

THE NUMBER PI TO 16 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89794 0The last 5 digits should be 97932 the calculated value was 97940 with an error of 8 units in the last digit

THE NUMBER PI TO 17 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 24The last 5 digits should be 79323 the calculated value was 79324 with an error of 1 units in the last digit

THE NUMBER PI TO 18 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 252The last 5 digits should be 93238 the calculated value was 93252 with an error of 14 units in the last digit

THE NUMBER PI TO 19 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 2372The last 5 digits should be 32384 the calculated value was 32372 with an error of 12 units in the last digit

THE NUMBER PI TO 20 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23860The last 5 digits should be 23846 the calculated value was 23860 with an error of 14 units in the last digit

THE NUMBER PI TO 21 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23847 6The last 5 digits should be 38462 the calculated value was 38476 with an error of 14 units in the last digit

THE NUMBER PI TO 22 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 20The last 5 digits should be 84626 the calculated value was 84620 with an error of 6 units in the last digit

THE NUMBER PI TO 23 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 268The last 5 digits should be 46264 the calculated value was 46268 with an error of 4 units in the last digit

THE NUMBER PI TO 24 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 2648

Page 4: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

The last 5 digits should be 62643 the calculated value was 62648 with an error of 5 units in the last digit

THE NUMBER PI TO 25 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26428The last 5 digits should be 26433 the calculated value was 26428 with an error of 5 units in the last digit

THE NUMBER PI TO 26 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26438 0The last 5 digits should be 64338 the calculated value was 64380 with an error of 42 units in the last digit

THE NUMBER PI TO 27 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26434 08The last 5 digits should be 43383 the calculated value was 43408 with an error of 25 units in the last digit

THE NUMBER PI TO 28 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 864The last 5 digits should be 33832 the calculated value was 33864 with an error of 32 units in the last digit

THE NUMBER PI TO 29 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 8368The last 5 digits should be 38327 the calculated value was 38368 with an error of 41 units in the last digit

THE NUMBER PI TO 30 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83280The last 5 digits should be 83279 the calculated value was 83280 with an error of 1 units in the last digit

THE NUMBER PI TO 31 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 2The last 5 digits should be 32795 the calculated value was 32792 with an error of 3 units in the last digit

THE NUMBER PI TO 32 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 72The last 5 digits should be 27950 the calculated value was 27972 with an error of 22 units in the last digit

THE NUMBER PI TO 33 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 512The last 5 digits should be 79502 the calculated value was 79512 with an error of 10 units in the last digit

THE NUMBER PI TO 34 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 5048The last 5 digits should be 95028 the calculated value was 95048 with an error of 20 units in the last digit

THE NUMBER PI TO 35 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50304The last 5 digits should be 50288 the calculated value was 50304 with an error of 16 units in the last digit

THE NUMBER PI TO 36 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50290 8The last 5 digits should be 2884 the calculated value was 2908 with an error of 24 units in the last digit

THE NUMBER PI TO 37 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 32

Page 5: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

The last 5 digits should be 28841 the calculated value was 28832 with an error of 9 units in the last digit

THE NUMBER PI TO 38 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 408The last 5 digits should be 88419 the calculated value was 88408 with an error of 11 units in the last digit

THE NUMBER PI TO 39 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 4208The last 5 digits should be 84197 the calculated value was 84208 with an error of 11 units in the last digit

THE NUMBER PI TO 40 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41988The last 5 digits should be 41971 the calculated value was 41988 with an error of 17 units in the last digit

THE NUMBER PI TO 41 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41972 4The last 5 digits should be 19716 the calculated value was 19724 with an error of 8 units in the last digit

THE NUMBER PI TO 42 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 68The last 5 digits should be 97169 the calculated value was 97168 with an error of 1 units in the last digit

THE NUMBER PI TO 43 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 700The last 5 digits should be 71693 the calculated value was 71700 with an error of 7 units in the last digit

THE NUMBER PI TO 44 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 6988The last 5 digits should be 16939 the calculated value was 16988 with an error of 49 units in the last digit

THE NUMBER PI TO 45 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69432The last 5 digits should be 69399 the calculated value was 69432 with an error of 33 units in the last digit

THE NUMBER PI TO 46 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69401 6The last 5 digits should be 93993 the calculated value was 94016 with an error of 23 units in the last digit

THE NUMBER PI TO 47 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 40The last 5 digits should be 39937 the calculated value was 39940 with an error of 3 units in the last digit

THE NUMBER PI TO 48 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 364The last 5 digits should be 99375 the calculated value was 99364 with an error of 11 units in the last digit

THE NUMBER PI TO 49 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 3744The last 5 digits should be 93751 the calculated value was 93744 with an error of 7 units in the last digit

THE NUMBER PI TO 50 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37496

Page 6: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

The last 5 digits should be 37510 the calculated value was 37496 with an error of 14 units in the last digit

THE NUMBER PI TO 51 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37514 4The last 5 digits should be 75105 the calculated value was 75144 with an error of 39 units in the last digit

THE NUMBER PI TO 52 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 92The last 5 digits should be 51058 the calculated value was 51092 with an error of 34 units in the last digit

THE NUMBER PI TO 53 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 564The last 5 digits should be 10582 the calculated value was 10564 with an error of 18 units in the last digit

THE NUMBER PI TO 54 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 5844The last 5 digits should be 5820 the calculated value was 5844 with an error of 24 units in the last digit

THE NUMBER PI TO 55 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58208The last 5 digits should be 58209 the calculated value was 58208 with an error of 1 units in the last digit

THE NUMBER PI TO 56 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58210 0The last 5 digits should be 82097 the calculated value was 82100 with an error of 3 units in the last digit

THE NUMBER PI TO 57 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 96The last 5 digits should be 20974 the calculated value was 20996 with an error of 22 units in the last digit

THE NUMBER PI TO 58 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 720The last 5 digits should be 9749 the calculated value was 9720 with an error of 29 units in the last digit

THE NUMBER PI TO 59 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 7476The last 5 digits should be 97494 the calculated value was 97476 with an error of 18 units in the last digit

THE NUMBER PI TO 60 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74940The last 5 digits should be 74944 the calculated value was 74940 with an error of 4 units in the last digit

Page 7: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

THE NUMBER PI TO 61 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 8The last 5 digits should be 49445 the calculated value was 49448 with an error of 3 units in the last digit

THE NUMBER PI TO 62 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 92The last 5 digits should be 94459 the calculated value was 94492 with an error of 33 units in the last digit

THE NUMBER PI TO 63 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 620The last 5 digits should be 44592 the calculated value was 44620 with an error of 28 units in the last digit

THE NUMBER PI TO 64 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 5928The last 5 digits should be 45923 the calculated value was 45928 with an error of 5 units in the last digit

THE NUMBER PI TO 65 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59228The last 5 digits should be 59230 the calculated value was 59228 with an error of 2 units in the last digit

THE NUMBER PI TO 66 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59235 2The last 5 digits should be 92307 the calculated value was 92352 with an error of 45 units in the last digit

THE NUMBER PI TO 67 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 80The last 5 digits should be 23078 the calculated value was 23080 with an error of 2 units in the last digit

THE NUMBER PI TO 68 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 780The last 5 digits should be 30781 the calculated value was 30780 with an error of 1 units in the last digit

THE NUMBER PI TO 69 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 7864The last 5 digits should be 7816 the calculated value was 7864 with an error of 48 units in the last digit

THE NUMBER PI TO 70 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78188The last 5 digits should be 78164 the calculated value was 78188 with an error of 24 units in the last digit

THE NUMBER PI TO 71 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510

Page 8: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

58209 74944 59230 78166 0The last 5 digits should be 81640 the calculated value was 81660 with an error of 20 units in the last digit

THE NUMBER PI TO 72 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 16The last 5 digits should be 16406 the calculated value was 16416 with an error of 10 units in the last digit

THE NUMBER PI TO 73 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 068The last 5 digits should be 64062 the calculated value was 64068 with an error of 6 units in the last digit

THE NUMBER PI TO 74 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 0656The last 5 digits should be 40628 the calculated value was 40656 with an error of 28 units in the last digit

THE NUMBER PI TO 75 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 06376The last 5 digits should be 6286 the calculated value was 6376 with an error of 90 units in the last digit

THE NUMBER PI TO 76 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 06290 4The last 5 digits should be 62862 the calculated value was 62904 with an error of 42 units in the last digit

THE NUMBER PI TO 77 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 06286 24The last 5 digits should be 28620 the calculated value was 28624 with an error of 4 units in the last digit

THE NUMBER PI TO 78 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 06286 200The last 5 digits should be 86208 the calculated value was 86200 with an error of 8 units in the last digit

THE NUMBER PI TO 79 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 06286 2072The last 5 digits should be 62089 the calculated value was 62072 with an error of 17 units in the last digit

THE NUMBER PI TO 80 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 06286 20948The last 5 digits should be 20899 the calculated value was 20948 with an error of 49 units in the last digit

THE NUMBER PI TO 81 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 06286 20902 0The last 5 digits should be 8998 the calculated value was 9020 with an error of 22 units in the last digit

Page 9: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

THE NUMBER PI TO 82 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 06286 20899 88The last 5 digits should be 89986 the calculated value was 89988 with an error of 2 units in the last digit

THE NUMBER PI TO 83 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 06286 20899 836The last 5 digits should be 99862 the calculated value was 99836 with an error of 26 units in the last digit

THE NUMBER PI TO 84 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 06286 20899 8664The last 5 digits should be 98628 the calculated value was 98664 with an error of 36 units in the last digit

THE NUMBER PI TO 85 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 06286 20899 86260The last 5 digits should be 86280 the calculated value was 86260 with an error of 20 units in the last digit

THE NUMBER PI TO 86 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 06286 20899 86279 2The last 5 digits should be 62803 the calculated value was 62792 with an error of 11 units in the last digit

THE NUMBER PI TO 87 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 06286 20899 86280 60The last 5 digits should be 28034 the calculated value was 28060 with an error of 26 units in the last digit

THE NUMBER PI TO 88 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 06286 20899 86280 388The last 5 digits should be 80348 the calculated value was 80388 with an error of 40 units in the last digit

THE NUMBER PI TO 89 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 06286 20899 86280 3472The last 5 digits should be 3482 the calculated value was 3472 with an error of 10 units in the last digit

THE NUMBER PI TO 90 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 06286 20899 86280 34892The last 5 digits should be 34825 the calculated value was 34892 with an error of 67 units in the last digit

THE NUMBER PI TO 91 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 06286 20899 86280 34827 6The last 5 digits should be 48253 the calculated value was 48276 with an error of 23 units in the last digit

THE NUMBER PI TO 92 POSITION AFTER THE DECIMAL POINT=

Page 10: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 06286 20899 86280 34825 60The last 5 digits should be 82534 the calculated value was 82560 with an error of 26 units in the last digit

THE NUMBER PI TO 93 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 06286 20899 86280 34825 364The last 5 digits should be 25342 the calculated value was 25364 with an error of 22 units in the last digit

THE NUMBER PI TO 94 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 06286 20899 86280 34825 3444The last 5 digits should be 53421 the calculated value was 53444 with an error of 23 units in the last digit

THE NUMBER PI TO 95 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 06286 20899 86280 34825 34212The last 5 digits should be 34211 the calculated value was 34212 with an error of 1 units in the last digit

THE NUMBER PI TO 96 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 06286 20899 86280 34825 34215 6The last 5 digits should be 42117 the calculated value was 42156 with an error of 39 units in the last digit

THE NUMBER PI TO 97 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 06286 20899 86280 34825 34212 56The last 5 digits should be 21170 the calculated value was 21256 with an error of 86 units in the last digit

THE NUMBER PI TO 98 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 06286 20899 86280 34825 34211 748The last 5 digits should be 11706 the calculated value was 11748 with an error of 42 units in the last digit

THE NUMBER PI TO 99 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 06286 20899 86280 34825 34211 7088The last 5 digits should be 17067 the calculated value was 17088 with an error of 21 units in the last digit

THE NUMBER PI TO 100 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 06286 20899 86280 34825 34211 70712The last 5 digits should be 70679 the calculated value was 70712 with an error of 33 units in the last digit

THE NUMBER PI TO 101 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 06286 20899 86280 34825 34211 70681 6The last 5 digits should be 6798 the calculated value was 6816 with an error of 18 units in the last digit

THE NUMBER PI TO 102 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510

Page 11: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

58209 74944 59230 78164 06286 20899 86280 34825 34211 70680 04The last 5 digits should be 67982 the calculated value was 68004 with an error of 22 units in the last digit

THE NUMBER PI TO 103 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 06286 20899 86280 34825 34211 70679 836The last 5 digits should be 79821 the calculated value was 79836 with an error of 15 units in the last digit

THE NUMBER PI TO 104 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 06286 20899 86280 34825 34211 70679 8220The last 5 digits should be 98214 the calculated value was 98220 with an error of 6 units in the last digit

THE NUMBER PI TO 105 POSITION AFTER THE DECIMAL POINT=3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 06286 20899 86280 34825 34211 70679 82168The last 5 digits should be 82148 the calculated value was 82168 with an error of 20 units in the last digit

This is the short version with just the units of error.

For the number 6 there are = 24 units error.For the number 7 there are = 6 units error.For the number 8 there are = 15 units error.For the number 9 there are = 19 units error.For the number 10 there are = 9 units error.For the number 11 there are = 2 units error.For the number 12 there are = 19 units error.For the number 13 there are = 3 units error.For the number 14 there are = 17 units error.For the number 15 there are = 19 units error.For the number 16 there are = 8 units error.For the number 17 there are = 1 units error.For the number 18 there are = 14 units error.For the number 19 there are = 12 units error.For the number 20 there are = 14 units error.For the number 21 there are = 14 units error.For the number 22 there are = 6 units error.For the number 23 there are = 4 units error.For the number 24 there are = 5 units error.For the number 25 there are = 5 units error.For the number 26 there are = 42 units error.For the number 27 there are = 25 units error.For the number 28 there are = 32 units error.For the number 29 there are = 41 units error.For the number 30 there are = 1 units error.For the number 31 there are = 3 units error.For the number 32 there are = 22 units error.

For the number 33 there are = 10 units error.For the number 34 there are = 20 units error.For the number 35 there are = 16 units error.For the number 36 there are = 24 units error.For the number 37 there are = 9 units error.For the number 38 there are = 11 units error.For the number 39 there are = 11 units error.For the number 40 there are = 17 units error.For the number 41 there are = 8 units error.For the number 42 there are = 1 units error.For the number 43 there are = 7 units error.For the number 44 there are = 49 units error.For the number 45 there are = 33 units error.For the number 46 there are = 23 units error.For the number 47 there are = 3 units error.For the number 48 there are = 11 units error.For the number 49 there are = 7 units error.For the number 50 there are = 14 units error.For the number 51 there are = 39 units error.For the number 52 there are = 34 units error.For the number 53 there are = 18 units error.For the number 54 there are = 24 units error.For the number 55 there are = 1 units error.For the number 56 there are = 3 units error.For the number 57 there are = 22 units error.For the number 58 there are = 29 units error.For the number 59 there are = 18 units error.

Page 12: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 60 there are = 4 units error.For the number 61 there are = 3 units error.For the number 62 there are = 33 units error.For the number 63 there are = 28 units error.For the number 64 there are = 5 units error.For the number 65 there are = 2 units error.For the number 66 there are = 45 units error.For the number 67 there are = 2 units error.For the number 68 there are = 1 units error.For the number 69 there are = 48 units error.For the number 70 there are = 24 units error.For the number 71 there are = 20 units error.For the number 72 there are = 10 units error.For the number 73 there are = 6 units error.For the number 74 there are = 28 units error.For the number 75 there are = 90 units error.For the number 76 there are = 42 units error.For the number 77 there are = 4 units error.For the number 78 there are = 8 units error.For the number 79 there are = 17 units error.For the number 80 there are = 49 units error.For the number 81 there are = 22 units error.For the number 82 there are = 2 units error.For the number 83 there are = 26 units error.For the number 84 there are = 36 units error.For the number 85 there are = 20 units error.For the number 86 there are = 11 units error.For the number 87 there are = 26 units error.For the number 88 there are = 40 units error.For the number 89 there are = 10 units error.For the number 90 there are = 67 units error.For the number 91 there are = 23 units error.For the number 92 there are = 26 units error.For the number 93 there are = 22 units error.For the number 94 there are = 23 units error.For the number 95 there are = 1 units error.For the number 96 there are = 39 units error.For the number 97 there are = 86 units error.For the number 98 there are = 42 units error.For the number 99 there are = 21 units error.For the number 100 there are = 33 units error.For the number 101 there are = 18 units error.For the number 102 there are = 22 units error.For the number 103 there are = 15 units error.For the number 104 there are = 6 units error.For the number 105 there are = 20 units error.For the number 106 there are = 12 units error.For the number 107 there are = 8 units error.For the number 108 there are = 38 units error.For the number 109 there are = 29 units error.For the number 110 there are = 5 units error.For the number 111 there are = 39 units error.

For the number 112 there are = 36 units error.For the number 113 there are = 76 units error.For the number 114 there are = 34 units error.For the number 115 there are = 27 units error.For the number 116 there are = 78 units error.For the number 117 there are = 54 units error.For the number 118 there are = 6 units error.For the number 119 there are = 28 units error.For the number 120 there are = 9 units error.For the number 121 there are = 18 units error.For the number 122 there are = 27 units error.For the number 123 there are = 53 units error.For the number 124 there are = 22 units error.For the number 125 there are = 44 units error.For the number 126 there are = 60 units error.For the number 127 there are = 70 units error.For the number 128 there are = 12 units error.For the number 129 there are = 83 units error.For the number 130 there are = 11 units error.For the number 131 there are = 41 units error.For the number 132 there are = 42 units error.For the number 133 there are = 13 units error.For the number 134 there are = 50 units error.For the number 135 there are = 42 units error.For the number 136 there are = 6 units error.For the number 137 there are = 15 units error.For the number 138 there are = 13 units error.For the number 139 there are = 3 units error.For the number 140 there are = 36 units error.For the number 141 there are = 35 units error.For the number 142 there are = 19 units error.For the number 143 there are = 7 units error.For the number 144 there are = 11 units error.For the number 145 there are = 66 units error.For the number 146 there are = 16 units error.For the number 147 there are = 20 units error.For the number 148 there are = 15 units error.For the number 149 there are = 36 units error.For the number 150 there are = 28 units error.For the number 151 there are = 28 units error.For the number 152 there are = 60 units error.For the number 153 there are = 21 units error.For the number 154 there are = 33 units error.For the number 155 there are = 31 units error.For the number 156 there are = 21 units error.For the number 157 there are = 14 units error.For the number 158 there are = 3 units error.For the number 159 there are = 2 units error.For the number 160 there are = 14 units error.For the number 161 there are = 4 units error.For the number 162 there are = 20 units error.For the number 163 there are = 81 units error.

Page 13: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 164 there are = 2 units error.For the number 165 there are = 58 units error.For the number 166 there are = 5 units error.For the number 167 there are = 22 units error.For the number 168 there are = 55 units error.For the number 169 there are = 57 units error.For the number 170 there are = 11 units error.For the number 171 there are = 14 units error.For the number 172 there are = 1 units error.For the number 173 there are = 4 units error.For the number 174 there are = 27 units error.For the number 175 there are = 25 units error.For the number 176 there are = 18 units error.For the number 177 there are = 19 units error.For the number 178 there are = 29 units error.For the number 179 there are = 21 units error.For the number 180 there are = 53 units error.For the number 181 there are = 52 units error.For the number 182 there are = 48 units error.For the number 183 there are = 56 units error.For the number 184 there are = 22 units error.

Page 14: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 194 there are = 23 units error.For the number 195 there are = 30 units error.For the number 196 there are = 57 units error.For the number 197 there are = 30 units error.For the number 198 there are = 89 units error.For the number 199 there are = 55 units error.For the number 200 there are = 96 units error.For the number 201 there are = 52 units error.For the number 202 there are = 120 units error.For the number 203 there are = 22 units error.For the number 204 there are = 44 units error.For the number 205 there are = 44 units error.For the number 206 there are = 33 units error.For the number 207 there are = 10 units error.For the number 208 there are = 17 units error.For the number 209 there are = 39 units error.For the number 210 there are = 9 units error.For the number 211 there are = 36 units error.For the number 212 there are = 86 units error.For the number 213 there are = 11 units error.For the number 214 there are = 45 units error.For the number 215 there are = 25 units error.For the number 216 there are = 63 units error.For the number 217 there are = 106 units error.For the number 218 there are = 4 units error.For the number 219 there are = 82 units error.For the number 220 there are = 33 units error.For the number 221 there are = 72 units error.For the number 222 there are = 8 units error.For the number 223 there are = 32 units error.For the number 224 there are = 19 units error.For the number 225 there are = 13 units error.For the number 226 there are = 0 units error.For the number 227 there are = 68 units error.For the number 228 there are = 24 units error.For the number 229 there are = 66 units error.For the number 230 there are = 27 units error.For the number 231 there are = 5 units error.For the number 232 there are = 7 units error.For the number 233 there are = 6 units error.For the number 234 there are = 54 units error.For the number 235 there are = 39 units error.For the number 236 there are = 6 units error.For the number 237 there are = 39 units error.For the number 238 there are = 29 units error.For the number 239 there are = 144 units error.For the number 240 there are = 11 units error.For the number 241 there are = 20 units error.For the number 242 there are = 27 units error.For the number 243 there are = 59 units error.For the number 244 there are = 104 units error.For the number 245 there are = 20 units error.

For the number 246 there are = 89 units error.For the number 247 there are = 37 units error.For the number 248 there are = 26 units error.For the number 249 there are = 9 units error.For the number 250 there are = 19 units error.For the number 251 there are = 58 units error.For the number 252 there are = 17 units error.For the number 253 there are = 84 units error.For the number 254 there are = 44 units error.For the number 255 there are = 12 units error.For the number 256 there are = 23 units error.For the number 257 there are = 8 units error.For the number 258 there are = 86 units error.For the number 259 there are = 53 units error.For the number 260 there are = 88 units error.For the number 261 there are = 3 units error.For the number 262 there are = 10 units error.For the number 263 there are = 34 units error.For the number 264 there are = 40 units error.For the number 265 there are = 33 units error.For the number 266 there are = 18 units error.For the number 267 there are = 44 units error.For the number 268 there are = 54 units error.For the number 269 there are = 23 units error.For the number 270 there are = 34 units error.For the number 271 there are = 48 units error.For the number 272 there are = 3 units error.For the number 273 there are = 38 units error.For the number 274 there are = 39 units error.For the number 275 there are = 84 units error.For the number 276 there are = 102 units error.For the number 277 there are = 86 units error.For the number 278 there are = 44 units error.For the number 279 there are = 28 units error.For the number 280 there are = 66 units error.For the number 281 there are = 89 units error.For the number 282 there are = 55 units error.For the number 283 there are = 33 units error.For the number 284 there are = 55 units error.For the number 285 there are = 3 units error.For the number 286 there are = 56 units error.For the number 287 there are = 12 units error.For the number 288 there are = 83 units error.For the number 289 there are = 100 units error.For the number 290 there are = 114 units error.For the number 291 there are = 40 units error.For the number 292 there are = 10 units error.For the number 293 there are = 64 units error.For the number 294 there are = 3 units error.For the number 295 there are = 103 units error.For the number 296 there are = 2 units error.For the number 297 there are = 61 units error.

Page 15: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 298 there are = 52 units error.For the number 299 there are = 19 units error.For the number 300 there are = 63 units error.For the number 301 there are = 63 units error.For the number 302 there are = 60 units error.For the number 303 there are = 32 units error.For the number 304 there are = 1 units error.For the number 305 there are = 38 units error.For the number 306 there are = 49 units error.For the number 307 there are = 42 units error.For the number 308 there are = 104 units error.For the number 309 there are = 82 units error.For the number 310 there are = 62 units error.For the number 311 there are = 52 units error.For the number 312 there are = 54 units error.For the number 313 there are = 41 units error.For the number 314 there are = 109 units error.For the number 315 there are = 63 units error.For the number 316 there are = 95 units error.For the number 317 there are = 26 units error.For the number 318 there are = 12 units error.For the number 319 there are = 23 units error.For the number 320 there are = 107 units error.For the number 321 there are = 78 units error.For the number 322 there are = 4 units error.For the number 323 there are = 84 units error.For the number 324 there are = 19 units error.For the number 325 there are = 23 units error.For the number 326 there are = 64 units error.For the number 327 there are = 24 units error.For the number 328 there are = 21 units error.For the number 329 there are = 20 units error.For the number 330 there are = 0 units error.For the number 331 there are = 55 units error.For the number 332 there are = 84 units error.For the number 333 there are = 30 units error.For the number 334 there are = 32 units error.For the number 335 there are = 50 units error.For the number 336 there are = 29 units error.For the number 337 there are = 32 units error.For the number 338 there are = 29 units error.For the number 339 there are = 170 units error.For the number 340 there are = 60 units error.For the number 341 there are = 3 units error.For the number 342 there are = 9 units error.For the number 343 there are = 79 units error.For the number 344 there are = 35 units error.For the number 345 there are = 61 units error.For the number 346 there are = 79 units error.For the number 347 there are = 164 units error.For the number 348 there are = 12 units error.For the number 349 there are = 33 units error.

For the number 350 there are = 52 units error.For the number 351 there are = 57 units error.For the number 352 there are = 74 units error.For the number 353 there are = 67 units error.For the number 354 there are = 64 units error.For the number 355 there are = 55 units error.For the number 356 there are = 65 units error.For the number 357 there are = 58 units error.For the number 358 there are = 111 units error.For the number 359 there are = 28 units error.For the number 360 there are = 44 units error.For the number 361 there are = 64 units error.For the number 362 there are = 3 units error.For the number 363 there are = 55 units error.For the number 364 there are = 77 units error.For the number 365 there are = 23 units error.For the number 366 there are = 42 units error.For the number 367 there are = 145 units error.For the number 368 there are = 109 units error.For the number 369 there are = 62 units error.For the number 370 there are = 35 units error.For the number 371 there are = 30 units error.For the number 372 there are = 72 units error.For the number 373 there are = 16 units error.For the number 374 there are = 62 units error.For the number 375 there are = 28 units error.For the number 376 there are = 56 units error.For the number 377 there are = 14 units error.For the number 378 there are = 22 units error.For the number 379 there are = 37 units error.For the number 380 there are = 28 units error.For the number 381 there are = 95 units error.For the number 382 there are = 53 units error.For the number 383 there are = 74 units error.For the number 384 there are = 24 units error.For the number 385 there are = 21 units error.For the number 386 there are = 94 units error.For the number 387 there are = 94 units error.For the number 388 there are = 43 units error.For the number 389 there are = 115 units error.For the number 390 there are = 33 units error.For the number 391 there are = 37 units error.For the number 392 there are = 106 units error.For the number 393 there are = 97 units error.For the number 394 there are = 35 units error.For the number 395 there are = 41 units error.For the number 396 there are = 33 units error.For the number 397 there are = 88 units error.For the number 398 there are = 4 units error.For the number 399 there are = 57 units error.For the number 400 there are = 38 units error.For the number 401 there are = 73 units error.

Page 16: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 402 there are = 47 units error.For the number 403 there are = 114 units error.For the number 404 there are = 11 units error.For the number 405 there are = 97 units error.For the number 406 there are = 56 units error.For the number 407 there are = 227 units error.For the number 408 there are = 10 units error.For the number 409 there are = 57 units error.For the number 410 there are = 72 units error.For the number 411 there are = 73 units error.For the number 412 there are = 11 units error.For the number 413 there are = 51 units error.For the number 414 there are = 11 units error.For the number 415 there are = 15 units error.For the number 416 there are = 31 units error.For the number 417 there are = 9 units error.For the number 418 there are = 147 units error.For the number 419 there are = 187 units error.For the number 420 there are = 81 units error.For the number 421 there are = 86 units error.For the number 422 there are = 29 units error.For the number 423 there are = 52 units error.For the number 424 there are = 45 units error.For the number 425 there are = 70 units error.For the number 426 there are = 14 units error.For the number 427 there are = 57 units error.For the number 428 there are = 107 units error.For the number 429 there are = 49 units error.For the number 430 there are = 9 units error.For the number 431 there are = 14 units error.For the number 432 there are = 191 units error.For the number 433 there are = 145 units error.For the number 434 there are = 69 units error.For the number 435 there are = 80 units error.For the number 436 there are = 66 units error.For the number 437 there are = 35 units error.For the number 438 there are = 31 units error.For the number 439 there are = 21 units error.For the number 440 there are = 37 units error.For the number 441 there are = 57 units error.For the number 442 there are = 83 units error.For the number 443 there are = 138 units error.For the number 444 there are = 111 units error.For the number 445 there are = 49 units error.For the number 446 there are = 21 units error.For the number 447 there are = 134 units error.For the number 448 there are = 69 units error.For the number 449 there are = 70 units error.For the number 450 there are = 60 units error.

Page 17: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error
Page 18: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error
Page 19: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error
Page 20: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 464 there are = 106 units error.For the number 465 there are = 47 units error.For the number 466 there are = 169 units error.For the number 467 there are = 12 units error.For the number 468 there are = 3 units error.For the number 469 there are = 41 units error.For the number 470 there are = 35 units error.For the number 471 there are = 75 units error.For the number 472 there are = 126 units error.For the number 473 there are = 200 units error.For the number 474 there are = 85 units error.For the number 475 there are = 37 units error.For the number 476 there are = 31 units error.For the number 477 there are = 84 units error.For the number 478 there are = 71 units error.For the number 479 there are = 36 units error.For the number 480 there are = 100 units error.For the number 481 there are = 52 units error.For the number 482 there are = 23 units error.For the number 483 there are = 99 units error.For the number 484 there are = 52 units error.For the number 485 there are = 78 units error.For the number 486 there are = 83 units error.For the number 487 there are = 29 units error.For the number 488 there are = 157 units error.For the number 489 there are = 90 units error.For the number 490 there are = 13 units error.For the number 491 there are = 222 units error.For the number 492 there are = 1 units error.For the number 493 there are = 154 units error.For the number 494 there are = 167 units error.For the number 495 there are = 81 units error.For the number 496 there are = 93 units error.For the number 497 there are = 54 units error.For the number 498 there are = 45 units error.For the number 499 there are = 31 units error.For the number 500 there are = 4 units error.For the number 501 there are = 133 units error.For the number 502 there are = 42 units error.For the number 503 there are = 67 units error.For the number 504 there are = 95 units error.For the number 505 there are = 64 units error.For the number 506 there are = 47 units error.For the number 507 there are = 77 units error.For the number 508 there are = 57 units error.For the number 509 there are = 16 units error.For the number 510 there are = 34 units error.For the number 511 there are = 24 units error.For the number 512 there are = 40 units error.For the number 513 there are = 32 units error.For the number 514 there are = 34 units error.For the number 515 there are = 81 units error.

Page 21: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 516 there are = 40 units error.For the number 517 there are = 18 units error.For the number 518 there are = 164 units error.For the number 519 there are = 63 units error.For the number 520 there are = 50 units error.For the number 521 there are = 64 units error.For the number 522 there are = 66 units error.For the number 523 there are = 220 units error.For the number 524 there are = 94 units error.For the number 525 there are = 95 units error.For the number 526 there are = 85 units error.For the number 527 there are = 47 units error.For the number 528 there are = 38 units error.For the number 529 there are = 49 units error.For the number 530 there are = 6 units error.For the number 531 there are = 46 units error.For the number 532 there are = 11 units error.For the number 533 there are = 89 units error.For the number 534 there are = 23 units error.For the number 535 there are = 80 units error.For the number 536 there are = 54 units error.For the number 537 there are = 112 units error.For the number 538 there are = 65 units error.For the number 539 there are = 159 units error.For the number 540 there are = 127 units error.For the number 541 there are = 7 units error.For the number 542 there are = 5 units error.For the number 543 there are = 78 units error.For the number 544 there are = 21 units error.For the number 545 there are = 30 units error.For the number 546 there are = 58 units error.For the number 547 there are = 7 units error.For the number 548 there are = 161 units error.For the number 549 there are = 73 units error.For the number 550 there are = 98 units error.For the number 551 there are = 154 units error.For the number 552 there are = 68 units error.For the number 553 there are = 195 units error.For the number 554 there are = 54 units error.For the number 555 there are = 51 units error.For the number 556 there are = 85 units error.For the number 557 there are = 2 units error.For the number 558 there are = 26 units error.For the number 559 there are = 9 units error.For the number 560 there are = 69 units error.For the number 561 there are = 62 units error.For the number 562 there are = 109 units error.For the number 563 there are = 181 units error.For the number 564 there are = 43 units error.For the number 565 there are = 12 units error.For the number 566 there are = 45 units error.For the number 567 there are = 5 units error.

For the number 568 there are = 19 units error.For the number 569 there are = 47 units error.For the number 570 there are = 108 units error.For the number 571 there are = 6 units error.For the number 572 there are = 25 units error.For the number 573 there are = 83 units error.For the number 574 there are = 59 units error.For the number 575 there are = 77 units error.For the number 576 there are = 44 units error.For the number 577 there are = 37 units error.For the number 578 there are = 45 units error.For the number 579 there are = 160 units error.For the number 580 there are = 51 units error.For the number 581 there are = 122 units error.For the number 582 there are = 28 units error.For the number 583 there are = 58 units error.For the number 584 there are = 3 units error.For the number 585 there are = 142 units error.For the number 586 there are = 84 units error.For the number 587 there are = 125 units error.For the number 588 there are = 62 units error.For the number 589 there are = 56 units error.For the number 590 there are = 70 units error.For the number 591 there are = 57 units error.For the number 592 there are = 64 units error.For the number 593 there are = 106 units error.For the number 594 there are = 91 units error.For the number 595 there are = 58 units error.For the number 596 there are = 104 units error.For the number 597 there are = 51 units error.For the number 598 there are = 13 units error.For the number 599 there are = 81 units error.For the number 600 there are = 172 units error.For the number 601 there are = 60 units error.For the number 602 there are = 144 units error.For the number 603 there are = 112 units error.For the number 604 there are = 21 units error.For the number 605 there are = 99932 units error.For the number 606 there are = 164 units error.For the number 607 there are = 57 units error.For the number 608 there are = 104 units error.For the number 609 there are = 93 units error.For the number 610 there are = 75 units error.For the number 611 there are = 198 units error.For the number 612 there are = 71 units error.For the number 613 there are = 92 units error.For the number 614 there are = 42 units error.For the number 615 there are = 73 units error.For the number 616 there are = 79 units error.For the number 617 there are = 32 units error.For the number 618 there are = 88 units error.For the number 619 there are = 100 units error.

Page 22: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 620 there are = 10 units error.For the number 621 there are = 89 units error.For the number 622 there are = 35 units error.For the number 623 there are = 94 units error.For the number 624 there are = 113 units error.For the number 625 there are = 41 units error.For the number 626 there are = 75 units error.For the number 627 there are = 43 units error.For the number 628 there are = 1 units error.For the number 629 there are = 6 units error.For the number 630 there are = 10 units error.For the number 631 there are = 107 units error.For the number 632 there are = 135 units error.For the number 633 there are = 71 units error.For the number 634 there are = 99 units error.For the number 635 there are = 234 units error.For the number 636 there are = 95 units error.For the number 637 there are = 76 units error.For the number 638 there are = 92 units error.For the number 639 there are = 23 units error.For the number 640 there are = 45 units error.For the number 641 there are = 99 units error.For the number 642 there are = 31 units error.For the number 643 there are = 4 units error.For the number 644 there are = 87 units error.For the number 645 there are = 47 units error.For the number 646 there are = 27 units error.For the number 647 there are = 121 units error.For the number 648 there are = 202 units error.For the number 649 there are = 43 units error.For the number 650 there are = 68 units error.For the number 651 there are = 27 units error.For the number 652 there are = 210 units error.For the number 653 there are = 118 units error.For the number 654 there are = 24 units error.For the number 655 there are = 112 units error.For the number 656 there are = 144 units error.For the number 657 there are = 4 units error.For the number 658 there are = 49 units error.For the number 659 there are = 6 units error.For the number 660 there are = 141 units error.For the number 661 there are = 156 units error.For the number 662 there are = 82 units error.For the number 663 there are = 12 units error.For the number 664 there are = 63 units error.For the number 665 there are = 167 units error.For the number 666 there are = 19 units error.For the number 667 there are = 34 units error.For the number 668 there are = 15 units error.For the number 669 there are = 138 units error.For the number 670 there are = 55 units error.For the number 671 there are = 62 units error.

For the number 672 there are = 66 units error.For the number 673 there are = 127 units error.For the number 674 there are = 78 units error.For the number 675 there are = 109 units error.For the number 676 there are = 35 units error.For the number 677 there are = 86 units error.For the number 678 there are = 21 units error.For the number 679 there are = 89 units error.For the number 680 there are = 127 units error.For the number 681 there are = 43 units error.For the number 682 there are = 2 units error.For the number 683 there are = 181 units error.For the number 684 there are = 98 units error.For the number 685 there are = 125 units error.For the number 686 there are = 151 units error.For the number 687 there are = 52 units error.For the number 688 there are = 150 units error.For the number 689 there are = 55 units error.For the number 690 there are = 43 units error.For the number 691 there are = 96 units error.For the number 692 there are = 56 units error.For the number 693 there are = 57 units error.For the number 694 there are = 48 units error.For the number 695 there are = 5 units error.For the number 696 there are = 26 units error.For the number 697 there are = 167 units error.For the number 698 there are = 168 units error.For the number 699 there are = 79 units error.For the number 700 there are = 37 units error.For the number 701 there are = 14 units error.For the number 702 there are = 62 units error.For the number 703 there are = 92 units error.For the number 704 there are = 33 units error.For the number 705 there are = 133 units error.For the number 706 there are = 53 units error.For the number 707 there are = 5 units error.For the number 708 there are = 112 units error.For the number 709 there are = 105 units error.For the number 710 there are = 115 units error.For the number 711 there are = 68 units error.For the number 712 there are = 11 units error.For the number 713 there are = 116 units error.For the number 714 there are = 27 units error.For the number 715 there are = 94 units error.For the number 716 there are = 26 units error.For the number 717 there are = 101 units error.For the number 718 there are = 111 units error.For the number 719 there are = 4 units error.For the number 720 there are = 128 units error.For the number 721 there are = 20 units error.For the number 722 there are = 34 units error.For the number 723 there are = 96 units error.

Page 23: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 724 there are = 144 units error.For the number 725 there are = 59 units error.For the number 726 there are = 90 units error.For the number 727 there are = 88 units error.For the number 728 there are = 25 units error.For the number 729 there are = 142 units error.For the number 730 there are = 19 units error.For the number 731 there are = 3 units error.For the number 732 there are = 133 units error.For the number 733 there are = 74 units error.For the number 734 there are = 107 units error.For the number 735 there are = 27 units error.For the number 736 there are = 164 units error.For the number 737 there are = 150 units error.For the number 738 there are = 25 units error.For the number 739 there are = 37 units error.For the number 740 there are = 49 units error.For the number 741 there are = 42 units error.For the number 742 there are = 107 units error.For the number 743 there are = 173 units error.For the number 744 there are = 105 units error.For the number 745 there are = 175 units error.For the number 746 there are = 74 units error.For the number 747 there are = 131 units error.For the number 748 there are = 23 units error.For the number 749 there are = 56 units error.For the number 750 there are = 12 units error.For the number 751 there are = 37 units error.For the number 752 there are = 169 units error.For the number 753 there are = 258 units error.For the number 754 there are = 137 units error.For the number 755 there are = 18 units error.For the number 756 there are = 105 units error.For the number 757 there are = 24 units error.For the number 758 there are = 103 units error.For the number 759 there are = 9 units error.For the number 760 there are = 15 units error.For the number 761 there are = 38 units error.For the number 762 there are = 19 units error.For the number 763 there are = 55 units error.For the number 764 there are = 211 units error.For the number 765 there are = 211 units error.For the number 766 there are = 99823 units error.For the number 767 there are = 39 units error.For the number 768 there are = 99822 units error.For the number 769 there are = 99795 units error.For the number 770 there are = 71 units error.For the number 771 there are = 144 units error.For the number 772 there are = 145 units error.For the number 773 there are = 55 units error.For the number 774 there are = 10 units error.For the number 775 there are = 52 units error.

For the number 776 there are = 32 units error.For the number 777 there are = 131 units error.For the number 778 there are = 147 units error.For the number 779 there are = 61 units error.For the number 780 there are = 11 units error.For the number 781 there are = 10 units error.For the number 782 there are = 17 units error.For the number 783 there are = 1 units error.For the number 784 there are = 73 units error.For the number 785 there are = 75 units error.For the number 786 there are = 83 units error.For the number 787 there are = 181 units error.For the number 788 there are = 17 units error.For the number 789 there are = 136 units error.For the number 790 there are = 36 units error.For the number 791 there are = 27 units error.For the number 792 there are = 28 units error.For the number 793 there are = 52 units error.For the number 794 there are = 107 units error.For the number 795 there are = 76 units error.For the number 796 there are = 151 units error.For the number 797 there are = 51 units error.For the number 798 there are = 90 units error.For the number 799 there are = 69 units error.For the number 800 there are = 51 units error.For the number 801 there are = 113 units error.For the number 802 there are = 22 units error.For the number 803 there are = 106 units error.For the number 804 there are = 116 units error.For the number 805 there are = 40 units error.For the number 806 there are = 97 units error.For the number 807 there are = 33 units error.For the number 808 there are = 70 units error.For the number 809 there are = 27 units error.For the number 810 there are = 73 units error.For the number 811 there are = 77 units error.For the number 812 there are = 198 units error.For the number 813 there are = 90 units error.For the number 814 there are = 115 units error.For the number 815 there are = 90 units error.For the number 816 there are = 76 units error.For the number 817 there are = 79 units error.For the number 818 there are = 42 units error.For the number 819 there are = 134 units error.For the number 820 there are = 66 units error.For the number 821 there are = 196 units error.For the number 822 there are = 38 units error.For the number 823 there are = 81 units error.For the number 824 there are = 24 units error.For the number 825 there are = 214 units error.For the number 826 there are = 127 units error.For the number 827 there are = 30 units error.

Page 24: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 828 there are = 152 units error.For the number 829 there are = 62 units error.For the number 830 there are = 217 units error.For the number 831 there are = 57 units error.For the number 832 there are = 53 units error.For the number 833 there are = 10 units error.For the number 834 there are = 108 units error.For the number 835 there are = 34 units error.For the number 836 there are = 48 units error.For the number 837 there are = 49 units error.For the number 838 there are = 110 units error.For the number 839 there are = 83 units error.For the number 840 there are = 59 units error.For the number 841 there are = 60 units error.For the number 842 there are = 78 units error.For the number 843 there are = 21 units error.For the number 844 there are = 203 units error.For the number 845 there are = 61 units error.For the number 846 there are = 61 units error.For the number 847 there are = 75 units error.For the number 848 there are = 10 units error.For the number 849 there are = 96 units error.For the number 850 there are = 35 units error.For the number 851 there are = 127 units error.For the number 852 there are = 83 units error.For the number 853 there are = 162 units error.For the number 854 there are = 121 units error.For the number 855 there are = 254 units error.For the number 856 there are = 48 units error.For the number 857 there are = 4 units error.For the number 858 there are = 157 units error.For the number 859 there are = 99745 units error.For the number 860 there are = 241 units error.For the number 861 there are = 7 units error.For the number 862 there are = 194 units error.For the number 863 there are = 83 units error.For the number 864 there are = 26 units error.For the number 865 there are = 25 units error.For the number 866 there are = 321 units error.For the number 867 there are = 88 units error.For the number 868 there are = 204 units error.For the number 869 there are = 44 units error.For the number 870 there are = 26 units error.For the number 871 there are = 79 units error.For the number 872 there are = 14 units error.For the number 873 there are = 21 units error.For the number 874 there are = 49 units error.For the number 875 there are = 63 units error.For the number 876 there are = 57 units error.For the number 877 there are = 156 units error.For the number 878 there are = 92 units error.For the number 879 there are = 108 units error.

For the number 880 there are = 69 units error.For the number 881 there are = 158 units error.For the number 882 there are = 93 units error.For the number 883 there are = 42 units error.For the number 884 there are = 82 units error.For the number 885 there are = 108 units error.For the number 886 there are = 134 units error.For the number 887 there are = 101 units error.For the number 888 there are = 51 units error.For the number 889 there are = 17 units error.For the number 890 there are = 9 units error.

Page 25: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 900 there are = 217 units error.For the number 901 there are = 41 units error.For the number 902 there are = 167 units error.For the number 903 there are = 14 units error.For the number 904 there are = 166 units error.For the number 905 there are = 185 units error.For the number 906 there are = 73 units error.For the number 907 there are = 106 units error.For the number 908 there are = 147 units error.For the number 909 there are = 162 units error.For the number 910 there are = 132 units error.For the number 911 there are = 102 units error.For the number 912 there are = 88 units error.For the number 913 there are = 77 units error.For the number 914 there are = 117 units error.For the number 915 there are = 175 units error.For the number 916 there are = 146 units error.For the number 917 there are = 110 units error.For the number 918 there are = 96 units error.For the number 919 there are = 13 units error.For the number 920 there are = 41 units error.For the number 921 there are = 1 units error.For the number 922 there are = 3 units error.For the number 923 there are = 57 units error.For the number 924 there are = 93 units error.For the number 925 there are = 113 units error.For the number 926 there are = 96 units error.For the number 927 there are = 2 units error.For the number 928 there are = 132 units error.For the number 929 there are = 130 units error.For the number 930 there are = 55 units error.For the number 931 there are = 226 units error.For the number 932 there are = 20 units error.For the number 933 there are = 106 units error.For the number 934 there are = 23 units error.For the number 935 there are = 117 units error.For the number 936 there are = 163 units error.For the number 937 there are = 155 units error.For the number 938 there are = 26 units error.For the number 939 there are = 19 units error.For the number 940 there are = 327 units error.For the number 941 there are = 53 units error.For the number 942 there are = 101 units error.For the number 943 there are = 125 units error.For the number 944 there are = 19 units error.For the number 945 there are = 17 units error.For the number 946 there are = 219 units error.For the number 947 there are = 119 units error.For the number 948 there are = 47 units error.For the number 949 there are = 161 units error.For the number 950 there are = 58 units error.For the number 951 there are = 49 units error.

Page 26: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 952 there are = 182 units error.For the number 953 there are = 55 units error.For the number 954 there are = 103 units error.For the number 955 there are = 17 units error.For the number 956 there are = 102 units error.For the number 957 there are = 144 units error.For the number 958 there are = 97 units error.For the number 959 there are = 241 units error.For the number 960 there are = 20 units error.For the number 961 there are = 31 units error.For the number 962 there are = 69 units error.For the number 963 there are = 215 units error.For the number 964 there are = 128 units error.For the number 965 there are = 62 units error.For the number 966 there are = 102 units error.For the number 967 there are = 88 units error.For the number 968 there are = 40 units error.For the number 969 there are = 118 units error.For the number 970 there are = 198 units error.For the number 971 there are = 251 units error.For the number 972 there are = 9 units error.For the number 973 there are = 98 units error.For the number 974 there are = 132 units error.For the number 975 there are = 27 units error.For the number 976 there are = 83 units error.For the number 977 there are = 296 units error.For the number 978 there are = 11 units error.For the number 979 there are = 42 units error.For the number 980 there are = 1 units error.For the number 981 there are = 188 units error.For the number 982 there are = 94 units error.For the number 983 there are = 83 units error.For the number 984 there are = 171 units error.For the number 985 there are = 95 units error.For the number 986 there are = 109 units error.For the number 987 there are = 89 units error.For the number 988 there are = 107 units error.For the number 989 there are = 246 units error.For the number 990 there are = 1 units error.For the number 991 there are = 32 units error.For the number 992 there are = 53 units error.For the number 993 there are = 28 units error.For the number 994 there are = 136 units error.For the number 995 there are = 122 units error.For the number 996 there are = 44 units error.For the number 997 there are = 221 units error.For the number 998 there are = 95 units error.For the number 999 there are = 74 units error.For the number 1000 there are = 167 units error.For the number 1001 there are = 59 units error.For the number 1002 there are = 106 units error.For the number 1003 there are = 8 units error.

For the number 1004 there are = 169 units error.For the number 1005 there are = 143 units error.For the number 1006 there are = 268 units error.For the number 1007 there are = 153 units error.For the number 1008 there are = 27 units error.For the number 1009 there are = 76 units error.For the number 1010 there are = 36 units error.For the number 1011 there are = 3 units error.For the number 1012 there are = 94 units error.For the number 1013 there are = 114 units error.For the number 1014 there are = 101 units error.For the number 1015 there are = 106 units error.For the number 1016 there are = 116 units error.For the number 1017 there are = 111 units error.For the number 1018 there are = 94 units error.For the number 1019 there are = 58 units error.For the number 1020 there are = 125 units error.For the number 1021 there are = 16 units error.For the number 1022 there are = 183 units error.For the number 1023 there are = 306 units error.For the number 1024 there are = 132 units error.For the number 1025 there are = 18 units error.For the number 1026 there are = 19 units error.For the number 1027 there are = 59 units error.For the number 1028 there are = 153 units error.For the number 1029 there are = 76 units error.For the number 1030 there are = 301 units error.For the number 1031 there are = 31 units error.For the number 1032 there are = 115 units error.For the number 1033 there are = 19 units error.For the number 1034 there are = 18 units error.For the number 1035 there are = 85 units error.For the number 1036 there are = 66 units error.For the number 1037 there are = 162 units error.For the number 1038 there are = 53 units error.For the number 1039 there are = 107 units error.For the number 1040 there are = 20 units error.For the number 1041 there are = 76 units error.For the number 1042 there are = 90 units error.For the number 1043 there are = 39 units error.For the number 1044 there are = 162 units error.For the number 1045 there are = 61 units error.For the number 1046 there are = 106 units error.For the number 1047 there are = 233 units error.For the number 1048 there are = 1 units error.For the number 1049 there are = 5 units error.For the number 1050 there are = 32 units error.For the number 1051 there are = 92 units error.For the number 1052 there are = 115 units error.For the number 1053 there are = 5 units error.For the number 1054 there are = 5 units error.For the number 1055 there are = 198 units error.

Page 27: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 1056 there are = 29 units error.For the number 1057 there are = 134 units error.For the number 1058 there are = 1 units error.For the number 1059 there are = 52 units error.For the number 1060 there are = 113 units error.For the number 1061 there are = 164 units error.For the number 1062 there are = 92 units error.For the number 1063 there are = 41 units error.For the number 1064 there are = 59 units error.For the number 1065 there are = 55 units error.For the number 1066 there are = 149 units error.For the number 1067 there are = 97 units error.For the number 1068 there are = 139 units error.For the number 1069 there are = 84 units error.For the number 1070 there are = 154 units error.For the number 1071 there are = 82 units error.For the number 1072 there are = 113 units error.For the number 1073 there are = 35 units error.For the number 1074 there are = 191 units error.For the number 1075 there are = 98 units error.For the number 1076 there are = 173 units error.For the number 1077 there are = 137 units error.For the number 1078 there are = 58 units error.For the number 1079 there are = 105 units error.For the number 1080 there are = 143 units error.For the number 1081 there are = 332 units error.For the number 1082 there are = 8 units error.For the number 1083 there are = 125 units error.For the number 1084 there are = 85 units error.For the number 1085 there are = 116 units error.For the number 1086 there are = 113 units error.For the number 1087 there are = 285 units error.For the number 1088 there are = 33 units error.For the number 1089 there are = 47 units error.For the number 1090 there are = 140 units error.For the number 1091 there are = 336 units error.For the number 1092 there are = 209 units error.For the number 1093 there are = 34 units error.For the number 1094 there are = 15 units error.For the number 1095 there are = 131 units error.For the number 1096 there are = 81 units error.For the number 1097 there are = 111 units error.For the number 1098 there are = 13 units error.For the number 1099 there are = 115 units error.For the number 1100 there are = 119 units error.For the number 1101 there are = 69 units error.For the number 1102 there are = 255 units error.For the number 1103 there are = 89 units error.For the number 1104 there are = 2 units error.For the number 1105 there are = 24 units error.For the number 1106 there are = 117 units error.For the number 1107 there are = 185 units error.

For the number 1108 there are = 228 units error.For the number 1109 there are = 44 units error.For the number 1110 there are = 118 units error.For the number 1111 there are = 304 units error.For the number 1112 there are = 77 units error.For the number 1113 there are = 2 units error.For the number 1114 there are = 1 units error.For the number 1115 there are = 55 units error.For the number 1116 there are = 86 units error.For the number 1117 there are = 98 units error.For the number 1118 there are = 61 units error.For the number 1119 there are = 9 units error.For the number 1120 there are = 123 units error.For the number 1121 there are = 65 units error.For the number 1122 there are = 286 units error.For the number 1123 there are = 132 units error.For the number 1124 there are = 50 units error.For the number 1125 there are = 49 units error.For the number 1126 there are = 73 units error.For the number 1127 there are = 41 units error.For the number 1128 there are = 17 units error.For the number 1129 there are = 173 units error.For the number 1130 there are = 41 units error.For the number 1131 there are = 96 units error.For the number 1132 there are = 140 units error.For the number 1133 there are = 194 units error.For the number 1134 there are = 135 units error.For the number 1135 there are = 81 units error.For the number 1136 there are = 204 units error.For the number 1137 there are = 201 units error.For the number 1138 there are = 30 units error.For the number 1139 there are = 225 units error.For the number 1140 there are = 11 units error.For the number 1141 there are = 30 units error.For the number 1142 there are = 144 units error.For the number 1143 there are = 97 units error.For the number 1144 there are = 242 units error.For the number 1145 there are = 71 units error.For the number 1146 there are = 239 units error.For the number 1147 there are = 42 units error.For the number 1148 there are = 115 units error.For the number 1149 there are = 82 units error.For the number 1150 there are = 243 units error.For the number 1151 there are = 182 units error.For the number 1152 there are = 197 units error.For the number 1153 there are = 51 units error.For the number 1154 there are = 109 units error.For the number 1155 there are = 346 units error.For the number 1156 there are = 62 units error.For the number 1157 there are = 107 units error.For the number 1158 there are = 113 units error.For the number 1159 there are = 186 units error.

Page 28: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 1160 there are = 82 units error.For the number 1161 there are = 52 units error.For the number 1162 there are = 227 units error.For the number 1163 there are = 261 units error.For the number 1164 there are = 59 units error.For the number 1165 there are = 69 units error.For the number 1166 there are = 115 units error.For the number 1167 there are = 39 units error.For the number 1168 there are = 80 units error.For the number 1169 there are = 127 units error.For the number 1170 there are = 87 units error.For the number 1171 there are = 174 units error.For the number 1172 there are = 102 units error.For the number 1173 there are = 8 units error.For the number 1174 there are = 168 units error.For the number 1175 there are = 92 units error.For the number 1176 there are = 212 units error.For the number 1177 there are = 35 units error.For the number 1178 there are = 204 units error.For the number 1179 there are = 343 units error.For the number 1180 there are = 5 units error.For the number 1181 there are = 58 units error.For the number 1182 there are = 21 units error.For the number 1183 there are = 136 units error.For the number 1184 there are = 65 units error.For the number 1185 there are = 13 units error.For the number 1186 there are = 137 units error.For the number 1187 there are = 271 units error.For the number 1188 there are = 165 units error.For the number 1189 there are = 134 units error.For the number 1190 there are = 16 units error.For the number 1191 there are = 97 units error.For the number 1192 there are = 178 units error.For the number 1193 there are = 292 units error.For the number 1194 there are = 28 units error.For the number 1195 there are = 112 units error.For the number 1196 there are = 170 units error.For the number 1197 there are = 72 units error.For the number 1198 there are = 108 units error.For the number 1199 there are = 55 units error.For the number 1200 there are = 200 units error.For the number 1201 there are = 132 units error.For the number 1202 there are = 49 units error.For the number 1203 there are = 114 units error.For the number 1204 there are = 1 units error.For the number 1205 there are = 188 units error.For the number 1206 there are = 281 units error.For the number 1207 there are = 40 units error.For the number 1208 there are = 116 units error.For the number 1209 there are = 127 units error.For the number 1210 there are = 23 units error.For the number 1211 there are = 20 units error.

For the number 1212 there are = 67 units error.For the number 1213 there are = 151 units error.For the number 1214 there are = 18 units error.For the number 1215 there are = 73 units error.For the number 1216 there are = 56 units error.For the number 1217 there are = 242 units error.For the number 1218 there are = 84 units error.For the number 1219 there are = 27 units error.For the number 1220 there are = 54 units error.For the number 1221 there are = 16 units error.For the number 1222 there are = 127 units error.For the number 1223 there are = 17 units error.For the number 1224 there are = 82 units error.For the number 1225 there are = 105 units error.For the number 1226 there are = 310 units error.For the number 1227 there are = 119 units error.For the number 1228 there are = 27 units error.For the number 1229 there are = 166 units error.For the number 1230 there are = 110 units error.For the number 1231 there are = 97 units error.For the number 1232 there are = 55 units error.For the number 1233 there are = 107 units error.For the number 1234 there are = 91 units error.For the number 1235 there are = 113 units error.For the number 1236 there are = 84 units error.For the number 1237 there are = 27 units error.For the number 1238 there are = 81 units error.For the number 1239 there are = 126 units error.For the number 1240 there are = 39 units error.For the number 1241 there are = 178 units error.For the number 1242 there are = 54 units error.For the number 1243 there are = 55 units error.For the number 1244 there are = 0 units error.For the number 1245 there are = 55 units error.For the number 1246 there are = 198 units error.For the number 1247 there are = 467 units error.For the number 1248 there are = 113 units error.For the number 1249 there are = 198 units error.For the number 1250 there are = 16 units error.For the number 1251 there are = 195 units error.For the number 1252 there are = 14 units error.For the number 1253 there are = 120 units error.For the number 1254 there are = 36 units error.For the number 1255 there are = 90 units error.For the number 1256 there are = 185 units error.For the number 1257 there are = 217 units error.For the number 1258 there are = 245 units error.For the number 1259 there are = 17 units error.For the number 1260 there are = 67 units error.For the number 1261 there are = 11 units error.For the number 1262 there are = 75 units error.For the number 1263 there are = 58 units error.

Page 29: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 1264 there are = 63 units error.For the number 1265 there are = 140 units error.For the number 1266 there are = 6 units error.For the number 1267 there are = 72 units error.For the number 1268 there are = 184 units error.For the number 1269 there are = 33 units error.For the number 1270 there are = 239 units error.For the number 1271 there are = 150 units error.For the number 1272 there are = 124 units error.For the number 1273 there are = 128 units error.For the number 1274 there are = 120 units error.For the number 1275 there are = 195 units error.For the number 1276 there are = 19 units error.For the number 1277 there are = 11 units error.For the number 1278 there are = 202 units error.For the number 1279 there are = 30 units error.For the number 1280 there are = 4 units error.For the number 1281 there are = 150 units error.For the number 1282 there are = 130 units error.For the number 1283 there are = 184 units error.For the number 1284 there are = 12 units error.For the number 1285 there are = 248 units error.For the number 1286 there are = 40 units error.For the number 1287 there are = 22 units error.For the number 1288 there are = 238 units error.For the number 1289 there are = 92 units error.For the number 1290 there are = 44 units error.For the number 1291 there are = 186 units error.For the number 1292 there are = 39 units error.For the number 1293 there are = 151 units error.For the number 1294 there are = 226 units error.For the number 1295 there are = 2 units error.For the number 1296 there are = 71 units error.For the number 1297 there are = 158 units error.For the number 1298 there are = 185 units error.For the number 1299 there are = 53 units error.For the number 1300 there are = 44 units error.For the number 1301 there are = 157 units error.For the number 1302 there are = 325 units error.For the number 1303 there are = 51 units error.For the number 1304 there are = 139 units error.For the number 1305 there are = 65 units error.For the number 1306 there are = 24 units error.For the number 1307 there are = 15 units error.For the number 1308 there are = 83 units error.For the number 1309 there are = 98 units error.For the number 1310 there are = 102 units error.For the number 1311 there are = 28 units error.For the number 1312 there are = 15 units error.For the number 1313 there are = 190 units error.For the number 1314 there are = 65 units error.For the number 1315 there are = 93 units error.

For the number 1316 there are = 139 units error.For the number 1317 there are = 304 units error.For the number 1318 there are = 61 units error.For the number 1319 there are = 54 units error.For the number 1320 there are = 52 units error.For the number 1321 there are = 39 units error.For the number 1322 there are = 225 units error.For the number 1323 there are = 16 units error.For the number 1324 there are = 97 units error.For the number 1325 there are = 88 units error.For the number 1326 there are = 50 units error.For the number 1327 there are = 96 units error.For the number 1328 there are = 39 units error.For the number 1329 there are = 200 units error.For the number 1330 there are = 7 units error.For the number 1331 there are = 72 units error.For the number 1332 there are = 270 units error.For the number 1333 there are = 72 units error.For the number 1334 there are = 38 units error.For the number 1335 there are = 204 units error.For the number 1336 there are = 172 units error.For the number 1337 there are = 61 units error.For the number 1338 there are = 42 units error.For the number 1339 there are = 48 units error.For the number 1340 there are = 163 units error.For the number 1341 there are = 254 units error.For the number 1342 there are = 87 units error.For the number 1343 there are = 229 units error.For the number 1344 there are = 178 units error.For the number 1345 there are = 75 units error.For the number 1346 there are = 67 units error.For the number 1347 there are = 189 units error.For the number 1348 there are = 13 units error.For the number 1349 there are = 137 units error.For the number 1350 there are = 201 units error.For the number 1351 there are = 160 units error.For the number 1352 there are = 309 units error.For the number 1353 there are = 1 units error.For the number 1354 there are = 45 units error.For the number 1355 there are = 2 units error.For the number 1356 there are = 318 units error.For the number 1357 there are = 8 units error.For the number 1358 there are = 55 units error.For the number 1359 there are = 50 units error.For the number 1360 there are = 28 units error.For the number 1361 there are = 161 units error.For the number 1362 there are = 187 units error.For the number 1363 there are = 75 units error.For the number 1364 there are = 74 units error.For the number 1365 there are = 103 units error.For the number 1366 there are = 196 units error.For the number 1367 there are = 132 units error.

Page 30: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 1368 there are = 64 units error.For the number 1369 there are = 270 units error.For the number 1370 there are = 112 units error.For the number 1371 there are = 59 units error.For the number 1372 there are = 150 units error.For the number 1373 there are = 31 units error.For the number 1374 there are = 100 units error.For the number 1375 there are = 176 units error.For the number 1376 there are = 183 units error.For the number 1377 there are = 9 units error.For the number 1378 there are = 16 units error.For the number 1379 there are = 14 units error.For the number 1380 there are = 135 units error.For the number 1381 there are = 83 units error.For the number 1382 there are = 71 units error.For the number 1383 there are = 18 units error.For the number 1384 there are = 47 units error.For the number 1385 there are = 61 units error.For the number 1386 there are = 99 units error.For the number 1387 there are = 168 units error.For the number 1388 there are = 91 units error.For the number 1389 there are = 0 units error.For the number 1390 there are = 106 units error.For the number 1391 there are = 120 units error.For the number 1392 there are = 4 units error.For the number 1393 there are = 2 units error.For the number 1394 there are = 154 units error.For the number 1395 there are = 165 units error.For the number 1396 there are = 147 units error.For the number 1397 there are = 148 units error.For the number 1398 there are = 2 units error.For the number 1399 there are = 111 units error.For the number 1400 there are = 141 units error.For the number 1401 there are = 60 units error.For the number 1402 there are = 133 units error.For the number 1403 there are = 110 units error.For the number 1404 there are = 62 units error.For the number 1405 there are = 79 units error.For the number 1406 there are = 143 units error.For the number 1407 there are = 130 units error.For the number 1408 there are = 147 units error.For the number 1409 there are = 90 units error.For the number 1410 there are = 111 units error.For the number 1411 there are = 124 units error.For the number 1412 there are = 207 units error.For the number 1413 there are = 140 units error.For the number 1414 there are = 56 units error.For the number 1415 there are = 216 units error.For the number 1416 there are = 171 units error.For the number 1417 there are = 139 units error.For the number 1418 there are = 250 units error.For the number 1419 there are = 75 units error.

For the number 1420 there are = 75 units error.For the number 1421 there are = 84 units error.For the number 1422 there are = 241 units error.For the number 1423 there are = 72 units error.For the number 1424 there are = 272 units error.For the number 1425 there are = 29 units error.For the number 1426 there are = 132 units error.For the number 1427 there are = 89 units error.For the number 1428 there are = 55 units error.For the number 1429 there are = 121 units error.For the number 1430 there are = 136 units error.For the number 1431 there are = 8 units error.For the number 1432 there are = 129 units error.For the number 1433 there are = 234 units error.For the number 1434 there are = 70 units error.For the number 1435 there are = 115 units error.For the number 1436 there are = 145 units error.For the number 1437 there are = 179 units error.For the number 1438 there are = 22 units error.For the number 1439 there are = 93 units error.For the number 1440 there are = 102 units error.For the number 1441 there are = 138 units error.For the number 1442 there are = 108 units error.For the number 1443 there are = 342 units error.For the number 1444 there are = 277 units error.For the number 1445 there are = 162 units error.For the number 1446 there are = 246 units error.For the number 1447 there are = 51 units error.For the number 1448 there are = 43 units error.For the number 1449 there are = 78 units error.For the number 1450 there are = 253 units error.For the number 1451 there are = 147 units error.For the number 1452 there are = 101 units error.For the number 1453 there are = 69 units error.For the number 1454 there are = 74 units error.For the number 1455 there are = 10 units error.For the number 1456 there are = 287 units error.For the number 1457 there are = 86 units error.For the number 1458 there are = 93 units error.For the number 1459 there are = 42 units error.For the number 1460 there are = 165 units error.For the number 1461 there are = 10 units error.For the number 1462 there are = 27 units error.For the number 1463 there are = 18 units error.For the number 1464 there are = 89 units error.For the number 1465 there are = 42 units error.For the number 1466 there are = 167 units error.For the number 1467 there are = 26 units error.For the number 1468 there are = 125 units error.For the number 1469 there are = 14 units error.For the number 1470 there are = 48 units error.For the number 1471 there are = 125 units error.

Page 31: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 1472 there are = 194 units error.For the number 1473 there are = 54 units error.For the number 1474 there are = 131 units error.For the number 1475 there are = 168 units error.For the number 1476 there are = 54 units error.For the number 1477 there are = 65 units error.For the number 1478 there are = 69 units error.For the number 1479 there are = 53 units error.For the number 1480 there are = 200 units error.For the number 1481 there are = 245 units error.For the number 1482 there are = 114 units error.For the number 1483 there are = 45 units error.For the number 1484 there are = 248 units error.For the number 1485 there are = 267 units error.For the number 1486 there are = 44 units error.For the number 1487 there are = 265 units error.For the number 1488 there are = 162 units error.For the number 1489 there are = 241 units error.For the number 1490 there are = 21 units error.For the number 1491 there are = 23 units error.For the number 1492 there are = 315 units error.For the number 1493 there are = 242 units error.For the number 1494 there are = 17 units error.For the number 1495 there are = 113 units error.For the number 1496 there are = 174 units error.For the number 1497 there are = 266 units error.For the number 1498 there are = 161 units error.For the number 1499 there are = 191 units error.For the number 1500 there are = 65 units error.For the number 1501 there are = 19 units error.For the number 1502 there are = 220 units error.For the number 1503 there are = 65 units error.For the number 1504 there are = 51 units error.For the number 1505 there are = 244 units error.For the number 1506 there are = 9 units error.For the number 1507 there are = 313 units error.For the number 1508 there are = 162 units error.For the number 1509 there are = 156 units error.For the number 1510 there are = 15 units error.For the number 1511 there are = 106 units error.For the number 1512 there are = 127 units error.For the number 1513 there are = 176 units error.For the number 1514 there are = 116 units error.For the number 1515 there are = 6 units error.For the number 1516 there are = 63 units error.For the number 1517 there are = 21 units error.For the number 1518 there are = 35 units error.For the number 1519 there are = 147 units error.For the number 1520 there are = 260 units error.For the number 1521 there are = 460 units error.For the number 1522 there are = 82 units error.For the number 1523 there are = 125 units error.

For the number 1524 there are = 200 units error.For the number 1525 there are = 44 units error.For the number 1526 there are = 100 units error.For the number 1527 there are = 100 units error.For the number 1528 there are = 158 units error.For the number 1529 there are = 94 units error.For the number 1530 there are = 23 units error.For the number 1531 there are = 118 units error.For the number 1532 there are = 63 units error.For the number 1533 there are = 189 units error.For the number 1534 there are = 167 units error.For the number 1535 there are = 339 units error.For the number 1536 there are = 9 units error.For the number 1537 there are = 26 units error.For the number 1538 there are = 40 units error.For the number 1539 there are = 39 units error.For the number 1540 there are = 2 units error.For the number 1541 there are = 21 units error.For the number 1542 there are = 74 units error.For the number 1543 there are = 113 units error.For the number 1544 there are = 157 units error.For the number 1545 there are = 11 units error.For the number 1546 there are = 1 units error.For the number 1547 there are = 165 units error.For the number 1548 there are = 359 units error.For the number 1549 there are = 29 units error.For the number 1550 there are = 296 units error.For the number 1551 there are = 54 units error.For the number 1552 there are = 161 units error.For the number 1553 there are = 68 units error.For the number 1554 there are = 223 units error.For the number 1555 there are = 146 units error.For the number 1556 there are = 272 units error.For the number 1557 there are = 163 units error.For the number 1558 there are = 90 units error.For the number 1559 there are = 218 units error.For the number 1560 there are = 90 units error.For the number 1561 there are = 251 units error.For the number 1562 there are = 26 units error.For the number 1563 there are = 146 units error.For the number 1564 there are = 129 units error.For the number 1565 there are = 52 units error.For the number 1566 there are = 71 units error.For the number 1567 there are = 170 units error.For the number 1568 there are = 42 units error.For the number 1569 there are = 130 units error.For the number 1570 there are = 119 units error.For the number 1571 there are = 189 units error.For the number 1572 there are = 57 units error.For the number 1573 there are = 66 units error.For the number 1574 there are = 9 units error.For the number 1575 there are = 130 units error.

Page 32: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 1576 there are = 76 units error.For the number 1577 there are = 111 units error.For the number 1578 there are = 189 units error.For the number 1579 there are = 3 units error.For the number 1580 there are = 257 units error.For the number 1581 there are = 122 units error.For the number 1582 there are = 38 units error.For the number 1583 there are = 19 units error.For the number 1584 there are = 108 units error.For the number 1585 there are = 204 units error.For the number 1586 there are = 277 units error.For the number 1587 there are = 34 units error.For the number 1588 there are = 129 units error.For the number 1589 there are = 93 units error.For the number 1590 there are = 89 units error.For the number 1591 there are = 9 units error.For the number 1592 there are = 127 units error.For the number 1593 there are = 136 units error.For the number 1594 there are = 47 units error.For the number 1595 there are = 117 units error.For the number 1596 there are = 25 units error.For the number 1597 there are = 90 units error.For the number 1598 there are = 204 units error.For the number 1599 there are = 216 units error.For the number 1600 there are = 24 units error.For the number 1601 there are = 288 units error.For the number 1602 there are = 251 units error.For the number 1603 there are = 72 units error.For the number 1604 there are = 80 units error.For the number 1605 there are = 373 units error.For the number 1606 there are = 78 units error.For the number 1607 there are = 114 units error.For the number 1608 there are = 216 units error.For the number 1609 there are = 68 units error.For the number 1610 there are = 3 units error.For the number 1611 there are = 196 units error.For the number 1612 there are = 17 units error.For the number 1613 there are = 38 units error.For the number 1614 there are = 105 units error.For the number 1615 there are = 164 units error.For the number 1616 there are = 4 units error.For the number 1617 there are = 13 units error.For the number 1618 there are = 243 units error.For the number 1619 there are = 159 units error.For the number 1620 there are = 68 units error.For the number 1621 there are = 83 units error.For the number 1622 there are = 81 units error.For the number 1623 there are = 85 units error.For the number 1624 there are = 172 units error.For the number 1625 there are = 85 units error.For the number 1626 there are = 33 units error.For the number 1627 there are = 248 units error.

For the number 1628 there are = 157 units error.For the number 1629 there are = 142 units error.For the number 1630 there are = 161 units error.For the number 1631 there are = 135 units error.For the number 1632 there are = 56 units error.For the number 1633 there are = 105 units error.For the number 1634 there are = 25 units error.For the number 1635 there are = 26 units error.For the number 1636 there are = 155 units error.For the number 1637 there are = 214 units error.For the number 1638 there are = 189 units error.For the number 1639 there are = 230 units error.For the number 1640 there are = 228 units error.For the number 1641 there are = 47 units error.For the number 1642 there are = 105 units error.For the number 1643 there are = 123 units error.For the number 1644 there are = 215 units error.For the number 1645 there are = 1 units error.For the number 1646 there are = 204 units error.For the number 1647 there are = 112 units error.For the number 1648 there are = 143 units error.For the number 1649 there are = 150 units error.For the number 1650 there are = 0 units error.For the number 1651 there are = 249 units error.For the number 1652 there are = 16 units error.For the number 1653 there are = 29 units error.For the number 1654 there are = 189 units error.For the number 1655 there are = 180 units error.For the number 1656 there are = 157 units error.For the number 1657 there are = 77 units error.For the number 1658 there are = 21 units error.For the number 1659 there are = 1 units error.For the number 1660 there are = 101 units error.For the number 1661 there are = 45 units error.For the number 1662 there are = 252 units error.For the number 1663 there are = 313 units error.For the number 1664 there are = 275 units error.For the number 1665 there are = 64 units error.For the number 1666 there are = 189 units error.For the number 1667 there are = 31 units error.For the number 1668 there are = 103 units error.For the number 1669 there are = 98 units error.For the number 1670 there are = 129 units error.For the number 1671 there are = 73 units error.For the number 1672 there are = 77 units error.For the number 1673 there are = 50 units error.For the number 1674 there are = 85 units error.For the number 1675 there are = 130 units error.For the number 1676 there are = 52 units error.For the number 1677 there are = 149 units error.For the number 1678 there are = 146 units error.For the number 1679 there are = 14 units error.

Page 33: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 1680 there are = 68 units error.For the number 1681 there are = 28 units error.For the number 1682 there are = 67 units error.For the number 1683 there are = 110 units error.For the number 1684 there are = 117 units error.For the number 1685 there are = 116 units error.For the number 1686 there are = 87 units error.For the number 1687 there are = 5 units error.For the number 1688 there are = 20 units error.For the number 1689 there are = 227 units error.For the number 1690 there are = 187 units error.For the number 1691 there are = 62 units error.For the number 1692 there are = 19 units error.For the number 1693 there are = 271 units error.For the number 1694 there are = 5 units error.For the number 1695 there are = 42 units error.For the number 1696 there are = 53 units error.For the number 1697 there are = 94 units error.For the number 1698 there are = 53 units error.For the number 1699 there are = 161 units error.For the number 1700 there are = 201 units error.For the number 1701 there are = 278 units error.For the number 1702 there are = 113 units error.For the number 1703 there are = 18 units error.For the number 1704 there are = 89 units error.For the number 1705 there are = 107 units error.For the number 1706 there are = 12 units error.For the number 1707 there are = 186 units error.For the number 1708 there are = 124 units error.For the number 1709 there are = 63 units error.For the number 1710 there are = 132 units error.For the number 1711 there are = 232 units error.For the number 1712 there are = 362 units error.For the number 1713 there are = 146 units error.For the number 1714 there are = 69 units error.For the number 1715 there are = 5 units error.For the number 1716 there are = 78 units error.For the number 1717 there are = 57 units error.For the number 1718 there are = 94 units error.For the number 1719 there are = 75 units error.For the number 1720 there are = 233 units error.For the number 1721 there are = 68 units error.For the number 1722 there are = 137 units error.For the number 1723 there are = 74 units error.For the number 1724 there are = 164 units error.For the number 1725 there are = 19 units error.For the number 1726 there are = 11 units error.For the number 1727 there are = 100 units error.For the number 1728 there are = 130 units error.For the number 1729 there are = 120 units error.For the number 1730 there are = 115 units error.For the number 1731 there are = 107 units error.

For the number 1732 there are = 252 units error.For the number 1733 there are = 89 units error.For the number 1734 there are = 125 units error.For the number 1735 there are = 4 units error.For the number 1736 there are = 62 units error.For the number 1737 there are = 50 units error.For the number 1738 there are = 213 units error.For the number 1739 there are = 10 units error.For the number 1740 there are = 16 units error.For the number 1741 there are = 38 units error.For the number 1742 there are = 125 units error.For the number 1743 there are = 96 units error.For the number 1744 there are = 61 units error.For the number 1745 there are = 457 units error.For the number 1746 there are = 186 units error.For the number 1747 there are = 222 units error.For the number 1748 there are = 69 units error.For the number 1749 there are = 134 units error.For the number 1750 there are = 242 units error.For the number 1751 there are = 131 units error.For the number 1752 there are = 80 units error.For the number 1753 there are = 264 units error.For the number 1754 there are = 16 units error.For the number 1755 there are = 87 units error.For the number 1756 there are = 8 units error.For the number 1757 there are = 201 units error.For the number 1758 there are = 169 units error.For the number 1759 there are = 33 units error.For the number 1760 there are = 93 units error.For the number 1761 there are = 142 units error.For the number 1762 there are = 200 units error.For the number 1763 there are = 367 units error.For the number 1764 there are = 138 units error.For the number 1765 there are = 118 units error.For the number 1766 there are = 284 units error.For the number 1767 there are = 5 units error.For the number 1768 there are = 36 units error.For the number 1769 there are = 189 units error.For the number 1770 there are = 75 units error.For the number 1771 there are = 150 units error.For the number 1772 there are = 86 units error.For the number 1773 there are = 34 units error.For the number 1774 there are = 0 units error.For the number 1775 there are = 0 units error.For the number 1776 there are = 272 units error.For the number 1777 there are = 101 units error.For the number 1778 there are = 150 units error.For the number 1779 there are = 28 units error.For the number 1780 there are = 126 units error.For the number 1781 there are = 234 units error.For the number 1782 there are = 91 units error.For the number 1783 there are = 256 units error.

Page 34: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 1784 there are = 203 units error.For the number 1785 there are = 16 units error.For the number 1786 there are = 77 units error.For the number 1787 there are = 25 units error.For the number 1788 there are = 7 units error.For the number 1789 there are = 183 units error.For the number 1790 there are = 34 units error.For the number 1791 there are = 126 units error.For the number 1792 there are = 128 units error.For the number 1793 there are = 268 units error.For the number 1794 there are = 139 units error.For the number 1795 there are = 157 units error.For the number 1796 there are = 86 units error.For the number 1797 there are = 344 units error.For the number 1798 there are = 127 units error.For the number 1799 there are = 246 units error.For the number 1800 there are = 39 units error.For the number 1801 there are = 250 units error.For the number 1802 there are = 314 units error.For the number 1803 there are = 109 units error.For the number 1804 there are = 151 units error.For the number 1805 there are = 8 units error.For the number 1806 there are = 99 units error.For the number 1807 there are = 125 units error.For the number 1808 there are = 119 units error.For the number 1809 there are = 208 units error.For the number 1810 there are = 258 units error.For the number 1811 there are = 112 units error.For the number 1812 there are = 157 units error.For the number 1813 there are = 6 units error.For the number 1814 there are = 205 units error.For the number 1815 there are = 2 units error.For the number 1816 there are = 195 units error.For the number 1817 there are = 30 units error.For the number 1818 there are = 60 units error.For the number 1819 there are = 127 units error.For the number 1820 there are = 251 units error.For the number 1821 there are = 77 units error.For the number 1822 there are = 82 units error.For the number 1823 there are = 292 units error.For the number 1824 there are = 5 units error.For the number 1825 there are = 77 units error.For the number 1826 there are = 78 units error.For the number 1827 there are = 234 units error.For the number 1828 there are = 151 units error.For the number 1829 there are = 16 units error.For the number 1830 there are = 228 units error.For the number 1831 there are = 37 units error.For the number 1832 there are = 241 units error.For the number 1833 there are = 174 units error.For the number 1834 there are = 98 units error.For the number 1835 there are = 200 units error.

For the number 1836 there are = 160 units error.For the number 1837 there are = 8 units error.For the number 1838 there are = 74 units error.For the number 1839 there are = 260 units error.For the number 1840 there are = 158 units error.For the number 1841 there are = 50 units error.For the number 1842 there are = 449 units error.For the number 1843 there are = 31 units error.For the number 1844 there are = 332 units error.For the number 1845 there are = 33 units error.For the number 1846 there are = 220 units error.For the number 1847 there are = 140 units error.For the number 1848 there are = 209 units error.For the number 1849 there are = 225 units error.For the number 1850 there are = 277 units error.For the number 1851 there are = 113 units error.For the number 1852 there are = 157 units error.For the number 1853 there are = 117 units error.For the number 1854 there are = 88 units error.For the number 1855 there are = 27 units error.For the number 1856 there are = 62 units error.For the number 1857 there are = 44 units error.For the number 1858 there are = 68 units error.For the number 1859 there are = 101 units error.For the number 1860 there are = 8 units error.For the number 1861 there are = 32 units error.For the number 1862 there are = 48 units error.For the number 1863 there are = 288 units error.For the number 1864 there are = 103 units error.For the number 1865 there are = 144 units error.For the number 1866 there are = 52 units error.For the number 1867 there are = 92 units error.For the number 1868 there are = 228 units error.For the number 1869 there are = 148 units error.For the number 1870 there are = 34 units error.For the number 1871 there are = 354 units error.For the number 1872 there are = 326 units error.For the number 1873 there are = 91 units error.For the number 1874 there are = 138 units error.For the number 1875 there are = 271 units error.For the number 1876 there are = 68 units error.For the number 1877 there are = 236 units error.For the number 1878 there are = 20 units error.For the number 1879 there are = 226 units error.For the number 1880 there are = 160 units error.For the number 1881 there are = 41 units error.For the number 1882 there are = 275 units error.For the number 1883 there are = 172 units error.For the number 1884 there are = 93 units error.For the number 1885 there are = 120 units error.For the number 1886 there are = 68 units error.For the number 1887 there are = 113 units error.

Page 35: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 1888 there are = 22 units error.For the number 1889 there are = 426 units error.For the number 1890 there are = 6 units error.For the number 1891 there are = 70 units error.For the number 1892 there are = 173 units error.For the number 1893 there are = 118 units error.For the number 1894 there are = 294 units error.For the number 1895 there are = 18 units error.For the number 1896 there are = 299 units error.For the number 1897 there are = 209 units error.For the number 1898 there are = 158 units error.For the number 1899 there are = 166 units error.For the number 1900 there are = 119 units error.For the number 1901 there are = 158 units error.For the number 1902 there are = 102 units error.For the number 1903 there are = 133 units error.For the number 1904 there are = 290 units error.For the number 1905 there are = 332 units error.For the number 1906 there are = 102 units error.For the number 1907 there are = 189 units error.For the number 1908 there are = 10 units error.For the number 1909 there are = 174 units error.For the number 1910 there are = 162 units error.For the number 1911 there are = 118 units error.For the number 1912 there are = 160 units error.For the number 1913 there are = 79 units error.For the number 1914 there are = 203 units error.For the number 1915 there are = 45 units error.For the number 1916 there are = 171 units error.For the number 1917 there are = 210 units error.For the number 1918 there are = 165 units error.For the number 1919 there are = 202 units error.For the number 1920 there are = 245 units error.For the number 1921 there are = 6 units error.For the number 1922 there are = 76 units error.For the number 1923 there are = 251 units error.For the number 1924 there are = 523 units error.For the number 1925 there are = 224 units error.For the number 1926 there are = 229 units error.For the number 1927 there are = 121 units error.For the number 1928 there are = 35 units error.For the number 1929 there are = 201 units error.For the number 1930 there are = 265 units error.For the number 1931 there are = 82 units error.For the number 1932 there are = 70 units error.For the number 1933 there are = 419 units error.For the number 1934 there are = 132 units error.For the number 1935 there are = 112 units error.For the number 1936 there are = 181 units error.For the number 1937 there are = 87 units error.For the number 1938 there are = 116 units error.For the number 1939 there are = 191 units error.

For the number 1940 there are = 192 units error.For the number 1941 there are = 276 units error.For the number 1942 there are = 13 units error.For the number 1943 there are = 49 units error.For the number 1944 there are = 133 units error.For the number 1945 there are = 7 units error.For the number 1946 there are = 131 units error.For the number 1947 there are = 221 units error.For the number 1948 there are = 176 units error.For the number 1949 there are = 140 units error.For the number 1950 there are = 25 units error.For the number 1951 there are = 86 units error.For the number 1952 there are = 158 units error.For the number 1953 there are = 31 units error.For the number 1954 there are = 81 units error.For the number 1955 there are = 144 units error.For the number 1956 there are = 108 units error.For the number 1957 there are = 118 units error.For the number 1958 there are = 141 units error.For the number 1959 there are = 97 units error.For the number 1960 there are = 99 units error.For the number 1961 there are = 315 units error.For the number 1962 there are = 67 units error.For the number 1963 there are = 93 units error.For the number 1964 there are = 144 units error.For the number 1965 there are = 142 units error.For the number 1966 there are = 32 units error.For the number 1967 there are = 83 units error.For the number 1968 there are = 27 units error.For the number 1969 there are = 66 units error.For the number 1970 there are = 197 units error.For the number 1971 there are = 290 units error.For the number 1972 there are = 132 units error.For the number 1973 there are = 74 units error.For the number 1974 there are = 17 units error.For the number 1975 there are = 134 units error.For the number 1976 there are = 147 units error.For the number 1977 there are = 176 units error.For the number 1978 there are = 266 units error.For the number 1979 there are = 136 units error.For the number 1980 there are = 9 units error.For the number 1981 there are = 219 units error.For the number 1982 there are = 119 units error.For the number 1983 there are = 67 units error.For the number 1984 there are = 326 units error.For the number 1985 there are = 97 units error.For the number 1986 there are = 171 units error.For the number 1987 there are = 157 units error.For the number 1988 there are = 69 units error.For the number 1989 there are = 334 units error.For the number 1990 there are = 340 units error.For the number 1991 there are = 205 units error.

Page 36: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 1992 there are = 42 units error.For the number 1993 there are = 192 units error.For the number 1994 there are = 122 units error.For the number 1995 there are = 259 units error.For the number 1996 there are = 185 units error.For the number 1997 there are = 81 units error.For the number 1998 there are = 10 units error.For the number 1999 there are = 204 units error.For the number 2000 there are = 205 units error.For the number 2001 there are = 57 units error.For the number 2002 there are = 182 units error.For the number 2003 there are = 82 units error.For the number 2004 there are = 179 units error.For the number 2005 there are = 123 units error.For the number 2006 there are = 132 units error.For the number 2007 there are = 52 units error.For the number 2008 there are = 48 units error.For the number 2009 there are = 91 units error.For the number 2010 there are = 270 units error.For the number 2011 there are = 185 units error.For the number 2012 there are = 207 units error.For the number 2013 there are = 95 units error.For the number 2014 there are = 80 units error.For the number 2015 there are = 162 units error.For the number 2016 there are = 239 units error.For the number 2017 there are = 34 units error.For the number 2018 there are = 78 units error.For the number 2019 there are = 164 units error.For the number 2020 there are = 295 units error.For the number 2021 there are = 205 units error.For the number 2022 there are = 2 units error.For the number 2023 there are = 251 units error.For the number 2024 there are = 47 units error.For the number 2025 there are = 260 units error.For the number 2026 there are = 61 units error.For the number 2027 there are = 167 units error.For the number 2028 there are = 269 units error.For the number 2029 there are = 81 units error.For the number 2030 there are = 86 units error.For the number 2031 there are = 185 units error.For the number 2032 there are = 202 units error.For the number 2033 there are = 146 units error.For the number 2034 there are = 11 units error.For the number 2035 there are = 274 units error.For the number 2036 there are = 350 units error.For the number 2037 there are = 338 units error.For the number 2038 there are = 230 units error.For the number 2039 there are = 42 units error.For the number 2040 there are = 52 units error.For the number 2041 there are = 41 units error.For the number 2042 there are = 264 units error.For the number 2043 there are = 454 units error.

For the number 2044 there are = 224 units error.For the number 2045 there are = 12 units error.For the number 2046 there are = 65 units error.For the number 2047 there are = 214 units error.For the number 2048 there are = 88 units error.For the number 2049 there are = 53 units error.For the number 2050 there are = 151 units error.For the number 2051 there are = 188 units error.For the number 2052 there are = 86 units error.For the number 2053 there are = 79 units error.For the number 2054 there are = 187 units error.For the number 2055 there are = 51 units error.For the number 2056 there are = 182 units error.For the number 2057 there are = 347 units error.For the number 2058 there are = 278 units error.For the number 2059 there are = 470 units error.For the number 2060 there are = 186 units error.For the number 2061 there are = 272 units error.For the number 2062 there are = 44 units error.For the number 2063 there are = 176 units error.For the number 2064 there are = 66 units error.For the number 2065 there are = 266 units error.For the number 2066 there are = 244 units error.For the number 2067 there are = 147 units error.For the number 2068 there are = 206 units error.For the number 2069 there are = 87 units error.For the number 2070 there are = 40 units error.For the number 2071 there are = 151 units error.For the number 2072 there are = 95 units error.For the number 2073 there are = 182 units error.For the number 2074 there are = 9 units error.For the number 2075 there are = 218 units error.For the number 2076 there are = 146 units error.For the number 2077 there are = 86 units error.For the number 2078 there are = 52 units error.For the number 2079 there are = 416 units error.For the number 2080 there are = 315 units error.For the number 2081 there are = 139 units error.For the number 2082 there are = 84 units error.For the number 2083 there are = 255 units error.For the number 2084 there are = 171 units error.For the number 2085 there are = 78 units error.For the number 2086 there are = 260 units error.For the number 2087 there are = 303 units error.For the number 2088 there are = 39 units error.For the number 2089 there are = 2 units error.For the number 2090 there are = 21 units error.For the number 2091 there are = 33 units error.For the number 2092 there are = 135 units error.For the number 2093 there are = 98 units error.For the number 2094 there are = 93 units error.For the number 2095 there are = 42 units error.

Page 37: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 2096 there are = 34 units error.For the number 2097 there are = 68 units error.For the number 2098 there are = 430 units error.For the number 2099 there are = 196 units error.For the number 2100 there are = 51 units error.For the number 2101 there are = 334 units error.For the number 2102 there are = 197 units error.For the number 2103 there are = 244 units error.For the number 2104 there are = 22 units error.For the number 2105 there are = 33 units error.For the number 2106 there are = 136 units error.For the number 2107 there are = 164 units error.For the number 2108 there are = 237 units error.For the number 2109 there are = 133 units error.For the number 2110 there are = 349 units error.For the number 2111 there are = 14 units error.For the number 2112 there are = 395 units error.For the number 2113 there are = 119 units error.For the number 2114 there are = 51 units error.For the number 2115 there are = 391 units error.For the number 2116 there are = 244 units error.For the number 2117 there are = 35 units error.For the number 2118 there are = 95 units error.For the number 2119 there are = 70 units error.For the number 2120 there are = 67 units error.For the number 2121 there are = 77 units error.For the number 2122 there are = 114 units error.For the number 2123 there are = 382 units error.For the number 2124 there are = 283 units error.For the number 2125 there are = 70 units error.For the number 2126 there are = 316 units error.For the number 2127 there are = 7 units error.For the number 2128 there are = 191 units error.For the number 2129 there are = 307 units error.For the number 2130 there are = 270 units error.For the number 2131 there are = 130 units error.For the number 2132 there are = 297 units error.For the number 2133 there are = 167 units error.For the number 2134 there are = 80 units error.For the number 2135 there are = 217 units error.For the number 2136 there are = 290 units error.For the number 2137 there are = 121 units error.For the number 2138 there are = 143 units error.For the number 2139 there are = 151 units error.For the number 2140 there are = 140 units error.For the number 2141 there are = 46 units error.For the number 2142 there are = 31 units error.For the number 2143 there are = 300 units error.For the number 2144 there are = 13 units error.For the number 2145 there are = 112 units error.For the number 2146 there are = 68 units error.For the number 2147 there are = 234 units error.

For the number 2148 there are = 27 units error.For the number 2149 there are = 21 units error.For the number 2150 there are = 29 units error.For the number 2151 there are = 87 units error.For the number 2152 there are = 291 units error.For the number 2153 there are = 130 units error.For the number 2154 there are = 95 units error.For the number 2155 there are = 50 units error.For the number 2156 there are = 109 units error.For the number 2157 there are = 106 units error.For the number 2158 there are = 263 units error.For the number 2159 there are = 170 units error.For the number 2160 there are = 135 units error.For the number 2161 there are = 214 units error.For the number 2162 there are = 323 units error.For the number 2163 there are = 210 units error.For the number 2164 there are = 49 units error.For the number 2165 there are = 283 units error.For the number 2166 there are = 137 units error.For the number 2167 there are = 390 units error.For the number 2168 there are = 24 units error.For the number 2169 there are = 117 units error.For the number 2170 there are = 127 units error.For the number 2171 there are = 467 units error.For the number 2172 there are = 255 units error.For the number 2173 there are = 423 units error.For the number 2174 there are = 43 units error.For the number 2175 there are = 236 units error.For the number 2176 there are = 121 units error.For the number 2177 there are = 227 units error.For the number 2178 there are = 21 units error.For the number 2179 there are = 34 units error.For the number 2180 there are = 27 units error.For the number 2181 there are = 98 units error.For the number 2182 there are = 33 units error.For the number 2183 there are = 99 units error.For the number 2184 there are = 274 units error.For the number 2185 there are = 87 units error.For the number 2186 there are = 200 units error.For the number 2187 there are = 123 units error.For the number 2188 there are = 113 units error.For the number 2189 there are = 101 units error.For the number 2190 there are = 325 units error.For the number 2191 there are = 49 units error.For the number 2192 there are = 192 units error.For the number 2193 there are = 20 units error.For the number 2194 there are = 336 units error.For the number 2195 there are = 34 units error.For the number 2196 there are = 144 units error.For the number 2197 there are = 183 units error.For the number 2198 there are = 191 units error.For the number 2199 there are = 558 units error.

Page 38: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 2200 there are = 266 units error.For the number 2201 there are = 90 units error.For the number 2202 there are = 168 units error.For the number 2203 there are = 42 units error.For the number 2204 there are = 0 units error.For the number 2205 there are = 151 units error.For the number 2206 there are = 242 units error.For the number 2207 there are = 242 units error.For the number 2208 there are = 132 units error.For the number 2209 there are = 135 units error.For the number 2210 there are = 86 units error.For the number 2211 there are = 270 units error.For the number 2212 there are = 183 units error.For the number 2213 there are = 163 units error.For the number 2214 there are = 114 units error.For the number 2215 there are = 195 units error.For the number 2216 there are = 111 units error.For the number 2217 there are = 121 units error.For the number 2218 there are = 203 units error.For the number 2219 there are = 377 units error.For the number 2220 there are = 7 units error.For the number 2221 there are = 330 units error.For the number 2222 there are = 21 units error.For the number 2223 there are = 47 units error.For the number 2224 there are = 219 units error.For the number 2225 there are = 28 units error.For the number 2226 there are = 13 units error.For the number 2227 there are = 132 units error.For the number 2228 there are = 100 units error.For the number 2229 there are = 247 units error.For the number 2230 there are = 117 units error.For the number 2231 there are = 121 units error.For the number 2232 there are = 503 units error.For the number 2233 there are = 19 units error.For the number 2234 there are = 95 units error.For the number 2235 there are = 267 units error.For the number 2236 there are = 70 units error.For the number 2237 there are = 259 units error.For the number 2238 there are = 123 units error.For the number 2239 there are = 182 units error.For the number 2240 there are = 104 units error.For the number 2241 there are = 27 units error.For the number 2242 there are = 143 units error.For the number 2243 there are = 219 units error.For the number 2244 there are = 28 units error.For the number 2245 there are = 65 units error.For the number 2246 there are = 52 units error.For the number 2247 there are = 108 units error.For the number 2248 there are = 358 units error.For the number 2249 there are = 68 units error.For the number 2250 there are = 232 units error.For the number 2251 there are = 80 units error.

For the number 2252 there are = 148 units error.For the number 2253 there are = 275 units error.For the number 2254 there are = 69 units error.For the number 2255 there are = 150 units error.For the number 2256 there are = 189 units error.For the number 2257 there are = 128 units error.For the number 2258 there are = 43 units error.For the number 2259 there are = 97 units error.For the number 2260 there are = 64 units error.For the number 2261 there are = 40 units error.For the number 2262 there are = 200 units error.For the number 2263 there are = 90 units error.For the number 2264 there are = 221 units error.For the number 2265 there are = 69 units error.For the number 2266 there are = 54 units error.For the number 2267 there are = 52 units error.For the number 2268 there are = 20 units error.For the number 2269 there are = 194 units error.For the number 2270 there are = 485 units error.For the number 2271 there are = 211 units error.For the number 2272 there are = 174 units error.For the number 2273 there are = 49 units error.For the number 2274 there are = 88 units error.For the number 2275 there are = 255 units error.For the number 2276 there are = 61 units error.For the number 2277 there are = 36 units error.For the number 2278 there are = 106 units error.For the number 2279 there are = 66 units error.For the number 2280 there are = 334 units error.For the number 2281 there are = 102 units error.For the number 2282 there are = 22 units error.For the number 2283 there are = 122 units error.For the number 2284 there are = 184 units error.For the number 2285 there are = 243 units error.For the number 2286 there are = 79 units error.For the number 2287 there are = 191 units error.For the number 2288 there are = 544 units error.For the number 2289 there are = 20 units error.For the number 2290 there are = 318 units error.For the number 2291 there are = 16 units error.For the number 2292 there are = 320 units error.For the number 2293 there are = 272 units error.For the number 2294 there are = 305 units error.For the number 2295 there are = 91 units error.For the number 2296 there are = 260 units error.For the number 2297 there are = 76 units error.For the number 2298 there are = 329 units error.For the number 2299 there are = 194 units error.For the number 2300 there are = 16 units error.For the number 2301 there are = 8 units error.For the number 2302 there are = 255 units error.For the number 2303 there are = 147 units error.

Page 39: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 2304 there are = 102 units error.For the number 2305 there are = 256 units error.For the number 2306 there are = 109 units error.For the number 2307 there are = 247 units error.For the number 2308 there are = 216 units error.For the number 2309 there are = 12 units error.For the number 2310 there are = 80 units error.For the number 2311 there are = 71 units error.For the number 2312 there are = 181 units error.For the number 2313 there are = 324 units error.For the number 2314 there are = 77 units error.For the number 2315 there are = 186 units error.For the number 2316 there are = 241 units error.For the number 2317 there are = 95 units error.For the number 2318 there are = 12 units error.For the number 2319 there are = 358 units error.For the number 2320 there are = 111 units error.For the number 2321 there are = 134 units error.For the number 2322 there are = 28 units error.For the number 2323 there are = 61 units error.For the number 2324 there are = 263 units error.For the number 2325 there are = 109 units error.For the number 2326 there are = 205 units error.For the number 2327 there are = 91 units error.For the number 2328 there are = 315 units error.For the number 2329 there are = 168 units error.For the number 2330 there are = 15 units error.For the number 2331 there are = 191 units error.For the number 2332 there are = 38 units error.For the number 2333 there are = 57 units error.For the number 2334 there are = 67 units error.For the number 2335 there are = 215 units error.For the number 2336 there are = 1 units error.For the number 2337 there are = 33 units error.For the number 2338 there are = 29 units error.For the number 2339 there are = 186 units error.For the number 2340 there are = 152 units error.For the number 2341 there are = 39 units error.For the number 2342 there are = 80 units error.For the number 2343 there are = 75 units error.For the number 2344 there are = 0 units error.For the number 2345 there are = 111 units error.For the number 2346 there are = 132 units error.For the number 2347 there are = 72 units error.For the number 2348 there are = 84 units error.For the number 2349 there are = 123 units error.For the number 2350 there are = 126 units error.For the number 2351 there are = 192 units error.For the number 2352 there are = 199 units error.For the number 2353 there are = 116 units error.For the number 2354 there are = 11 units error.For the number 2355 there are = 14 units error.

For the number 2356 there are = 400 units error.For the number 2357 there are = 162 units error.For the number 2358 there are = 92 units error.For the number 2359 there are = 15 units error.For the number 2360 there are = 187 units error.For the number 2361 there are = 27 units error.For the number 2362 there are = 10 units error.For the number 2363 there are = 16 units error.For the number 2364 there are = 84 units error.For the number 2365 there are = 16 units error.For the number 2366 there are = 92 units error.For the number 2367 there are = 354 units error.For the number 2368 there are = 11 units error.For the number 2369 there are = 125 units error.For the number 2370 there are = 353 units error.For the number 2371 there are = 178 units error.For the number 2372 there are = 174 units error.For the number 2373 there are = 230 units error.For the number 2374 there are = 140 units error.For the number 2375 there are = 203 units error.For the number 2376 there are = 68 units error.For the number 2377 there are = 266 units error.For the number 2378 there are = 322 units error.For the number 2379 there are = 49 units error.For the number 2380 there are = 34 units error.For the number 2381 there are = 270 units error.For the number 2382 there are = 180 units error.For the number 2383 there are = 264 units error.For the number 2384 there are = 64 units error.For the number 2385 there are = 16 units error.For the number 2386 there are = 14 units error.For the number 2387 there are = 60 units error.For the number 2388 there are = 332 units error.For the number 2389 there are = 129 units error.For the number 2390 there are = 171 units error.For the number 2391 there are = 58 units error.For the number 2392 there are = 72 units error.For the number 2393 there are = 43 units error.For the number 2394 there are = 24 units error.For the number 2395 there are = 260 units error.For the number 2396 there are = 298 units error.For the number 2397 there are = 184 units error.For the number 2398 there are = 61 units error.For the number 2399 there are = 398 units error.For the number 2400 there are = 314 units error.For the number 2401 there are = 28 units error.For the number 2402 there are = 331 units error.For the number 2403 there are = 172 units error.For the number 2404 there are = 136 units error.For the number 2405 there are = 268 units error.For the number 2406 there are = 58 units error.For the number 2407 there are = 111 units error.

Page 40: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 2408 there are = 345 units error.For the number 2409 there are = 125 units error.For the number 2410 there are = 30 units error.For the number 2411 there are = 247 units error.For the number 2412 there are = 324 units error.For the number 2413 there are = 34 units error.For the number 2414 there are = 10 units error.For the number 2415 there are = 423 units error.For the number 2416 there are = 302 units error.For the number 2417 there are = 150 units error.For the number 2418 there are = 115 units error.For the number 2419 there are = 72 units error.For the number 2420 there are = 283 units error.For the number 2421 there are = 14 units error.For the number 2422 there are = 160 units error.For the number 2423 there are = 297 units error.For the number 2424 there are = 211 units error.For the number 2425 there are = 204 units error.For the number 2426 there are = 9 units error.For the number 2427 there are = 20 units error.For the number 2428 there are = 115 units error.For the number 2429 there are = 249 units error.For the number 2430 there are = 230 units error.For the number 2431 there are = 377 units error.For the number 2432 there are = 244 units error.For the number 2433 there are = 210 units error.For the number 2434 there are = 77 units error.For the number 2435 there are = 138 units error.For the number 2436 there are = 53 units error.For the number 2437 there are = 41 units error.For the number 2438 there are = 419 units error.For the number 2439 there are = 58 units error.For the number 2440 there are = 74 units error.For the number 2441 there are = 66 units error.For the number 2442 there are = 94 units error.For the number 2443 there are = 267 units error.For the number 2444 there are = 448 units error.For the number 2445 there are = 339 units error.For the number 2446 there are = 50 units error.For the number 2447 there are = 274 units error.For the number 2448 there are = 279 units error.For the number 2449 there are = 51 units error.For the number 2450 there are = 198 units error.For the number 2451 there are = 298 units error.For the number 2452 there are = 64 units error.For the number 2453 there are = 19 units error.For the number 2454 there are = 236 units error.For the number 2455 there are = 305 units error.For the number 2456 there are = 189 units error.For the number 2457 there are = 116 units error.For the number 2458 there are = 89 units error.For the number 2459 there are = 49 units error.

For the number 2460 there are = 272 units error.For the number 2461 there are = 33 units error.For the number 2462 there are = 163 units error.For the number 2463 there are = 158 units error.For the number 2464 there are = 60 units error.For the number 2465 there are = 252 units error.For the number 2466 there are = 338 units error.For the number 2467 there are = 370 units error.For the number 2468 there are = 143 units error.For the number 2469 there are = 142 units error.For the number 2470 there are = 171 units error.For the number 2471 there are = 87 units error.For the number 2472 there are = 195 units error.For the number 2473 there are = 206 units error.For the number 2474 there are = 129 units error.For the number 2475 there are = 32 units error.For the number 2476 there are = 24 units error.For the number 2477 there are = 239 units error.For the number 2478 there are = 66 units error.For the number 2479 there are = 120 units error.For the number 2480 there are = 123 units error.For the number 2481 there are = 237 units error.For the number 2482 there are = 381 units error.For the number 2483 there are = 261 units error.For the number 2484 there are = 199 units error.For the number 2485 there are = 52 units error.For the number 2486 there are = 101 units error.For the number 2487 there are = 26 units error.For the number 2488 there are = 81 units error.For the number 2489 there are = 136 units error.For the number 2490 there are = 232 units error.For the number 2491 there are = 225 units error.For the number 2492 there are = 7 units error.For the number 2493 there are = 346 units error.For the number 2494 there are = 67 units error.For the number 2495 there are = 172 units error.For the number 2496 there are = 12 units error.For the number 2497 there are = 107 units error.For the number 2498 there are = 139 units error.For the number 2499 there are = 300 units error.For the number 2500 there are = 173 units error.For the number 2501 there are = 115 units error.For the number 2502 there are = 371 units error.For the number 2503 there are = 266 units error.For the number 2504 there are = 355 units error.For the number 2505 there are = 8 units error.For the number 2506 there are = 252 units error.For the number 2507 there are = 110 units error.For the number 2508 there are = 11 units error.For the number 2509 there are = 266 units error.For the number 2510 there are = 335 units error.For the number 2511 there are = 115 units error.

Page 41: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 2512 there are = 58 units error.For the number 2513 there are = 33 units error.For the number 2514 there are = 207 units error.For the number 2515 there are = 202 units error.For the number 2516 there are = 121 units error.For the number 2517 there are = 16 units error.For the number 2518 there are = 269 units error.For the number 2519 there are = 369 units error.For the number 2520 there are = 232 units error.For the number 2521 there are = 204 units error.For the number 2522 there are = 125 units error.For the number 2523 there are = 282 units error.For the number 2524 there are = 412 units error.For the number 2525 there are = 158 units error.For the number 2526 there are = 53 units error.For the number 2527 there are = 48 units error.For the number 2528 there are = 14 units error.For the number 2529 there are = 96 units error.For the number 2530 there are = 304 units error.For the number 2531 there are = 29 units error.For the number 2532 there are = 275 units error.For the number 2533 there are = 255 units error.For the number 2534 there are = 45 units error.For the number 2535 there are = 86 units error.For the number 2536 there are = 260 units error.For the number 2537 there are = 335 units error.For the number 2538 there are = 207 units error.For the number 2539 there are = 1 units error.For the number 2540 there are = 118 units error.For the number 2541 there are = 439 units error.For the number 2542 there are = 56 units error.For the number 2543 there are = 270 units error.For the number 2544 there are = 241 units error.For the number 2545 there are = 131 units error.For the number 2546 there are = 213 units error.For the number 2547 there are = 32 units error.For the number 2548 there are = 444 units error.For the number 2549 there are = 130 units error.For the number 2550 there are = 245 units error.For the number 2551 there are = 196 units error.For the number 2552 there are = 114 units error.For the number 2553 there are = 64 units error.For the number 2554 there are = 217 units error.For the number 2555 there are = 62 units error.For the number 2556 there are = 424 units error.For the number 2557 there are = 103 units error.For the number 2558 there are = 74 units error.For the number 2559 there are = 132 units error.For the number 2560 there are = 175 units error.For the number 2561 there are = 420 units error.For the number 2562 there are = 36 units error.For the number 2563 there are = 149 units error.

For the number 2564 there are = 26 units error.For the number 2565 there are = 217 units error.For the number 2566 there are = 67 units error.For the number 2567 there are = 190 units error.For the number 2568 there are = 169 units error.For the number 2569 there are = 103 units error.For the number 2570 there are = 266 units error.For the number 2571 there are = 160 units error.For the number 2572 there are = 98 units error.For the number 2573 there are = 219 units error.For the number 2574 there are = 307 units error.For the number 2575 there are = 521 units error.For the number 2576 there are = 144 units error.For the number 2577 there are = 20 units error.For the number 2578 there are = 254 units error.For the number 2579 there are = 60 units error.For the number 2580 there are = 200 units error.For the number 2581 there are = 113 units error.For the number 2582 there are = 60 units error.For the number 2583 there are = 28 units error.For the number 2584 there are = 324 units error.For the number 2585 there are = 447 units error.For the number 2586 there are = 82 units error.For the number 2587 there are = 417 units error.For the number 2588 there are = 252 units error.For the number 2589 there are = 228 units error.For the number 2590 there are = 83 units error.For the number 2591 there are = 35 units error.For the number 2592 there are = 307 units error.For the number 2593 there are = 174 units error.For the number 2594 there are = 310 units error.For the number 2595 there are = 392 units error.For the number 2596 there are = 645 units error.For the number 2597 there are = 81 units error.For the number 2598 there are = 366 units error.For the number 2599 there are = 303 units error.For the number 2600 there are = 230 units error.For the number 2601 there are 193 units error.For the number 2602 there are 50 units error.For the number 2603 there are 120 units error.For the number 2604 there are 21 units error.For the number 2605 there are 341 units error.For the number 2606 there are 255 units error.For the number 2607 there are 346 units error.For the number 2608 there are 303 units error.For the number 2609 there are 98 units error.For the number 2610 there are 149 units error.For the number 2611 there are 68 units error.For the number 2612 there are 443 units error.For the number 2613 there are 55 units error.For the number 2614 there are 93 units error.For the number 2615 there are 382 units error.

Page 42: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 2616 there are 231 units error.For the number 2617 there are 52 units error.For the number 2618 there are 250 units error.For the number 2619 there are 51 units error.For the number 2620 there are 61 units error.For the number 2621 there are 344 units error.For the number 2622 there are 31 units error.For the number 2623 there are 151 units error.For the number 2624 there are 86 units error.For the number 2625 there are 7 units error.For the number 2626 there are 201 units error.For the number 2627 there are 46 units error.For the number 2628 there are 111 units error.For the number 2629 there are 302 units error.For the number 2630 there are 25 units error.For the number 2631 there are 67 units error.For the number 2632 there are 123 units error.For the number 2633 there are 320 units error.For the number 2634 there are 105 units error.For the number 2635 there are 91 units error.For the number 2636 there are 414 units error.For the number 2637 there are 36 units error.For the number 2638 there are 40 units error.For the number 2639 there are 10 units error.For the number 2640 there are 205 units error.For the number 2641 there are 44 units error.For the number 2642 there are 56 units error.For the number 2643 there are 90 units error.For the number 2644 there are 261 units error.For the number 2645 there are 99 units error.For the number 2646 there are 222 units error.For the number 2647 there are 13 units error.For the number 2648 there are 130 units error.For the number 2649 there are 116 units error.For the number 2650 there are 203 units error.For the number 2651 there are 96 units error.For the number 2652 there are 186 units error.For the number 2653 there are 50 units error.For the number 2654 there are 193 units error.For the number 2655 there are 226 units error.For the number 2656 there are 252 units error.For the number 2657 there are 76 units error.For the number 2658 there are 104 units error.For the number 2659 there are 120 units error.For the number 2660 there are 309 units error.For the number 2661 there are 261 units error.For the number 2662 there are 267 units error.For the number 2663 there are 100 units error.For the number 2664 there are 20 units error.For the number 2665 there are 92 units error.For the number 2666 there are 25 units error.For the number 2667 there are 26 units error.

For the number 2668 there are 174 units error.For the number 2669 there are 137 units error.For the number 2670 there are 10 units error.For the number 2671 there are 168 units error.For the number 2672 there are 255 units error.For the number 2673 there are 91 units error.For the number 2674 there are 319 units error.For the number 2675 there are 157 units error.For the number 2676 there are 43 units error.For the number 2677 there are 177 units error.For the number 2678 there are 333 units error.For the number 2679 there are 136 units error.For the number 2680 there are 67 units error.For the number 2681 there are 187 units error.For the number 2682 there are 149 units error.For the number 2683 there are 148 units error.For the number 2684 there are 312 units error.For the number 2685 there are 29 units error.For the number 2686 there are 390 units error.For the number 2687 there are 197 units error.For the number 2688 there are 15 units error.For the number 2689 there are 223 units error.For the number 2690 there are 260 units error.For the number 2691 there are 163 units error.For the number 2692 there are 309 units error.For the number 2693 there are 170 units error.For the number 2694 there are 326 units error.For the number 2695 there are 78 units error.For the number 2696 there are 283 units error.For the number 2697 there are 58 units error.For the number 2698 there are 189 units error.For the number 2699 there are 220 units error.For the number 2700 there are 100 units error.For the number 2701 there are 13 units error.For the number 2702 there are 70 units error.For the number 2703 there are 242 units error.For the number 2704 there are 60 units error.For the number 2705 there are 29 units error.For the number 2706 there are 178 units error.For the number 2707 there are 32 units error.For the number 2708 there are 380 units error.For the number 2709 there are 272 units error.For the number 2710 there are 75 units error.For the number 2711 there are 161 units error.For the number 2712 there are 137 units error.For the number 2713 there are 80 units error.For the number 2714 there are 98 units error.For the number 2715 there are 357 units error.For the number 2716 there are 50 units error.For the number 2717 there are 74 units error.For the number 2718 there are 157 units error.For the number 2719 there are 94 units error.

Page 43: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 2720 there are 202 units error.For the number 2721 there are 15 units error.For the number 2722 there are 126 units error.For the number 2723 there are 147 units error.For the number 2724 there are 61 units error.For the number 2725 there are 91 units error.For the number 2726 there are 238 units error.For the number 2727 there are 11 units error.For the number 2728 there are 179 units error.For the number 2729 there are 289 units error.For the number 2730 there are 82 units error.For the number 2731 there are 349 units error.For the number 2732 there are 283 units error.For the number 2733 there are 3 units error.For the number 2734 there are 69 units error.For the number 2735 there are 197 units error.For the number 2736 there are 249 units error.For the number 2737 there are 349 units error.For the number 2738 there are 20 units error.For the number 2739 there are 5 units error.For the number 2740 there are 231 units error.For the number 2741 there are 283 units error.For the number 2742 there are 95 units error.For the number 2743 there are 126 units error.For the number 2744 there are 326 units error.For the number 2745 there are 115 units error.For the number 2746 there are 19 units error.For the number 2747 there are 32 units error.For the number 2748 there are 166 units error.For the number 2749 there are 187 units error.For the number 2750 there are 154 units error.For the number 2751 there are 46 units error.For the number 2752 there are 377 units error.For the number 2753 there are 259 units error.For the number 2754 there are 59 units error.For the number 2755 there are 35 units error.For the number 2756 there are 176 units error.For the number 2757 there are 319 units error.For the number 2758 there are 195 units error.For the number 2759 there are 425 units error.For the number 2760 there are 48 units error.For the number 2761 there are 222 units error.For the number 2762 there are 71 units error.For the number 2763 there are 153 units error.For the number 2764 there are 206 units error.For the number 2765 there are 52 units error.For the number 2766 there are 98 units error.For the number 2767 there are 301 units error.For the number 2768 there are 35 units error.For the number 2769 there are 216 units error.For the number 2770 there are 124 units error.For the number 2771 there are 460 units error.

For the number 2772 there are 664 units error.For the number 2773 there are 235 units error.For the number 2774 there are 349 units error.For the number 2775 there are 227 units error.For the number 2776 there are 233 units error.For the number 2777 there are 250 units error.For the number 2778 there are 219 units error.For the number 2779 there are 59 units error.For the number 2780 there are 171 units error.For the number 2781 there are 370 units error.For the number 2782 there are 261 units error.For the number 2783 there are 154 units error.For the number 2784 there are 137 units error.For the number 2785 there are 291 units error.For the number 2786 there are 300 units error.For the number 2787 there are 197 units error.For the number 2788 there are 26 units error.For the number 2789 there are 128 units error.For the number 2790 there are 163 units error.For the number 2791 there are 275 units error.For the number 2792 there are 63 units error.For the number 2793 there are 174 units error.For the number 2794 there are 106 units error.For the number 2795 there are 185 units error.For the number 2796 there are 165 units error.For the number 2797 there are 471 units error.For the number 2798 there are 113 units error.For the number 2799 there are 130 units error.For the number 2800 there are 232 units error.For the number 2801 there are 296 units error.For the number 2802 there are 99 units error.For the number 2803 there are 249 units error.For the number 2804 there are 46 units error.For the number 2805 there are 138 units error.For the number 2806 there are 120 units error.For the number 2807 there are 68 units error.For the number 2808 there are 247 units error.For the number 2809 there are 359 units error.For the number 2810 there are 61 units error.For the number 2811 there are 78 units error.For the number 2812 there are 49 units error.For the number 2813 there are 115 units error.For the number 2814 there are 182 units error.For the number 2815 there are 53 units error.For the number 2816 there are 91 units error.For the number 2817 there are 79 units error.For the number 2818 there are 118 units error.For the number 2819 there are 2 units error.For the number 2820 there are 34 units error.For the number 2821 there are 337 units error.For the number 2822 there are 17 units error.For the number 2823 there are 26 units error.

Page 44: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 2824 there are 253 units error.For the number 2825 there are 70 units error.For the number 2826 there are 29 units error.For the number 2827 there are 14 units error.For the number 2828 there are 392 units error.For the number 2829 there are 299 units error.For the number 2830 there are 50 units error.For the number 2831 there are 40 units error.For the number 2832 there are 192 units error.For the number 2833 there are 44 units error.For the number 2834 there are 227 units error.For the number 2835 there are 318 units error.For the number 2836 there are 192 units error.For the number 2837 there are 32 units error.For the number 2838 there are 169 units error.For the number 2839 there are 208 units error.For the number 2840 there are 144 units error.For the number 2841 there are 161 units error.For the number 2842 there are 5 units error.For the number 2843 there are 220 units error.For the number 2844 there are 83 units error.For the number 2845 there are 86 units error.For the number 2846 there are 316 units error.For the number 2847 there are 153 units error.For the number 2848 there are 119 units error.For the number 2849 there are 261 units error.For the number 2850 there are 219 units error.For the number 2851 there are 102 units error.For the number 2852 there are 270 units error.For the number 2853 there are 436 units error.For the number 2854 there are 179 units error.For the number 2855 there are 175 units error.For the number 2856 there are 161 units error.For the number 2857 there are 283 units error.For the number 2858 there are 70 units error.For the number 2859 there are 91 units error.For the number 2860 there are 125 units error.For the number 2861 there are 2 units error.For the number 2862 there are 162 units error.For the number 2863 there are 236 units error.For the number 2864 there are 201 units error.For the number 2865 there are 134 units error.For the number 2866 there are 54 units error.For the number 2867 there are 83 units error.For the number 2868 there are 98 units error.For the number 2869 there are 8 units error.For the number 2870 there are 309 units error.For the number 2871 there are 509 units error.For the number 2872 there are 35 units error.For the number 2873 there are 19 units error.For the number 2874 there are 229 units error.For the number 2875 there are 78 units error.

For the number 2876 there are 48 units error.For the number 2877 there are 168 units error.For the number 2878 there are 652 units error.For the number 2879 there are 160 units error.For the number 2880 there are 29 units error.For the number 2881 there are 474 units error.For the number 2882 there are 92 units error.For the number 2883 there are 219 units error.For the number 2884 there are 389 units error.For the number 2885 there are 83 units error.For the number 2886 there are 162 units error.For the number 2887 there are 126 units error.For the number 2888 there are 405 units error.For the number 2889 there are 46 units error.For the number 2890 there are 166 units error.For the number 2891 there are 228 units error.For the number 2892 there are 148 units error.For the number 2893 there are 290 units error.For the number 2894 there are 187 units error.For the number 2895 there are 230 units error.For the number 2896 there are 19 units error.For the number 2897 there are 91 units error.For the number 2898 there are 171 units error.For the number 2899 there are 188 units error.For the number 2900 there are 595 units error.For the number 2901 there are 186 units error.For the number 2902 there are 65 units error.For the number 2903 there are 35 units error.For the number 2904 there are 211 units error.For the number 2905 there are 81 units error.For the number 2906 there are 19 units error.For the number 2907 there are 289 units error.For the number 2908 there are 65 units error.For the number 2909 there are 105 units error.For the number 2910 there are 51 units error.For the number 2911 there are 3 units error.For the number 2912 there are 291 units error.For the number 2913 there are 504 units error.For the number 2914 there are 316 units error.For the number 2915 there are 42 units error.For the number 2916 there are 151 units error.For the number 2917 there are 106 units error.For the number 2918 there are 249 units error.For the number 2919 there are 175 units error.For the number 2920 there are 60 units error.For the number 2921 there are 102 units error.For the number 2922 there are 105 units error.For the number 2923 there are 274 units error.For the number 2924 there are 506 units error.For the number 2925 there are 128 units error.For the number 2926 there are 199 units error.For the number 2927 there are 181 units error.

Page 45: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 2928 there are 102 units error.For the number 2929 there are 132 units error.For the number 2930 there are 140 units error.For the number 2931 there are 24 units error.For the number 2932 there are 174 units error.For the number 2933 there are 28 units error.For the number 2934 there are 145 units error.For the number 2935 there are 121 units error.For the number 2936 there are 166 units error.For the number 2937 there are 125 units error.For the number 2938 there are 619 units error.For the number 2939 there are 200 units error.For the number 2940 there are 79 units error.For the number 2941 there are 131 units error.For the number 2942 there are 191 units error.For the number 2943 there are 322 units error.For the number 2944 there are 185 units error.For the number 2945 there are 121 units error.For the number 2946 there are 108 units error.For the number 2947 there are 177 units error.For the number 2948 there are 75 units error.For the number 2949 there are 253 units error.For the number 2950 there are 295 units error.For the number 2951 there are 47 units error.For the number 2952 there are 62 units error.For the number 2953 there are 49 units error.For the number 2954 there are 157 units error.For the number 2955 there are 23 units error.For the number 2956 there are 194 units error.For the number 2957 there are 25 units error.For the number 2958 there are 23 units error.For the number 2959 there are 331 units error.For the number 2960 there are 199 units error.For the number 2961 there are 63 units error.For the number 2962 there are 221 units error.For the number 2963 there are 240 units error.For the number 2964 there are 497 units error.For the number 2965 there are 42 units error.For the number 2966 there are 541 units error.For the number 2967 there are 594 units error.For the number 2968 there are 158 units error.For the number 2969 there are 105 units error.For the number 2970 there are 201 units error.For the number 2971 there are 75 units error.For the number 2972 there are 102 units error.For the number 2973 there are 46 units error.For the number 2974 there are 358 units error.For the number 2975 there are 67 units error.For the number 2976 there are 193 units error.For the number 2977 there are 396 units error.For the number 2978 there are 9 units error.For the number 2979 there are 291 units error.

For the number 2980 there are 175 units error.For the number 2981 there are 118 units error.For the number 2982 there are 228 units error.For the number 2983 there are 37 units error.For the number 2984 there are 186 units error.For the number 2985 there are 104 units error.For the number 2986 there are 71 units error.For the number 2987 there are 246 units error.For the number 2988 there are 97 units error.For the number 2989 there are 325 units error.For the number 2990 there are 366 units error.For the number 2991 there are 246 units error.For the number 2992 there are 512 units error.For the number 2993 there are 117 units error.For the number 2994 there are 66 units error.For the number 2995 there are 490 units error.For the number 2996 there are 243 units error.For the number 2997 there are 71 units error.For the number 2998 there are 181 units error.For the number 2999 there are 104 units error.For the number 3000 there are 157 units error.For the number 3001 there are 55 units error.For the number 3002 there are 196 units error.For the number 3003 there are 63 units error.For the number 3004 there are 77 units error.For the number 3005 there are 182 units error.For the number 3006 there are 221 units error.For the number 3007 there are 188 units error.For the number 3008 there are 500 units error.For the number 3009 there are 52 units error.For the number 3010 there are 60 units error.For the number 3011 there are 181 units error.For the number 3012 there are 159 units error.For the number 3013 there are 161 units error.For the number 3014 there are 218 units error.For the number 3015 there are 254 units error.For the number 3016 there are 105 units error.For the number 3017 there are 33 units error.For the number 3018 there are 106 units error.For the number 3019 there are 242 units error.For the number 3020 there are 254 units error.For the number 3021 there are 215 units error.For the number 3022 there are 64 units error.For the number 3023 there are 277 units error.For the number 3024 there are 345 units error.For the number 3025 there are 192 units error.For the number 3026 there are 108 units error.For the number 3027 there are 343 units error.For the number 3028 there are 46 units error.For the number 3029 there are 144 units error.For the number 3030 there are 373 units error.For the number 3031 there are 349 units error.

Page 46: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 3032 there are 365 units error.For the number 3033 there are 338 units error.For the number 3034 there are 277 units error.For the number 3035 there are 6 units error.For the number 3036 there are 182 units error.For the number 3037 there are 60 units error.For the number 3038 there are 493 units error.For the number 3039 there are 401 units error.For the number 3040 there are 389 units error.For the number 3041 there are 0 units error.For the number 3042 there are 94 units error.For the number 3043 there are 123 units error.For the number 3044 there are 249 units error.For the number 3045 there are 85 units error.For the number 3046 there are 158 units error.For the number 3047 there are 293 units error.For the number 3048 there are 85 units error.For the number 3049 there are 531 units error.For the number 3050 there are 63 units error.For the number 3051 there are 116 units error.For the number 3052 there are 278 units error.For the number 3053 there are 15 units error.For the number 3054 there are 78 units error.For the number 3055 there are 153 units error.For the number 3056 there are 489 units error.For the number 3057 there are 57 units error.For the number 3058 there are 217 units error.For the number 3059 there are 302 units error.For the number 3060 there are 225 units error.For the number 3061 there are 218 units error.For the number 3062 there are 64 units error.For the number 3063 there are 63 units error.For the number 3064 there are 502 units error.For the number 3065 there are 169 units error.For the number 3066 there are 277 units error.For the number 3067 there are 394 units error.For the number 3068 there are 522 units error.For the number 3069 there are 175 units error.For the number 3070 there are 5 units error.For the number 3071 there are 127 units error.For the number 3072 there are 100 units error.For the number 3073 there are 104 units error.For the number 3074 there are 143 units error.For the number 3075 there are 145 units error.For the number 3076 there are 49 units error.For the number 3077 there are 218 units error.For the number 3078 there are 90 units error.For the number 3079 there are 85 units error.For the number 3080 there are 156 units error.For the number 3081 there are 374 units error.For the number 3082 there are 71 units error.For the number 3083 there are 102 units error.

For the number 3084 there are 66 units error.For the number 3085 there are 3 units error.For the number 3086 there are 164 units error.For the number 3087 there are 202 units error.For the number 3088 there are 7 units error.For the number 3089 there are 93 units error.For the number 3090 there are 177 units error.For the number 3091 there are 400 units error.For the number 3092 there are 142 units error.For the number 3093 there are 107 units error.For the number 3094 there are 5 units error.For the number 3095 there are 246 units error.For the number 3096 there are 109 units error.For the number 3097 there are 310 units error.For the number 3098 there are 186 units error.For the number 3099 there are 401 units error.For the number 3100 there are 171 units error.For the number 3101 there are 270 units error.For the number 3102 there are 9 units error.For the number 3103 there are 118 units error.For the number 3104 there are 674 units error.For the number 3105 there are 316 units error.For the number 3106 there are 32 units error.For the number 3107 there are 45 units error.For the number 3108 there are 142 units error.For the number 3109 there are 160 units error.For the number 3110 there are 332 units error.For the number 3111 there are 11 units error.For the number 3112 there are 229 units error.For the number 3113 there are 355 units error.For the number 3114 there are 518 units error.For the number 3115 there are 87 units error.For the number 3116 there are 58 units error.For the number 3117 there are 187 units error.For the number 3118 there are 128 units error.For the number 3119 there are 100 units error.For the number 3120 there are 46 units error.For the number 3121 there are 258 units error.For the number 3122 there are 272 units error.For the number 3123 there are 425 units error.For the number 3124 there are 14 units error.For the number 3125 there are 259 units error.For the number 3126 there are 138 units error.For the number 3127 there are 186 units error.For the number 3128 there are 70 units error.For the number 3129 there are 109 units error.For the number 3130 there are 163 units error.For the number 3131 there are 308 units error.For the number 3132 there are 173 units error.For the number 3133 there are 404 units error.For the number 3134 there are 632 units error.For the number 3135 there are 239 units error.

Page 47: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 3136 there are 2 units error.For the number 3137 there are 467 units error.For the number 3138 there are 31 units error.For the number 3139 there are 166 units error.For the number 3140 there are 260 units error.For the number 3141 there are 214 units error.For the number 3142 there are 144 units error.For the number 3143 there are 415 units error.For the number 3144 there are 242 units error.For the number 3145 there are 69 units error.For the number 3146 there are 121 units error.For the number 3147 there are 20 units error.For the number 3148 there are 25 units error.For the number 3149 there are 297 units error.For the number 3150 there are 50 units error.For the number 3151 there are 330 units error.For the number 3152 there are 234 units error.For the number 3153 there are 70 units error.For the number 3154 there are 96 units error.For the number 3155 there are 132 units error.For the number 3156 there are 174 units error.For the number 3157 there are 81 units error.For the number 3158 there are 119 units error.For the number 3159 there are 296 units error.For the number 3160 there are 4 units error.For the number 3161 there are 85 units error.For the number 3162 there are 354 units error.For the number 3163 there are 28 units error.For the number 3164 there are 188 units error.For the number 3165 there are 64 units error.For the number 3166 there are 43 units error.For the number 3167 there are 217 units error.For the number 3168 there are 378 units error.For the number 3169 there are 199 units error.For the number 3170 there are 147 units error.For the number 3171 there are 290 units error.For the number 3172 there are 68 units error.For the number 3173 there are 108 units error.For the number 3174 there are 246 units error.For the number 3175 there are 199 units error.For the number 3176 there are 37 units error.For the number 3177 there are 367 units error.For the number 3178 there are 309 units error.For the number 3179 there are 19 units error.For the number 3180 there are 130 units error.For the number 3181 there are 30 units error.For the number 3182 there are 532 units error.For the number 3183 there are 133 units error.For the number 3184 there are 188 units error.For the number 3185 there are 449 units error.For the number 3186 there are 53 units error.For the number 3187 there are 218 units error.

For the number 3188 there are 59 units error.For the number 3189 there are 147 units error.For the number 3190 there are 21 units error.For the number 3191 there are 374 units error.For the number 3192 there are 81 units error.For the number 3193 there are 63 units error.For the number 3194 there are 87 units error.For the number 3195 there are 44 units error.For the number 3196 there are 62 units error.For the number 3197 there are 130 units error.For the number 3198 there are 156 units error.For the number 3199 there are 71 units error.For the number 3200 there are 104 units error.For the number 3201 there are 23 units error.For the number 3202 there are 126 units error.For the number 3203 there are 288 units error.For the number 3204 there are 157 units error.For the number 3205 there are 165 units error.For the number 3206 there are 126 units error.For the number 3207 there are 92 units error.For the number 3208 there are 177 units error.For the number 3209 there are 218 units error.For the number 3210 there are 342 units error.For the number 3211 there are 110 units error.For the number 3212 there are 237 units error.For the number 3213 there are 70 units error.For the number 3214 there are 79 units error.For the number 3215 there are 129 units error.For the number 3216 there are 300 units error.For the number 3217 there are 277 units error.For the number 3218 there are 129 units error.For the number 3219 there are 14 units error.For the number 3220 there are 573 units error.For the number 3221 there are 148 units error.For the number 3222 there are 65 units error.For the number 3223 there are 123 units error.For the number 3224 there are 501 units error.For the number 3225 there are 86 units error.For the number 3226 there are 35 units error.For the number 3227 there are 257 units error.For the number 3228 there are 120 units error.For the number 3229 there are 101 units error.For the number 3230 there are 206 units error.For the number 3231 there are 80 units error.For the number 3232 there are 16 units error.For the number 3233 there are 659 units error.For the number 3234 there are 80 units error.For the number 3235 there are 169 units error.For the number 3236 there are 169 units error.For the number 3237 there are 107 units error.For the number 3238 there are 206 units error.For the number 3239 there are 153 units error.

Page 48: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 3240 there are 137 units error.For the number 3241 there are 235 units error.For the number 3242 there are 186 units error.For the number 3243 there are 46 units error.For the number 3244 there are 8 units error.For the number 3245 there are 169 units error.For the number 3246 there are 169 units error.For the number 3247 there are 486 units error.For the number 3248 there are 358 units error.For the number 3249 there are 276 units error.For the number 3250 there are 565 units error.For the number 3251 there are 526 units error.For the number 3252 there are 204 units error.For the number 3253 there are 39 units error.For the number 3254 there are 629 units error.For the number 3255 there are 106 units error.For the number 3256 there are 351 units error.For the number 3257 there are 57 units error.For the number 3258 there are 145 units error.For the number 3259 there are 64 units error.For the number 3260 there are 500 units error.For the number 3261 there are 6 units error.For the number 3262 there are 170 units error.For the number 3263 there are 388 units error.For the number 3264 there are 308 units error.For the number 3265 there are 56 units error.For the number 3266 there are 143 units error.For the number 3267 there are 153 units error.For the number 3268 there are 434 units error.For the number 3269 there are 235 units error.For the number 3270 there are 195 units error.For the number 3271 there are 295 units error.For the number 3272 there are 59 units error.For the number 3273 there are 193 units error.For the number 3274 there are 155 units error.For the number 3275 there are 17 units error.For the number 3276 there are 153 units error.For the number 3277 there are 60 units error.For the number 3278 there are 415 units error.For the number 3279 there are 315 units error.For the number 3280 there are 33 units error.For the number 3281 there are 257 units error.For the number 3282 there are 213 units error.For the number 3283 there are 51 units error.For the number 3284 there are 150 units error.For the number 3285 there are 296 units error.For the number 3286 there are 288 units error.For the number 3287 there are 242 units error.For the number 3288 there are 48 units error.For the number 3289 there are 55 units error.For the number 3290 there are 257 units error.For the number 3291 there are 117 units error.

For the number 3292 there are 322 units error.For the number 3293 there are 294 units error.For the number 3294 there are 137 units error.For the number 3295 there are 285 units error.For the number 3296 there are 617 units error.For the number 3297 there are 488 units error.For the number 3298 there are 368 units error.For the number 3299 there are 116 units error.For the number 3300 there are 79 units error.For the number 3301 there are 24 units error.For the number 3302 there are 329 units error.For the number 3303 there are 26 units error.For the number 3304 there are 181 units error.For the number 3305 there are 417 units error.For the number 3306 there are 290 units error.For the number 3307 there are 321 units error.For the number 3308 there are 92 units error.For the number 3309 there are 279 units error.For the number 3310 there are 143 units error.For the number 3311 there are 19 units error.For the number 3312 there are 148 units error.For the number 3313 there are 261 units error.For the number 3314 there are 159 units error.For the number 3315 there are 35 units error.For the number 3316 there are 270 units error.For the number 3317 there are 210 units error.For the number 3318 there are 145 units error.For the number 3319 there are 94 units error.For the number 3320 there are 47 units error.For the number 3321 there are 77 units error.For the number 3322 there are 639 units error.For the number 3323 there are 44 units error.For the number 3324 there are 317 units error.For the number 3325 there are 17 units error.For the number 3326 there are 102 units error.For the number 3327 there are 143 units error.For the number 3328 there are 155 units error.For the number 3329 there are 64 units error.For the number 3330 there are 180 units error.For the number 3331 there are 3 units error.For the number 3332 there are 317 units error.For the number 3333 there are 8 units error.For the number 3334 there are 41 units error.For the number 3335 there are 64 units error.For the number 3336 there are 244 units error.For the number 3337 there are 123 units error.For the number 3338 there are 399 units error.For the number 3339 there are 143 units error.For the number 3340 there are 470 units error.For the number 3341 there are 54 units error.For the number 3342 there are 262 units error.For the number 3343 there are 91 units error.

Page 49: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 3344 there are 166 units error.For the number 3345 there are 102 units error.For the number 3346 there are 197 units error.For the number 3347 there are 64 units error.For the number 3348 there are 95 units error.For the number 3349 there are 134 units error.For the number 3350 there are 94 units error.For the number 3351 there are 215 units error.For the number 3352 there are 313 units error.For the number 3353 there are 272 units error.For the number 3354 there are 207 units error.For the number 3355 there are 315 units error.For the number 3356 there are 1 units error.For the number 3357 there are 93 units error.For the number 3358 there are 51 units error.For the number 3359 there are 71 units error.For the number 3360 there are 454 units error.For the number 3361 there are 52 units error.For the number 3362 there are 117 units error.For the number 3363 there are 370 units error.For the number 3364 there are 124 units error.For the number 3365 there are 220 units error.For the number 3366 there are 8 units error.For the number 3367 there are 100 units error.For the number 3368 there are 386 units error.For the number 3369 there are 83 units error.For the number 3370 there are 235 units error.For the number 3371 there are 172 units error.For the number 3372 there are 56 units error.For the number 3373 there are 128 units error.For the number 3374 there are 435 units error.For the number 3375 there are 282 units error.For the number 3376 there are 30 units error.For the number 3377 there are 60 units error.For the number 3378 there are 57 units error.For the number 3379 there are 213 units error.For the number 3380 there are 145 units error.For the number 3381 there are 213 units error.For the number 3382 there are 160 units error.For the number 3383 there are 33 units error.For the number 3384 there are 142 units error.For the number 3385 there are 150 units error.For the number 3386 there are 413 units error.For the number 3387 there are 65 units error.For the number 3388 there are 281 units error.For the number 3389 there are 72 units error.For the number 3390 there are 390 units error.For the number 3391 there are 36 units error.For the number 3392 there are 65 units error.For the number 3393 there are 81 units error.For the number 3394 there are 385 units error.For the number 3395 there are 113 units error.

For the number 3396 there are 388 units error.For the number 3397 there are 209 units error.For the number 3398 there are 275 units error.For the number 3399 there are 105 units error.For the number 3400 there are 380 units error.For the number 3401 there are 313 units error.For the number 3402 there are 440 units error.For the number 3403 there are 70 units error.For the number 3404 there are 801 units error.For the number 3405 there are 243 units error.For the number 3406 there are 46 units error.For the number 3407 there are 95 units error.For the number 3408 there are 122 units error.For the number 3409 there are 171 units error.For the number 3410 there are 44 units error.For the number 3411 there are 187 units error.For the number 3412 there are 38 units error.For the number 3413 there are 175 units error.For the number 3414 there are 247 units error.For the number 3415 there are 237 units error.For the number 3416 there are 356 units error.For the number 3417 there are 112 units error.For the number 3418 there are 132 units error.For the number 3419 there are 163 units error.For the number 3420 there are 149 units error.For the number 3421 there are 109 units error.For the number 3422 there are 9 units error.For the number 3423 there are 398 units error.For the number 3424 there are 210 units error.For the number 3425 there are 73 units error.For the number 3426 there are 9 units error.For the number 3427 there are 28 units error.For the number 3428 there are 87 units error.For the number 3429 there are 114 units error.For the number 3430 there are 496 units error.For the number 3431 there are 59 units error.For the number 3432 there are 142 units error.For the number 3433 there are 255 units error.For the number 3434 there are 328 units error.For the number 3435 there are 206 units error.For the number 3436 there are 294 units error.For the number 3437 there are 248 units error.For the number 3438 there are 263 units error.For the number 3439 there are 43 units error.For the number 3440 there are 270 units error.For the number 3441 there are 265 units error.For the number 3442 there are 41 units error.For the number 3443 there are 300 units error.For the number 3444 there are 12 units error.For the number 3445 there are 173 units error.For the number 3446 there are 553 units error.For the number 3447 there are 323 units error.

Page 50: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 3448 there are 645 units error.For the number 3449 there are 331 units error.For the number 3450 there are 108 units error.For the number 3451 there are 317 units error.For the number 3452 there are 389 units error.For the number 3453 there are 184 units error.For the number 3454 there are 183 units error.For the number 3455 there are 127 units error.For the number 3456 there are 216 units error.For the number 3457 there are 243 units error.For the number 3458 there are 70 units error.For the number 3459 there are 304 units error.For the number 3460 there are 311 units error.For the number 3461 there are 213 units error.For the number 3462 there are 183 units error.For the number 3463 there are 351 units error.For the number 3464 there are 511 units error.For the number 3465 there are 95 units error.For the number 3466 there are 283 units error.For the number 3467 there are 121 units error.For the number 3468 there are 132 units error.For the number 3469 there are 23 units error.For the number 3470 there are 30 units error.For the number 3471 there are 204 units error.For the number 3472 there are 46 units error.For the number 3473 there are 80 units error.For the number 3474 there are 293 units error.For the number 3475 there are 135 units error.For the number 3476 there are 398 units error.For the number 3477 there are 116 units error.For the number 3478 there are 116 units error.For the number 3479 there are 218 units error.For the number 3480 there are 165 units error.For the number 3481 there are 242 units error.For the number 3482 there are 92 units error.For the number 3483 there are 46 units error.For the number 3484 there are 153 units error.For the number 3485 there are 15 units error.For the number 3486 there are 101 units error.For the number 3487 there are 378 units error.For the number 3488 there are 91 units error.For the number 3489 there are 211 units error.For the number 3490 there are 294 units error.For the number 3491 there are 42 units error.For the number 3492 there are 201 units error.For the number 3493 there are 15 units error.For the number 3494 there are 105 units error.For the number 3495 there are 498 units error.For the number 3496 there are 195 units error.For the number 3497 there are 81 units error.For the number 3498 there are 226 units error.For the number 3499 there are 249 units error.

For the number 3500 there are 64 units error.For the number 3501 there are 122 units error.For the number 3502 there are 231 units error.For the number 3503 there are 145 units error.For the number 3504 there are 111 units error.For the number 3505 there are 81 units error.For the number 3506 there are 95 units error.For the number 3507 there are 196 units error.For the number 3508 there are 283 units error.For the number 3509 there are 201 units error.For the number 3510 there are 142 units error.For the number 3511 there are 168 units error.For the number 3512 there are 406 units error.For the number 3513 there are 87 units error.For the number 3514 there are 98 units error.For the number 3515 there are 7 units error.For the number 3516 there are 111 units error.For the number 3517 there are 240 units error.For the number 3518 there are 139 units error.For the number 3519 there are 137 units error.For the number 3520 there are 102 units error.For the number 3521 there are 167 units error.For the number 3522 there are 43 units error.For the number 3523 there are 223 units error.For the number 3524 there are 478 units error.For the number 3525 there are 197 units error.For the number 3526 there are 165 units error.For the number 3527 there are 43 units error.For the number 3528 there are 174 units error.For the number 3529 there are 397 units error.For the number 3530 there are 136 units error.For the number 3531 there are 159 units error.For the number 3532 there are 321 units error.For the number 3533 there are 35 units error.For the number 3534 there are 37 units error.For the number 3535 there are 473 units error.For the number 3536 there are 176 units error.For the number 3537 there are 16 units error.For the number 3538 there are 393 units error.For the number 3539 there are 161 units error.For the number 3540 there are 195 units error.For the number 3541 there are 173 units error.For the number 3542 there are 114 units error.For the number 3543 there are 13 units error.For the number 3544 there are 413 units error.For the number 3545 there are 12 units error.For the number 3546 there are 271 units error.For the number 3547 there are 237 units error.For the number 3548 there are 524 units error.For the number 3549 there are 215 units error.For the number 3550 there are 38 units error.For the number 3551 there are 67 units error.

Page 51: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 3552 there are 253 units error.For the number 3553 there are 271 units error.For the number 3554 there are 215 units error.For the number 3555 there are 159 units error.For the number 3556 there are 136 units error.For the number 3557 there are 5 units error.For the number 3558 there are 270 units error.For the number 3559 there are 20 units error.For the number 3560 there are 220 units error.For the number 3561 there are 20 units error.For the number 3562 there are 31 units error.For the number 3563 there are 478 units error.For the number 3564 there are 467 units error.For the number 3565 there are 173 units error.For the number 3566 there are 126 units error.For the number 3567 there are 165 units error.For the number 3568 there are 22 units error.For the number 3569 there are 385 units error.For the number 3570 there are 327 units error.For the number 3571 there are 169 units error.For the number 3572 there are 30 units error.For the number 3573 there are 50 units error.For the number 3574 there are 323 units error.For the number 3575 there are 290 units error.For the number 3576 there are 217 units error.For the number 3577 there are 211 units error.For the number 3578 there are 6 units error.For the number 3579 there are 1 units error.For the number 3580 there are 103 units error.For the number 3581 there are 168 units error.For the number 3582 there are 216 units error.For the number 3583 there are 261 units error.For the number 3584 there are 397 units error.For the number 3585 there are 197 units error.For the number 3586 there are 44 units error.For the number 3587 there are 143 units error.For the number 3588 there are 253 units error.For the number 3589 there are 27 units error.For the number 3590 there are 166 units error.For the number 3591 there are 35 units error.For the number 3592 there are 72 units error.For the number 3593 there are 320 units error.For the number 3594 there are 413 units error.For the number 3595 there are 79 units error.For the number 3596 there are 15 units error.For the number 3597 there are 434 units error.For the number 3598 there are 345 units error.For the number 3599 there are 525 units error.For the number 3600 there are 7 units error.For the number 3601 there are 82 units error.For the number 3602 there are 47 units error.For the number 3603 there are 1 units error.

For the number 3604 there are 48 units error.For the number 3605 there are 2 units error.For the number 3606 there are 114 units error.For the number 3607 there are 105 units error.For the number 3608 there are 190 units error.For the number 3609 there are 233 units error.For the number 3610 there are 166 units error.For the number 3611 there are 32 units error.For the number 3612 there are 99 units error.For the number 3613 there are 4 units error.For the number 3614 there are 305 units error.For the number 3615 there are 80 units error.For the number 3616 there are 397 units error.For the number 3617 there are 319 units error.For the number 3618 there are 472 units error.For the number 3619 there are 149 units error.For the number 3620 there are 241 units error.For the number 3621 there are 351 units error.For the number 3622 there are 166 units error.For the number 3623 there are 228 units error.For the number 3624 there are 285 units error.For the number 3625 there are 134 units error.For the number 3626 there are 27 units error.For the number 3627 there are 5 units error.For the number 3628 there are 458 units error.For the number 3629 there are 114 units error.For the number 3630 there are 24 units error.For the number 3631 there are 114 units error.For the number 3632 there are 212 units error.For the number 3633 there are 68 units error.For the number 3634 there are 466 units error.For the number 3635 there are 311 units error.For the number 3636 there are 43 units error.For the number 3637 there are 592 units error.For the number 3638 there are 71 units error.For the number 3639 there are 355 units error.For the number 3640 there are 10 units error.For the number 3641 there are 115 units error.For the number 3642 there are 114 units error.For the number 3643 there are 207 units error.For the number 3644 there are 63 units error.For the number 3645 there are 59 units error.For the number 3646 there are 66 units error.For the number 3647 there are 24 units error.For the number 3648 there are 243 units error.For the number 3649 there are 226 units error.For the number 3650 there are 157 units error.For the number 3651 there are 44 units error.For the number 3652 there are 251 units error.For the number 3653 there are 150 units error.For the number 3654 there are 285 units error.For the number 3655 there are 74 units error.

Page 52: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 3656 there are 47 units error.For the number 3657 there are 77 units error.For the number 3658 there are 450 units error.For the number 3659 there are 310 units error.For the number 3660 there are 71 units error.For the number 3661 there are 344 units error.For the number 3662 there are 35 units error.For the number 3663 there are 161 units error.For the number 3664 there are 15 units error.For the number 3665 there are 162 units error.For the number 3666 there are 144 units error.For the number 3667 there are 446 units error.For the number 3668 there are 397 units error.For the number 3669 there are 26 units error.For the number 3670 there are 237 units error.For the number 3671 there are 294 units error.For the number 3672 there are 199 units error.For the number 3673 there are 413 units error.For the number 3674 there are 109 units error.For the number 3675 there are 234 units error.For the number 3676 there are 263 units error.For the number 3677 there are 94 units error.For the number 3678 there are 161 units error.For the number 3679 there are 99 units error.For the number 3680 there are 300 units error.For the number 3681 there are 380 units error.For the number 3682 there are 140 units error.For the number 3683 there are 124 units error.For the number 3684 there are 72 units error.For the number 3685 there are 91 units error.For the number 3686 there are 247 units error.For the number 3687 there are 233 units error.For the number 3688 there are 159 units error.For the number 3689 there are 127 units error.For the number 3690 there are 307 units error.For the number 3691 there are 64 units error.For the number 3692 there are 576 units error.For the number 3693 there are 130 units error.For the number 3694 there are 180 units error.For the number 3695 there are 321 units error.For the number 3696 there are 162 units error.For the number 3697 there are 81 units error.For the number 3698 there are 167 units error.For the number 3699 there are 48 units error.For the number 3700 there are 99 units error.For the number 3701 there are 184 units error.For the number 3702 there are 31 units error.For the number 3703 there are 229 units error.For the number 3704 there are 124 units error.For the number 3705 there are 414 units error.For the number 3706 there are 176 units error.For the number 3707 there are 1 units error.

For the number 3708 there are 175 units error.For the number 3709 there are 0 units error.For the number 3710 there are 229 units error.For the number 3711 there are 237 units error.For the number 3712 there are 345 units error.For the number 3713 there are 109 units error.For the number 3714 there are 108 units error.For the number 3715 there are 276 units error.For the number 3716 there are 124 units error.For the number 3717 there are 20 units error.For the number 3718 there are 184 units error.For the number 3719 there are 83 units error.For the number 3720 there are 637 units error.For the number 3721 there are 373 units error.For the number 3722 there are 19 units error.For the number 3723 there are 295 units error.For the number 3724 there are 40 units error.For the number 3725 there are 306 units error.For the number 3726 there are 97 units error.For the number 3727 there are 6 units error.For the number 3728 there are 252 units error.For the number 3729 there are 113 units error.For the number 3730 there are 345 units error.For the number 3731 there are 50 units error.For the number 3732 there are 178 units error.For the number 3733 there are 257 units error.For the number 3734 there are 67 units error.For the number 3735 there are 201 units error.For the number 3736 there are 343 units error.For the number 3737 there are 103 units error.For the number 3738 there are 41 units error.For the number 3739 there are 136 units error.For the number 3740 there are 17 units error.For the number 3741 there are 11 units error.For the number 3742 there are 243 units error.For the number 3743 there are 154 units error.For the number 3744 there are 346 units error.For the number 3745 there are 99 units error.For the number 3746 there are 160 units error.For the number 3747 there are 502 units error.For the number 3748 there are 167 units error.For the number 3749 there are 77 units error.For the number 3750 there are 178 units error.For the number 3751 there are 29 units error.For the number 3752 there are 66 units error.For the number 3753 there are 83 units error.For the number 3754 there are 172 units error.For the number 3755 there are 268 units error.For the number 3756 there are 244 units error.For the number 3757 there are 197 units error.For the number 3758 there are 502 units error.For the number 3759 there are 58 units error.

Page 53: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 3760 there are 168 units error.For the number 3761 there are 671 units error.For the number 3762 there are 109 units error.For the number 3763 there are 114 units error.For the number 3764 there are 468 units error.For the number 3765 there are 101 units error.For the number 3766 there are 114 units error.For the number 3767 there are 159 units error.For the number 3768 there are 72 units error.For the number 3769 there are 344 units error.For the number 3770 there are 449 units error.For the number 3771 there are 66 units error.For the number 3772 there are 338 units error.For the number 3773 there are 32 units error.For the number 3774 there are 71 units error.For the number 3775 there are 26 units error.For the number 3776 there are 3 units error.For the number 3777 there are 251 units error.For the number 3778 there are 41 units error.For the number 3779 there are 318 units error.For the number 3780 there are 23 units error.For the number 3781 there are 182 units error.For the number 3782 there are 419 units error.For the number 3783 there are 92 units error.For the number 3784 there are 172 units error.For the number 3785 there are 415 units error.For the number 3786 there are 101 units error.For the number 3787 there are 166 units error.For the number 3788 there are 68 units error.For the number 3789 there are 549 units error.For the number 3790 there are 429 units error.For the number 3791 there are 750 units error.For the number 3792 there are 158 units error.For the number 3793 there are 17 units error.For the number 3794 there are 39 units error.For the number 3795 there are 165 units error.For the number 3796 there are 40 units error.For the number 3797 there are 13 units error.For the number 3798 there are 264 units error.For the number 3799 there are 237 units error.For the number 3800 there are 328 units error.For the number 3801 there are 67 units error.For the number 3802 there are 166 units error.For the number 3803 there are 240 units error.For the number 3804 there are 301 units error.For the number 3805 there are 557 units error.For the number 3806 there are 87 units error.For the number 3807 there are 545 units error.For the number 3808 there are 401 units error.For the number 3809 there are 138 units error.For the number 3810 there are 16 units error.For the number 3811 there are 32 units error.

For the number 3812 there are 184 units error.For the number 3813 there are 183 units error.For the number 3814 there are 26 units error.For the number 3815 there are 307 units error.For the number 3816 there are 282 units error.For the number 3817 there are 295 units error.For the number 3818 there are 290 units error.For the number 3819 there are 66 units error.For the number 3820 there are 441 units error.For the number 3821 there are 128 units error.For the number 3822 there are 351 units error.For the number 3823 there are 349 units error.For the number 3824 there are 36 units error.For the number 3825 there are 108 units error.For the number 3826 there are 241 units error.For the number 3827 there are 327 units error.For the number 3828 there are 115 units error.For the number 3829 there are 459 units error.For the number 3830 there are 170 units error.For the number 3831 there are 174 units error.For the number 3832 there are 64 units error.For the number 3833 there are 65 units error.For the number 3834 there are 219 units error.For the number 3835 there are 46 units error.For the number 3836 there are 307 units error.For the number 3837 there are 602 units error.For the number 3838 there are 56 units error.For the number 3839 there are 81 units error.For the number 3840 there are 385 units error.For the number 3841 there are 147 units error.For the number 3842 there are 24 units error.For the number 3843 there are 222 units error.For the number 3844 there are 59 units error.For the number 3845 there are 171 units error.For the number 3846 there are 90 units error.For the number 3847 there are 105 units error.For the number 3848 there are 419 units error.For the number 3849 there are 262 units error.For the number 3850 there are 184 units error.For the number 3851 there are 76 units error.For the number 3852 there are 268 units error.For the number 3853 there are 3 units error.For the number 3854 there are 108 units error.For the number 3855 there are 111 units error.For the number 3856 there are 155 units error.For the number 3857 there are 136 units error.For the number 3858 there are 285 units error.For the number 3859 there are 51 units error.For the number 3860 there are 207 units error.For the number 3861 there are 248 units error.For the number 3862 there are 204 units error.For the number 3863 there are 148 units error.

Page 54: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 3864 there are 280 units error.For the number 3865 there are 154 units error.For the number 3866 there are 56 units error.For the number 3867 there are 220 units error.For the number 3868 there are 204 units error.For the number 3869 there are 268 units error.For the number 3870 there are 331 units error.For the number 3871 there are 221 units error.For the number 3872 there are 40 units error.For the number 3873 there are 169 units error.For the number 3874 there are 53 units error.For the number 3875 there are 168 units error.For the number 3876 there are 214 units error.For the number 3877 there are 203 units error.For the number 3878 there are 338 units error.For the number 3879 there are 187 units error.For the number 3880 there are 218 units error.For the number 3881 there are 403 units error.For the number 3882 there are 449 units error.For the number 3883 there are 180 units error.For the number 3884 there are 10 units error.For the number 3885 there are 56 units error.For the number 3886 there are 310 units error.For the number 3887 there are 264 units error.For the number 3888 there are 80 units error.For the number 3889 there are 99 units error.For the number 3890 there are 42 units error.For the number 3891 there are 187 units error.For the number 3892 there are 395 units error.For the number 3893 there are 60 units error.For the number 3894 there are 279 units error.For the number 3895 there are 43 units error.For the number 3896 there are 187 units error.For the number 3897 there are 44 units error.For the number 3898 there are 18 units error.For the number 3899 there are 55 units error.For the number 3900 there are 46 units error.For the number 3901 there are 2 units error.For the number 3902 there are 421 units error.For the number 3903 there are 241 units error.For the number 3904 there are 367 units error.For the number 3905 there are 310 units error.For the number 3906 there are 20 units error.For the number 3907 there are 259 units error.For the number 3908 there are 443 units error.For the number 3909 there are 95 units error.For the number 3910 there are 340 units error.For the number 3911 there are 20 units error.For the number 3912 there are 149 units error.For the number 3913 there are 141 units error.For the number 3914 there are 336 units error.For the number 3915 there are 58 units error.

For the number 3916 there are 222 units error.For the number 3917 there are 412 units error.For the number 3918 there are 531 units error.For the number 3919 there are 263 units error.For the number 3920 there are 262 units error.For the number 3921 there are 348 units error.For the number 3922 there are 273 units error.For the number 3923 there are 458 units error.For the number 3924 there are 81 units error.For the number 3925 there are 473 units error.For the number 3926 there are 534 units error.For the number 3927 there are 7 units error.For the number 3928 there are 383 units error.For the number 3929 there are 96 units error.For the number 3930 there are 212 units error.For the number 3931 there are 218 units error.For the number 3932 there are 428 units error.For the number 3933 there are 358 units error.For the number 3934 there are 290 units error.For the number 3935 there are 430 units error.For the number 3936 there are 236 units error.For the number 3937 there are 15 units error.For the number 3938 there are 174 units error.For the number 3939 there are 141 units error.For the number 3940 there are 222 units error.For the number 3941 there are 9 units error.For the number 3942 there are 87 units error.For the number 3943 there are 71 units error.For the number 3944 there are 360 units error.For the number 3945 there are 78 units error.For the number 3946 there are 146 units error.For the number 3947 there are 71 units error.For the number 3948 there are 67 units error.For the number 3949 there are 226 units error.For the number 3950 there are 92 units error.For the number 3951 there are 42 units error.For the number 3952 there are 396 units error.For the number 3953 there are 460 units error.For the number 3954 there are 335 units error.For the number 3955 there are 61 units error.For the number 3956 there are 85 units error.For the number 3957 there are 106 units error.For the number 3958 there are 237 units error.For the number 3959 there are 247 units error.For the number 3960 there are 31 units error.For the number 3961 there are 142 units error.For the number 3962 there are 420 units error.For the number 3963 there are 47 units error.For the number 3964 there are 131 units error.For the number 3965 there are 594 units error.For the number 3966 there are 183 units error.For the number 3967 there are 430 units error.

Page 55: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 3968 there are 128 units error.For the number 3969 there are 40 units error.For the number 3970 there are 386 units error.For the number 3971 there are 184 units error.For the number 3972 there are 122 units error.For the number 3973 there are 63 units error.For the number 3974 there are 360 units error.For the number 3975 there are 277 units error.For the number 3976 there are 120 units error.For the number 3977 there are 345 units error.For the number 3978 there are 125 units error.For the number 3979 there are 420 units error.For the number 3980 there are 762 units error.For the number 3981 there are 100 units error.For the number 3982 there are 75 units error.For the number 3983 there are 186 units error.For the number 3984 there are 69 units error.For the number 3985 there are 104 units error.For the number 3986 there are 242 units error.For the number 3987 there are 25 units error.For the number 3988 there are 660 units error.For the number 3989 there are 238 units error.For the number 3990 there are 63 units error.For the number 3991 there are 20 units error.For the number 3992 there are 281 units error.For the number 3993 there are 51 units error.For the number 3994 there are 51 units error.For the number 3995 there are 104 units error.For the number 3996 there are 274 units error.For the number 3997 there are 276 units error.For the number 3998 there are 407 units error.For the number 3999 there are 159 units error.For the number 4000 there are 180 units error.For the number 4001 there are 74 units error.For the number 4002 there are 238 units error.For the number 4003 there are 185 units error.For the number 4004 there are 475 units error.For the number 4005 there are 127 units error.For the number 4006 there are 433 units error.For the number 4007 there are 210 units error.For the number 4008 there are 119 units error.For the number 4009 there are 172 units error.For the number 4010 there are 205 units error.For the number 4011 there are 410 units error.For the number 4012 there are 109 units error.For the number 4013 there are 11 units error.For the number 4014 there are 113 units error.For the number 4015 there are 154 units error.For the number 4016 there are 41 units error.For the number 4017 there are 75 units error.For the number 4018 there are 133 units error.For the number 4019 there are 74 units error.

For the number 4020 there are 101 units error.For the number 4021 there are 341 units error.For the number 4022 there are 121 units error.For the number 4023 there are 288 units error.For the number 4024 there are 173 units error.For the number 4025 there are 142 units error.For the number 4026 there are 110 units error.For the number 4027 there are 290 units error.For the number 4028 there are 52 units error.For the number 4029 there are 274 units error.For the number 4030 there are 468 units error.For the number 4031 there are 234 units error.For the number 4032 there are 85 units error.For the number 4033 there are 15 units error.For the number 4034 there are 93 units error.For the number 4035 there are 234 units error.For the number 4036 there are 681 units error.For the number 4037 there are 234 units error.For the number 4038 there are 139 units error.For the number 4039 there are 124 units error.For the number 4040 there are 117 units error.For the number 4041 there are 24 units error.For the number 4042 there are 158 units error.For the number 4043 there are 25 units error.For the number 4044 there are 397 units error.For the number 4045 there are 130 units error.For the number 4046 there are 174 units error.For the number 4047 there are 50 units error.For the number 4048 there are 108 units error.For the number 4049 there are 157 units error.For the number 4050 there are 164 units error.For the number 4051 there are 296 units error.For the number 4052 there are 211 units error.For the number 4053 there are 228 units error.For the number 4054 there are 173 units error.For the number 4055 there are 325 units error.For the number 4056 there are 239 units error.For the number 4057 there are 52 units error.For the number 4058 there are 13 units error.For the number 4059 there are 285 units error.For the number 4060 there are 22 units error.For the number 4061 there are 247 units error.For the number 4062 there are 318 units error.For the number 4063 there are 118 units error.For the number 4064 there are 125 units error.For the number 4065 there are 65 units error.For the number 4066 there are 60 units error.For the number 4067 there are 10 units error.For the number 4068 there are 62 units error.For the number 4069 there are 216 units error.For the number 4070 there are 209 units error.For the number 4071 there are 106 units error.

Page 56: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 4072 there are 183 units error.For the number 4073 there are 79 units error.For the number 4074 there are 286 units error.For the number 4075 there are 509 units error.For the number 4076 there are 18 units error.For the number 4077 there are 200 units error.For the number 4078 there are 263 units error.For the number 4079 there are 284 units error.For the number 4080 there are 239 units error.For the number 4081 there are 159 units error.For the number 4082 there are 32 units error.For the number 4083 there are 96 units error.For the number 4084 there are 134 units error.For the number 4085 there are 205 units error.For the number 4086 there are 61 units error.For the number 4087 there are 174 units error.For the number 4088 there are 155 units error.For the number 4089 there are 52 units error.For the number 4090 there are 180 units error.For the number 4091 there are 64 units error.For the number 4092 there are 90 units error.For the number 4093 there are 107 units error.For the number 4094 there are 31 units error.For the number 4095 there are 73 units error.For the number 4096 there are 213 units error.For the number 4097 there are 173 units error.For the number 4098 there are 14 units error.For the number 4099 there are 176 units error.For the number 4100 there are 303 units error.For the number 4101 there are 49 units error.For the number 4102 there are 469 units error.For the number 4103 there are 238 units error.For the number 4104 there are 288 units error.For the number 4105 there are 520 units error.For the number 4106 there are 145 units error.For the number 4107 there are 54 units error.For the number 4108 there are 331 units error.For the number 4109 there are 62 units error.For the number 4110 there are 442 units error.For the number 4111 there are 255 units error.For the number 4112 there are 475 units error.For the number 4113 there are 147 units error.For the number 4114 there are 64 units error.For the number 4115 there are 89 units error.For the number 4116 there are 215 units error.For the number 4117 there are 164 units error.For the number 4118 there are 72 units error.For the number 4119 there are 198 units error.For the number 4120 there are 99 units error.For the number 4121 there are 681 units error.For the number 4122 there are 61 units error.For the number 4123 there are 420 units error.

For the number 4124 there are 548 units error.For the number 4125 there are 7 units error.For the number 4126 there are 418 units error.For the number 4127 there are 72 units error.For the number 4128 there are 165 units error.For the number 4129 there are 100 units error.For the number 4130 there are 154 units error.For the number 4131 there are 12 units error.For the number 4132 there are 124 units error.For the number 4133 there are 373 units error.For the number 4134 there are 227 units error.For the number 4135 there are 240 units error.For the number 4136 there are 610 units error.For the number 4137 there are 354 units error.For the number 4138 there are 325 units error.For the number 4139 there are 141 units error.For the number 4140 there are 217 units error.For the number 4141 there are 275 units error.For the number 4142 there are 310 units error.For the number 4143 there are 207 units error.For the number 4144 there are 321 units error.For the number 4145 there are 129 units error.For the number 4146 there are 258 units error.For the number 4147 there are 17 units error.For the number 4148 there are 327 units error.For the number 4149 there are 124 units error.For the number 4150 there are 100 units error.For the number 4151 there are 404 units error.For the number 4152 there are 360 units error.For the number 4153 there are 289 units error.For the number 4154 there are 35 units error.For the number 4155 there are 52 units error.For the number 4156 there are 145 units error.For the number 4157 there are 204 units error.For the number 4158 there are 295 units error.For the number 4159 there are 218 units error.For the number 4160 there are 609 units error.For the number 4161 there are 240 units error.For the number 4162 there are 350 units error.For the number 4163 there are 278 units error.For the number 4164 there are 153 units error.For the number 4165 there are 42 units error.For the number 4166 there are 8 units error.For the number 4167 there are 32 units error.For the number 4168 there are 493 units error.For the number 4169 there are 131 units error.For the number 4170 there are 22 units error.For the number 4171 there are 86 units error.For the number 4172 there are 7 units error.For the number 4173 there are 150 units error.For the number 4174 there are 89 units error.For the number 4175 there are 2 units error.

Page 57: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 4176 there are 80 units error.For the number 4177 there are 40 units error.For the number 4178 there are 63 units error.For the number 4179 there are 391 units error.For the number 4180 there are 230 units error.For the number 4181 there are 173 units error.For the number 4182 there are 542 units error.For the number 4183 there are 218 units error.For the number 4184 there are 407 units error.For the number 4185 there are 116 units error.For the number 4186 there are 79 units error.For the number 4187 there are 653 units error.For the number 4188 there are 89 units error.For the number 4189 there are 489 units error.For the number 4190 there are 314 units error.For the number 4191 there are 109 units error.For the number 4192 there are 312 units error.For the number 4193 there are 154 units error.For the number 4194 there are 245 units error.For the number 4195 there are 110 units error.For the number 4196 there are 256 units error.For the number 4197 there are 138 units error.For the number 4198 there are 24 units error.For the number 4199 there are 268 units error.For the number 4200 there are 104 units error.For the number 4201 there are 167 units error.For the number 4202 there are 130 units error.For the number 4203 there are 24 units error.For the number 4204 there are 526 units error.For the number 4205 there are 69 units error.For the number 4206 there are 361 units error.For the number 4207 there are 122 units error.For the number 4208 there are 157 units error.For the number 4209 there are 351 units error.For the number 4210 there are 280 units error.For the number 4211 there are 307 units error.For the number 4212 there are 309 units error.For the number 4213 there are 325 units error.For the number 4214 there are 49 units error.For the number 4215 there are 210 units error.For the number 4216 there are 80 units error.For the number 4217 there are 88 units error.For the number 4218 there are 87 units error.For the number 4219 there are 229 units error.For the number 4220 there are 395 units error.For the number 4221 there are 176 units error.For the number 4222 there are 63 units error.For the number 4223 there are 58 units error.For the number 4224 there are 241 units error.For the number 4225 there are 66 units error.For the number 4226 there are 475 units error.For the number 4227 there are 338 units error.

For the number 4228 there are 428 units error.For the number 4229 there are 58 units error.For the number 4230 there are 124 units error.For the number 4231 there are 459 units error.For the number 4232 there are 140 units error.For the number 4233 there are 262 units error.For the number 4234 there are 86 units error.For the number 4235 there are 287 units error.For the number 4236 there are 246 units error.For the number 4237 there are 59 units error.For the number 4238 there are 265 units error.For the number 4239 there are 246 units error.For the number 4240 there are 121 units error.For the number 4241 there are 135 units error.For the number 4242 there are 78 units error.For the number 4243 there are 291 units error.For the number 4244 there are 84 units error.For the number 4245 there are 99 units error.For the number 4246 there are 131 units error.For the number 4247 there are 73 units error.For the number 4248 there are 138 units error.For the number 4249 there are 228 units error.For the number 4250 there are 303 units error.For the number 4251 there are 151 units error.For the number 4252 there are 239 units error.For the number 4253 there are 212 units error.For the number 4254 there are 557 units error.For the number 4255 there are 126 units error.For the number 4256 there are 148 units error.For the number 4257 there are 332 units error.For the number 4258 there are 224 units error.For the number 4259 there are 8 units error.For the number 4260 there are 431 units error.For the number 4261 there are 406 units error.For the number 4262 there are 435 units error.For the number 4263 there are 142 units error.For the number 4264 there are 443 units error.For the number 4265 there are 153 units error.For the number 4266 there are 391 units error.For the number 4267 there are 28 units error.For the number 4268 there are 2 units error.For the number 4269 there are 43 units error.For the number 4270 there are 555 units error.For the number 4271 there are 337 units error.For the number 4272 there are 199 units error.For the number 4273 there are 50 units error.For the number 4274 there are 168 units error.For the number 4275 there are 113 units error.For the number 4276 there are 406 units error.For the number 4277 there are 61 units error.For the number 4278 there are 26 units error.For the number 4279 there are 262 units error.

Page 58: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 4280 there are 310 units error.For the number 4281 there are 100 units error.For the number 4282 there are 106 units error.For the number 4283 there are 260 units error.For the number 4284 there are 205 units error.For the number 4285 there are 258 units error.For the number 4286 there are 8 units error.For the number 4287 there are 248 units error.For the number 4288 there are 163 units error.For the number 4289 there are 249 units error.For the number 4290 there are 51 units error.For the number 4291 there are 820 units error.For the number 4292 there are 647 units error.For the number 4293 there are 262 units error.For the number 4294 there are 200 units error.For the number 4295 there are 114 units error.For the number 4296 there are 418 units error.For the number 4297 there are 442 units error.For the number 4298 there are 8 units error.For the number 4299 there are 203 units error.For the number 4300 there are 434 units error.For the number 4301 there are 454 units error.For the number 4302 there are 293 units error.For the number 4303 there are 282 units error.For the number 4304 there are 101 units error.For the number 4305 there are 88 units error.For the number 4306 there are 552 units error.For the number 4307 there are 161 units error.For the number 4308 there are 182 units error.For the number 4309 there are 173 units error.For the number 4310 there are 310 units error.For the number 4311 there are 265 units error.For the number 4312 there are 372 units error.For the number 4313 there are 105 units error.For the number 4314 there are 150 units error.For the number 4315 there are 119 units error.For the number 4316 there are 242 units error.For the number 4317 there are 15 units error.For the number 4318 there are 528 units error.For the number 4319 there are 201 units error.For the number 4320 there are 321 units error.For the number 4321 there are 210 units error.For the number 4322 there are 396 units error.For the number 4323 there are 160 units error.For the number 4324 there are 329 units error.For the number 4325 there are 377 units error.For the number 4326 there are 201 units error.For the number 4327 there are 282 units error.For the number 4328 there are 314 units error.For the number 4329 there are 63 units error.For the number 4330 there are 23 units error.For the number 4331 there are 93 units error.

For the number 4332 there are 5 units error.For the number 4333 there are 114 units error.For the number 4334 there are 432 units error.For the number 4335 there are 258 units error.For the number 4336 there are 77 units error.For the number 4337 there are 97 units error.For the number 4338 there are 121 units error.For the number 4339 there are 158 units error.For the number 4340 there are 425 units error.For the number 4341 there are 305 units error.For the number 4342 there are 95 units error.For the number 4343 there are 372 units error.For the number 4344 there are 111 units error.For the number 4345 there are 99 units error.For the number 4346 there are 331 units error.For the number 4347 there are 135 units error.For the number 4348 there are 316 units error.For the number 4349 there are 51 units error.For the number 4350 there are 470 units error.For the number 4351 there are 458 units error.For the number 4352 there are 320 units error.For the number 4353 there are 218 units error.For the number 4354 there are 105 units error.For the number 4355 there are 255 units error.For the number 4356 there are 182 units error.For the number 4357 there are 435 units error.For the number 4358 there are 75 units error.For the number 4359 there are 123 units error.For the number 4360 there are 129 units error.For the number 4361 there are 100 units error.For the number 4362 there are 149 units error.For the number 4363 there are 135 units error.For the number 4364 there are 258 units error.For the number 4365 there are 257 units error.For the number 4366 there are 170 units error.For the number 4367 there are 160 units error.For the number 4368 there are 172 units error.For the number 4369 there are 2 units error.For the number 4370 there are 423 units error.For the number 4371 there are 54 units error.For the number 4372 there are 285 units error.For the number 4373 there are 280 units error.For the number 4374 there are 102 units error.For the number 4375 there are 186 units error.For the number 4376 there are 566 units error.For the number 4377 there are 452 units error.For the number 4378 there are 65 units error.For the number 4379 there are 231 units error.For the number 4380 there are 194 units error.For the number 4381 there are 115 units error.For the number 4382 there are 277 units error.For the number 4383 there are 410 units error.

Page 59: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 4384 there are 582 units error.For the number 4385 there are 193 units error.For the number 4386 there are 188 units error.For the number 4387 there are 296 units error.For the number 4388 there are 41 units error.For the number 4389 there are 281 units error.For the number 4390 there are 207 units error.For the number 4391 there are 77 units error.For the number 4392 there are 166 units error.For the number 4393 there are 247 units error.For the number 4394 there are 457 units error.For the number 4395 there are 47 units error.For the number 4396 there are 196 units error.For the number 4397 there are 51 units error.For the number 4398 there are 93 units error.For the number 4399 there are 100 units error.For the number 4400 there are 19 units error.For the number 4401 there are 354 units error.For the number 4402 there are 459 units error.For the number 4403 there are 103 units error.For the number 4404 there are 14 units error.For the number 4405 there are 351 units error.For the number 4406 there are 683 units error.For the number 4407 there are 424 units error.For the number 4408 there are 61 units error.For the number 4409 there are 278 units error.For the number 4410 there are 3 units error.For the number 4411 there are 27 units error.For the number 4412 there are 175 units error.For the number 4413 there are 60 units error.For the number 4414 there are 243 units error.For the number 4415 there are 532 units error.For the number 4416 there are 67 units error.For the number 4417 there are 3 units error.For the number 4418 there are 423 units error.For the number 4419 there are 189 units error.For the number 4420 there are 68 units error.For the number 4421 there are 315 units error.For the number 4422 there are 388 units error.For the number 4423 there are 381 units error.For the number 4424 there are 327 units error.For the number 4425 there are 159 units error.For the number 4426 there are 1 units error.For the number 4427 there are 107 units error.For the number 4428 there are 313 units error.For the number 4429 there are 199 units error.For the number 4430 there are 335 units error.For the number 4431 there are 169 units error.For the number 4432 there are 158 units error.For the number 4433 there are 218 units error.For the number 4434 there are 65 units error.For the number 4435 there are 204 units error.

For the number 4436 there are 234 units error.For the number 4437 there are 382 units error.For the number 4438 there are 276 units error.For the number 4439 there are 197 units error.For the number 4440 there are 250 units error.For the number 4441 there are 145 units error.For the number 4442 there are 119 units error.For the number 4443 there are 479 units error.For the number 4444 there are 159 units error.For the number 4445 there are 305 units error.For the number 4446 there are 398 units error.For the number 4447 there are 395 units error.For the number 4448 there are 70 units error.For the number 4449 there are 117 units error.For the number 4450 there are 109 units error.For the number 4451 there are 248 units error.For the number 4452 there are 13 units error.For the number 4453 there are 523 units error.For the number 4454 there are 124 units error.For the number 4455 there are 41 units error.For the number 4456 there are 74 units error.For the number 4457 there are 180 units error.For the number 4458 there are 265 units error.For the number 4459 there are 138 units error.For the number 4460 there are 147 units error.For the number 4461 there are 458 units error.For the number 4462 there are 116 units error.For the number 4463 there are 170 units error.For the number 4464 there are 175 units error.For the number 4465 there are 203 units error.For the number 4466 there are 575 units error.For the number 4467 there are 386 units error.For the number 4468 there are 431 units error.For the number 4469 there are 83 units error.For the number 4470 there are 361 units error.For the number 4471 there are 324 units error.For the number 4472 there are 685 units error.For the number 4473 there are 56 units error.For the number 4474 there are 278 units error.For the number 4475 there are 273 units error.For the number 4476 there are 30 units error.For the number 4477 there are 21 units error.For the number 4478 there are 53 units error.For the number 4479 there are 2 units error.For the number 4480 there are 48 units error.For the number 4481 there are 272 units error.For the number 4482 there are 47 units error.For the number 4483 there are 241 units error.For the number 4484 there are 263 units error.For the number 4485 there are 11 units error.For the number 4486 there are 262 units error.For the number 4487 there are 269 units error.

Page 60: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 4488 there are 65 units error.For the number 4489 there are 35 units error.For the number 4490 there are 329 units error.For the number 4491 there are 165 units error.For the number 4492 there are 69 units error.For the number 4493 there are 4 units error.For the number 4494 there are 51 units error.For the number 4495 there are 218 units error.For the number 4496 there are 79 units error.For the number 4497 there are 2 units error.For the number 4498 there are 469 units error.For the number 4499 there are 58 units error.For the number 4500 there are 111 units error.For the number 4501 there are 103 units error.For the number 4502 there are 167 units error.For the number 4503 there are 102 units error.For the number 4504 there are 39 units error.For the number 4505 there are 469 units error.For the number 4506 there are 375 units error.For the number 4507 there are 325 units error.For the number 4508 there are 81 units error.For the number 4509 there are 17 units error.For the number 4510 there are 303 units error.For the number 4511 there are 103 units error.For the number 4512 there are 133 units error.For the number 4513 there are 106 units error.For the number 4514 there are 396 units error.For the number 4515 there are 126 units error.For the number 4516 there are 293 units error.For the number 4517 there are 117 units error.For the number 4518 there are 238 units error.For the number 4519 there are 158 units error.For the number 4520 there are 652 units error.For the number 4521 there are 7 units error.For the number 4522 there are 32 units error.For the number 4523 there are 248 units error.For the number 4524 there are 179 units error.For the number 4525 there are 279 units error.For the number 4526 there are 198 units error.For the number 4527 there are 73 units error.For the number 4528 there are 216 units error.For the number 4529 there are 412 units error.For the number 4530 there are 91 units error.For the number 4531 there are 19 units error.For the number 4532 there are 511 units error.For the number 4533 there are 134 units error.For the number 4534 there are 214 units error.For the number 4535 there are 187 units error.For the number 4536 there are 231 units error.For the number 4537 there are 115 units error.For the number 4538 there are 197 units error.For the number 4539 there are 2 units error.

For the number 4540 there are 4 units error.For the number 4541 there are 142 units error.For the number 4542 there are 472 units error.For the number 4543 there are 29 units error.For the number 4544 there are 222 units error.For the number 4545 there are 204 units error.For the number 4546 there are 80 units error.For the number 4547 there are 92 units error.For the number 4548 there are 367 units error.For the number 4549 there are 33 units error.For the number 4550 there are 275 units error.For the number 4551 there are 214 units error.For the number 4552 there are 668 units error.For the number 4553 there are 312 units error.For the number 4554 there are 248 units error.For the number 4555 there are 229 units error.For the number 4556 there are 674 units error.For the number 4557 there are 47 units error.For the number 4558 there are 234 units error.For the number 4559 there are 685 units error.For the number 4560 there are 352 units error.For the number 4561 there are 85 units error.For the number 4562 there are 290 units error.For the number 4563 there are 291 units error.For the number 4564 there are 152 units error.For the number 4565 there are 302 units error.For the number 4566 there are 39 units error.For the number 4567 there are 61 units error.For the number 4568 there are 235 units error.For the number 4569 there are 13 units error.For the number 4570 there are 53 units error.For the number 4571 there are 54 units error.For the number 4572 there are 577 units error.For the number 4573 there are 64 units error.For the number 4574 there are 40 units error.For the number 4575 there are 219 units error.For the number 4576 there are 109 units error.For the number 4577 there are 39 units error.For the number 4578 there are 544 units error.For the number 4579 there are 74 units error.For the number 4580 there are 322 units error.For the number 4581 there are 166 units error.For the number 4582 there are 356 units error.For the number 4583 there are 159 units error.For the number 4584 there are 54 units error.For the number 4585 there are 302 units error.For the number 4586 there are 385 units error.For the number 4587 there are 142 units error.For the number 4588 there are 396 units error.For the number 4589 there are 309 units error.For the number 4590 there are 70 units error.For the number 4591 there are 417 units error.

Page 61: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 4592 there are 630 units error.For the number 4593 there are 20 units error.For the number 4594 there are 107 units error.For the number 4595 there are 123 units error.For the number 4596 there are 288 units error.For the number 4597 there are 107 units error.For the number 4598 there are 469 units error.For the number 4599 there are 379 units error.For the number 4600 there are 121 units error.For the number 4601 there are 478 units error.For the number 4602 there are 479 units error.For the number 4603 there are 193 units error.For the number 4604 there are 58 units error.For the number 4605 there are 22 units error.For the number 4606 there are 109 units error.For the number 4607 there are 94 units error.For the number 4608 there are 278 units error.For the number 4609 there are 378 units error.For the number 4610 there are 196 units error.For the number 4611 there are 432 units error.For the number 4612 there are 19 units error.For the number 4613 there are 357 units error.For the number 4614 there are 133 units error.For the number 4615 there are 121 units error.For the number 4616 there are 174 units error.For the number 4617 there are 241 units error.For the number 4618 there are 94 units error.For the number 4619 there are 24 units error.For the number 4620 there are 165 units error.For the number 4621 there are 370 units error.For the number 4622 there are 98 units error.For the number 4623 there are 153 units error.For the number 4624 there are 155 units error.For the number 4625 there are 68 units error.For the number 4626 there are 145 units error.For the number 4627 there are 147 units error.For the number 4628 there are 579 units error.For the number 4629 there are 147 units error.For the number 4630 there are 66 units error.For the number 4631 there are 266 units error.For the number 4632 there are 559 units error.For the number 4633 there are 195 units error.For the number 4634 there are 451 units error.For the number 4635 there are 130 units error.For the number 4636 there are 58 units error.For the number 4637 there are 602 units error.For the number 4638 there are 154 units error.For the number 4639 there are 254 units error.For the number 4640 there are 535 units error.For the number 4641 there are 183 units error.For the number 4642 there are 183 units error.For the number 4643 there are 121 units error.

For the number 4644 there are 252 units error.For the number 4645 there are 331 units error.For the number 4646 there are 255 units error.For the number 4647 there are 435 units error.For the number 4648 there are 199 units error.For the number 4649 there are 184 units error.For the number 4650 there are 320 units error.For the number 4651 there are 111 units error.For the number 4652 there are 5 units error.For the number 4653 there are 399 units error.For the number 4654 there are 488 units error.For the number 4655 there are 134 units error.For the number 4656 there are 259 units error.For the number 4657 there are 604 units error.For the number 4658 there are 255 units error.For the number 4659 there are 138 units error.For the number 4660 there are 151 units error.For the number 4661 there are 2 units error.For the number 4662 there are 36 units error.For the number 4663 there are 45 units error.For the number 4664 there are 573 units error.For the number 4665 there are 122 units error.For the number 4666 there are 25 units error.For the number 4667 there are 362 units error.For the number 4668 there are 74 units error.For the number 4669 there are 250 units error.For the number 4670 there are 355 units error.For the number 4671 there are 150 units error.For the number 4672 there are 217 units error.For the number 4673 there are 210 units error.For the number 4674 there are 359 units error.For the number 4675 there are 34 units error.For the number 4676 there are 165 units error.For the number 4677 there are 250 units error.For the number 4678 there are 71 units error.For the number 4679 there are 335 units error.For the number 4680 there are 250 units error.For the number 4681 there are 462 units error.For the number 4682 there are 279 units error.For the number 4683 there are 258 units error.For the number 4684 there are 8 units error.For the number 4685 there are 142 units error.For the number 4686 there are 230 units error.For the number 4687 there are 540 units error.For the number 4688 there are 248 units error.For the number 4689 there are 183 units error.For the number 4690 there are 557 units error.For the number 4691 there are 488 units error.For the number 4692 there are 2 units error.For the number 4693 there are 191 units error.For the number 4694 there are 51 units error.For the number 4695 there are 53 units error.

Page 62: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 4696 there are 65 units error.For the number 4697 there are 277 units error.For the number 4698 there are 122 units error.For the number 4699 there are 412 units error.For the number 4700 there are 167 units error.For the number 4701 there are 117 units error.For the number 4702 there are 159 units error.For the number 4703 there are 364 units error.For the number 4704 there are 141 units error.For the number 4705 there are 152 units error.For the number 4706 there are 126 units error.For the number 4707 there are 441 units error.For the number 4708 there are 876 units error.For the number 4709 there are 511 units error.For the number 4710 there are 132 units error.For the number 4711 there are 279 units error.For the number 4712 there are 386 units error.For the number 4713 there are 166 units error.For the number 4714 there are 29 units error.For the number 4715 there are 98 units error.For the number 4716 there are 359 units error.For the number 4717 there are 329 units error.For the number 4718 there are 30 units error.For the number 4719 there are 262 units error.For the number 4720 there are 17 units error.For the number 4721 there are 11 units error.For the number 4722 there are 288 units error.For the number 4723 there are 128 units error.For the number 4724 there are 41 units error.For the number 4725 there are 256 units error.For the number 4726 there are 371 units error.For the number 4727 there are 25 units error.For the number 4728 there are 377 units error.For the number 4729 there are 172 units error.For the number 4730 there are 180 units error.For the number 4731 there are 19 units error.For the number 4732 there are 221 units error.For the number 4733 there are 86 units error.For the number 4734 there are 40 units error.For the number 4735 there are 41 units error.For the number 4736 there are 204 units error.For the number 4737 there are 189 units error.For the number 4738 there are 618 units error.For the number 4739 there are 111 units error.For the number 4740 there are 176 units error.For the number 4741 there are 113 units error.For the number 4742 there are 129 units error.For the number 4743 there are 236 units error.For the number 4744 there are 330 units error.For the number 4745 there are 456 units error.For the number 4746 there are 231 units error.For the number 4747 there are 452 units error.

For the number 4748 there are 110 units error.For the number 4749 there are 145 units error.For the number 4750 there are 366 units error.For the number 4751 there are 172 units error.For the number 4752 there are 12 units error.For the number 4753 there are 380 units error.For the number 4754 there are 148 units error.For the number 4755 there are 72 units error.For the number 4756 there are 124 units error.For the number 4757 there are 419 units error.For the number 4758 there are 382 units error.For the number 4759 there are 382 units error.For the number 4760 there are 529 units error.For the number 4761 there are 252 units error.For the number 4762 there are 415 units error.For the number 4763 there are 332 units error.For the number 4764 there are 264 units error.For the number 4765 there are 270 units error.For the number 4766 there are 237 units error.For the number 4767 there are 202 units error.For the number 4768 there are 202 units error.For the number 4769 there are 98 units error.For the number 4770 there are 28 units error.For the number 4771 there are 8 units error.For the number 4772 there are 555 units error.For the number 4773 there are 312 units error.For the number 4774 there are 45 units error.For the number 4775 there are 94 units error.For the number 4776 there are 112 units error.For the number 4777 there are 92 units error.For the number 4778 there are 83 units error.For the number 4779 there are 335 units error.For the number 4780 there are 39 units error.For the number 4781 there are 64 units error.For the number 4782 there are 55 units error.For the number 4783 there are 1 units error.For the number 4784 there are 166 units error.For the number 4785 there are 62 units error.For the number 4786 there are 320 units error.For the number 4787 there are 112 units error.For the number 4788 there are 134 units error.For the number 4789 there are 772 units error.For the number 4790 there are 380 units error.For the number 4791 there are 343 units error.For the number 4792 there are 119 units error.For the number 4793 there are 94 units error.For the number 4794 there are 152 units error.For the number 4795 there are 344 units error.For the number 4796 there are 132 units error.For the number 4797 there are 94 units error.For the number 4798 there are 734 units error.For the number 4799 there are 389 units error.

Page 63: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 4800 there are 56 units error.For the number 4801 there are 158 units error.For the number 4802 there are 403 units error.For the number 4803 there are 71 units error.For the number 4804 there are 535 units error.For the number 4805 there are 301 units error.For the number 4806 there are 293 units error.For the number 4807 there are 136 units error.For the number 4808 there are 129 units error.For the number 4809 there are 149 units error.For the number 4810 there are 601 units error.For the number 4811 there are 287 units error.For the number 4812 there are 300 units error.For the number 4813 there are 25 units error.For the number 4814 there are 241 units error.For the number 4815 there are 193 units error.For the number 4816 there are 135 units error.For the number 4817 there are 301 units error.For the number 4818 there are 401 units error.For the number 4819 there are 353 units error.For the number 4820 there are 237 units error.For the number 4821 there are 125 units error.For the number 4822 there are 38 units error.For the number 4823 there are 121 units error.For the number 4824 there are 227 units error.For the number 4825 there are 403 units error.For the number 4826 there are 123 units error.For the number 4827 there are 42 units error.For the number 4828 there are 105 units error.For the number 4829 there are 393 units error.For the number 4830 there are 188 units error.For the number 4831 there are 30 units error.For the number 4832 there are 212 units error.For the number 4833 there are 304 units error.For the number 4834 there are 349 units error.For the number 4835 there are 180 units error.For the number 4836 there are 95 units error.For the number 4837 there are 373 units error.For the number 4838 there are 318 units error.For the number 4839 there are 450 units error.For the number 4840 there are 122 units error.For the number 4841 there are 231 units error.For the number 4842 there are 190 units error.For the number 4843 there are 351 units error.For the number 4844 there are 316 units error.For the number 4845 there are 210 units error.For the number 4846 there are 61 units error.For the number 4847 there are 326 units error.For the number 4848 there are 161 units error.For the number 4849 there are 263 units error.For the number 4850 there are 28 units error.For the number 4851 there are 316 units error.

For the number 4852 there are 50 units error.For the number 4853 there are 315 units error.For the number 4854 there are 684 units error.For the number 4855 there are 53 units error.For the number 4856 there are 326 units error.For the number 4857 there are 188 units error.For the number 4858 there are 469 units error.For the number 4859 there are 43 units error.For the number 4860 there are 219 units error.For the number 4861 there are 186 units error.For the number 4862 there are 227 units error.For the number 4863 there are 148 units error.For the number 4864 there are 455 units error.For the number 4865 there are 61 units error.For the number 4866 there are 1 units error.For the number 4867 there are 611 units error.For the number 4868 there are 435 units error.For the number 4869 there are 146 units error.For the number 4870 there are 82 units error.For the number 4871 there are 169 units error.For the number 4872 there are 45 units error.For the number 4873 there are 427 units error.For the number 4874 there are 34 units error.For the number 4875 there are 402 units error.For the number 4876 there are 447 units error.For the number 4877 there are 195 units error.For the number 4878 there are 494 units error.For the number 4879 there are 217 units error.For the number 4880 there are 412 units error.For the number 4881 there are 440 units error.For the number 4882 there are 403 units error.For the number 4883 there are 61 units error.For the number 4884 there are 126 units error.For the number 4885 there are 60 units error.For the number 4886 there are 193 units error.For the number 4887 there are 372 units error.For the number 4888 there are 511 units error.For the number 4889 there are 14 units error.For the number 4890 there are 404 units error.For the number 4891 there are 8 units error.For the number 4892 there are 365 units error.For the number 4893 there are 78 units error.For the number 4894 there are 50 units error.For the number 4895 there are 345 units error.For the number 4896 there are 562 units error.For the number 4897 there are 171 units error.For the number 4898 there are 73 units error.For the number 4899 there are 67 units error.For the number 4900 there are 321 units error.For the number 4901 there are 324 units error.For the number 4902 there are 278 units error.For the number 4903 there are 246 units error.

Page 64: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 4904 there are 482 units error.For the number 4905 there are 638 units error.For the number 4906 there are 456 units error.For the number 4907 there are 109 units error.For the number 4908 there are 671 units error.For the number 4909 there are 469 units error.For the number 4910 there are 231 units error.For the number 4911 there are 106 units error.For the number 4912 there are 91 units error.For the number 4913 there are 119 units error.For the number 4914 there are 179 units error.For the number 4915 there are 174 units error.For the number 4916 there are 308 units error.For the number 4917 there are 243 units error.For the number 4918 there are 151 units error.For the number 4919 there are 39 units error.For the number 4920 there are 26 units error.For the number 4921 there are 145 units error.For the number 4922 there are 98 units error.For the number 4923 there are 80 units error.For the number 4924 there are 208 units error.For the number 4925 there are 356 units error.For the number 4926 there are 200 units error.For the number 4927 there are 101 units error.For the number 4928 there are 529 units error.For the number 4929 there are 53 units error.For the number 4930 there are 381 units error.For the number 4931 there are 78 units error.For the number 4932 there are 283 units error.For the number 4933 there are 320 units error.For the number 4934 there are 195 units error.For the number 4935 there are 6 units error.For the number 4936 there are 216 units error.For the number 4937 there are 64 units error.For the number 4938 there are 517 units error.For the number 4939 there are 414 units error.For the number 4940 there are 132 units error.For the number 4941 there are 911 units error.For the number 4942 there are 80 units error.For the number 4943 there are 233 units error.For the number 4944 there are 415 units error.For the number 4945 there are 200 units error.For the number 4946 there are 97 units error.For the number 4947 there are 143 units error.For the number 4948 there are 347 units error.For the number 4949 there are 569 units error.For the number 4950 there are 219 units error.For the number 4951 there are 197 units error.For the number 4952 there are 382 units error.For the number 4953 there are 60 units error.For the number 4954 there are 89 units error.For the number 4955 there are 358 units error.

For the number 4956 there are 91 units error.For the number 4957 there are 151 units error.For the number 4958 there are 159 units error.For the number 4959 there are 290 units error.For the number 4960 there are 109 units error.For the number 4961 there are 194 units error.For the number 4962 there are 64 units error.For the number 4963 there are 15 units error.For the number 4964 there are 349 units error.For the number 4965 there are 65 units error.For the number 4966 there are 117 units error.For the number 4967 there are 362 units error.For the number 4968 there are 156 units error.For the number 4969 there are 499 units error.For the number 4970 there are 318 units error.For the number 4971 there are 108 units error.For the number 4972 there are 66 units error.For the number 4973 there are 406 units error.For the number 4974 there are 3 units error.For the number 4975 there are 139 units error.For the number 4976 there are 452 units error.For the number 4977 there are 3 units error.For the number 4978 there are 114 units error.For the number 4979 there are 90 units error.For the number 4980 there are 148 units error.For the number 4981 there are 472 units error.For the number 4982 there are 84 units error.For the number 4983 there are 211 units error.For the number 4984 there are 183 units error.For the number 4985 there are 322 units error.For the number 4986 there are 104 units error.For the number 4987 there are 76 units error.For the number 4988 there are 126 units error.For the number 4989 there are 164 units error.For the number 4990 there are 15 units error.For the number 4991 there are 118 units error.For the number 4992 there are 531 units error.For the number 4993 there are 11 units error.For the number 4994 there are 404 units error.For the number 4995 there are 86 units error.For the number 4996 there are 20 units error.For the number 4997 there are 60 units error.For the number 4998 there are 17 units error.For the number 4999 there are 488 units error.For the number 5000 there are 277 units error.For the number 5001 there are 347 units error.For the number 5002 there are 176 units error.For the number 5003 there are 209 units error.For the number 5004 there are 237 units error.For the number 5005 there are 31 units error.For the number 5006 there are 332 units error.For the number 5007 there are 570 units error.

Page 65: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 5008 there are 383 units error.For the number 5009 there are 159 units error.For the number 5010 there are 216 units error.For the number 5011 there are 433 units error.For the number 5012 there are 86 units error.For the number 5013 there are 590 units error.For the number 5014 there are 392 units error.For the number 5015 there are 353 units error.For the number 5016 there are 21 units error.For the number 5017 there are 25 units error.For the number 5018 there are 246 units error.For the number 5019 there are 458 units error.For the number 5020 there are 537 units error.For the number 5021 there are 112 units error.For the number 5022 there are 123 units error.For the number 5023 there are 237 units error.For the number 5024 there are 95 units error.For the number 5025 there are 33 units error.For the number 5026 there are 70 units error.For the number 5027 there are 215 units error.For the number 5028 there are 87 units error.For the number 5029 there are 117 units error.For the number 5030 there are 67 units error.For the number 5031 there are 347 units error.For the number 5032 there are 195 units error.For the number 5033 there are 137 units error.For the number 5034 there are 292 units error.For the number 5035 there are 91 units error.For the number 5036 there are 377 units error.For the number 5037 there are 271 units error.For the number 5038 there are 463 units error.For the number 5039 there are 134 units error.For the number 5040 there are 201 units error.For the number 5041 there are 420 units error.For the number 5042 there are 653 units error.For the number 5043 there are 229 units error.For the number 5044 there are 342 units error.For the number 5045 there are 745 units error.For the number 5046 there are 360 units error.For the number 5047 there are 165 units error.For the number 5048 there are 329 units error.For the number 5049 there are 140 units error.For the number 5050 there are 59 units error.For the number 5051 there are 22 units error.For the number 5052 there are 143 units error.For the number 5053 there are 54 units error.For the number 5054 there are 234 units error.For the number 5055 there are 783 units error.For the number 5056 there are 444 units error.For the number 5057 there are 588 units error.For the number 5058 there are 194 units error.For the number 5059 there are 46 units error.

For the number 5060 there are 569 units error.For the number 5061 there are 32 units error.For the number 5062 there are 184 units error.For the number 5063 there are 18 units error.For the number 5064 there are 47 units error.For the number 5065 there are 82 units error.For the number 5066 there are 359 units error.For the number 5067 there are 216 units error.For the number 5068 there are 538 units error.For the number 5069 there are 20 units error.For the number 5070 there are 20 units error.For the number 5071 there are 12 units error.For the number 5072 there are 493 units error.For the number 5073 there are 330 units error.For the number 5074 there are 220 units error.For the number 5075 there are 138 units error.For the number 5076 there are 177 units error.For the number 5077 there are 160 units error.For the number 5078 there are 77 units error.For the number 5079 there are 300 units error.For the number 5080 there are 460 units error.For the number 5081 there are 2 units error.For the number 5082 there are 87 units error.For the number 5083 there are 238 units error.For the number 5084 there are 562 units error.For the number 5085 there are 244 units error.For the number 5086 there are 316 units error.For the number 5087 there are 126 units error.For the number 5088 there are 40 units error.For the number 5089 there are 41 units error.For the number 5090 there are 597 units error.For the number 5091 there are 320 units error.For the number 5092 there are 80 units error.For the number 5093 there are 292 units error.For the number 5094 there are 168 units error.For the number 5095 there are 4 units error.For the number 5096 there are 684 units error.For the number 5097 there are 450 units error.For the number 5098 there are 92 units error.For the number 5099 there are 367 units error.For the number 5100 there are 379 units error.For the number 5101 there are 358 units error.For the number 5102 there are 380 units error.For the number 5103 there are 37 units error.For the number 5104 there are 101 units error.For the number 5105 there are 482 units error.For the number 5106 there are 317 units error.For the number 5107 there are 70 units error.For the number 5108 there are 357 units error.For the number 5109 there are 284 units error.For the number 5110 there are 127 units error.For the number 5111 there are 511 units error.

Page 66: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 5112 there are 198 units error.For the number 5113 there are 595 units error.For the number 5114 there are 108 units error.For the number 5115 there are 263 units error.For the number 5116 there are 14 units error.For the number 5117 there are 57 units error.For the number 5118 there are 231 units error.For the number 5119 there are 443 units error.For the number 5120 there are 158 units error.For the number 5121 there are 136 units error.For the number 5122 there are 101 units error.For the number 5123 there are 16 units error.For the number 5124 there are 152 units error.For the number 5125 there are 271 units error.For the number 5126 there are 344 units error.For the number 5127 there are 27 units error.For the number 5128 there are 265 units error.For the number 5129 there are 150 units error.For the number 5130 there are 163 units error.For the number 5131 there are 44 units error.For the number 5132 there are 239 units error.For the number 5133 there are 38 units error.For the number 5134 there are 155 units error.For the number 5135 there are 114 units error.For the number 5136 there are 218 units error.For the number 5137 there are 83 units error.For the number 5138 there are 97 units error.For the number 5139 there are 281 units error.For the number 5140 there are 277 units error.For the number 5141 there are 250 units error.For the number 5142 there are 610 units error.For the number 5143 there are 246 units error.For the number 5144 there are 523 units error.For the number 5145 there are 72 units error.For the number 5146 there are 174 units error.For the number 5147 there are 257 units error.For the number 5148 there are 18 units error.For the number 5149 there are 12 units error.For the number 5150 there are 34 units error.For the number 5151 there are 118 units error.For the number 5152 there are 225 units error.For the number 5153 there are 448 units error.For the number 5154 there are 236 units error.For the number 5155 there are 120 units error.For the number 5156 there are 373 units error.For the number 5157 there are 191 units error.For the number 5158 there are 31 units error.For the number 5159 there are 259 units error.For the number 5160 there are 242 units error.For the number 5161 there are 527 units error.For the number 5162 there are 441 units error.For the number 5163 there are 403 units error.

For the number 5164 there are 46 units error.For the number 5165 there are 542 units error.For the number 5166 there are 34 units error.For the number 5167 there are 395 units error.For the number 5168 there are 214 units error.For the number 5169 there are 336 units error.For the number 5170 there are 557 units error.For the number 5171 there are 217 units error.For the number 5172 there are 7 units error.For the number 5173 there are 303 units error.For the number 5174 there are 473 units error.For the number 5175 there are 11 units error.For the number 5176 there are 276 units error.For the number 5177 there are 112 units error.For the number 5178 there are 177 units error.For the number 5179 there are 499 units error.For the number 5180 there are 308 units error.For the number 5181 there are 491 units error.For the number 5182 there are 55 units error.For the number 5183 there are 80 units error.For the number 5184 there are 526 units error.For the number 5185 there are 300 units error.For the number 5186 there are 215 units error.For the number 5187 there are 457 units error.For the number 5188 there are 239 units error.For the number 5189 there are 187 units error.For the number 5190 there are 70 units error.For the number 5191 there are 174 units error.For the number 5192 there are 576 units error.For the number 5193 there are 493 units error.For the number 5194 there are 63 units error.For the number 5195 there are 210 units error.For the number 5196 there are 112 units error.For the number 5197 there are 17 units error.For the number 5198 there are 96 units error.For the number 5199 there are 293 units error.For the number 5200 there are 509 units error.For the number 5201 there are 85 units error.For the number 5202 there are 315 units error.For the number 5203 there are 309 units error.For the number 5204 there are 614 units error.For the number 5205 there are 222 units error.For the number 5206 there are 207 units error.For the number 5207 there are 169 units error.For the number 5208 there are 227 units error.For the number 5209 there are 191 units error.For the number 5210 there are 68 units error.For the number 5211 there are 431 units error.For the number 5212 there are 33 units error.For the number 5213 there are 154 units error.For the number 5214 there are 64 units error.For the number 5215 there are 90 units error.

Page 67: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 5216 there are 436 units error.For the number 5217 there are 4 units error.For the number 5218 there are 430 units error.For the number 5219 there are 420 units error.For the number 5220 there are 317 units error.For the number 5221 there are 183 units error.For the number 5222 there are 169 units error.For the number 5223 there are 0 units error.For the number 5224 there are 442 units error.For the number 5225 there are 334 units error.For the number 5226 there are 207 units error.For the number 5227 there are 276 units error.For the number 5228 there are 376 units error.For the number 5229 there are 169 units error.For the number 5230 there are 55 units error.For the number 5231 there are 323 units error.For the number 5232 there are 282 units error.For the number 5233 there are 469 units error.For the number 5234 there are 419 units error.For the number 5235 there are 282 units error.For the number 5236 there are 314 units error.For the number 5237 there are 181 units error.For the number 5238 there are 117 units error.For the number 5239 there are 55 units error.For the number 5240 there are 439 units error.For the number 5241 there are 279 units error.For the number 5242 there are 335 units error.For the number 5243 there are 7 units error.For the number 5244 there are 125 units error.For the number 5245 there are 18 units error.For the number 5246 there are 89 units error.For the number 5247 there are 268 units error.For the number 5248 there are 4 units error.For the number 5249 there are 139 units error.For the number 5250 there are 381 units error.For the number 5251 there are 9 units error.For the number 5252 there are 205 units error.For the number 5253 there are 246 units error.For the number 5254 there are 178 units error.For the number 5255 there are 194 units error.For the number 5256 there are 289 units error.For the number 5257 there are 285 units error.For the number 5258 there are 2 units error.For the number 5259 there are 143 units error.For the number 5260 there are 54 units error.For the number 5261 there are 311 units error.For the number 5262 there are 172 units error.For the number 5263 there are 483 units error.For the number 5264 there are 15 units error.For the number 5265 there are 303 units error.For the number 5266 there are 33 units error.For the number 5267 there are 264 units error.

For the number 5268 there are 127 units error.For the number 5269 there are 143 units error.For the number 5270 there are 51 units error.For the number 5271 there are 6 units error.For the number 5272 there are 620 units error.For the number 5273 there are 311 units error.For the number 5274 there are 15 units error.For the number 5275 there are 303 units error.For the number 5276 there are 116 units error.For the number 5277 there are 271 units error.For the number 5278 there are 643 units error.For the number 5279 there are 230 units error.For the number 5280 there are 33 units error.For the number 5281 there are 151 units error.For the number 5282 there are 210 units error.For the number 5283 there are 307 units error.For the number 5284 there are 190 units error.For the number 5285 there are 645 units error.For the number 5286 there are 579 units error.For the number 5287 there are 142 units error.For the number 5288 there are 512 units error.For the number 5289 there are 59 units error.For the number 5290 there are 226 units error.For the number 5291 there are 60 units error.For the number 5292 there are 700 units error.For the number 5293 there are 157 units error.For the number 5294 there are 89 units error.For the number 5295 there are 410 units error.For the number 5296 there are 149 units error.For the number 5297 there are 80 units error.For the number 5298 there are 199 units error.For the number 5299 there are 163 units error.For the number 5300 there are 18 units error.For the number 5301 there are 103 units error.For the number 5302 there are 511 units error.For the number 5303 there are 92 units error.For the number 5304 there are 318 units error.For the number 5305 there are 16 units error.For the number 5306 there are 9 units error.For the number 5307 there are 223 units error.For the number 5308 there are 121 units error.For the number 5309 there are 50 units error.For the number 5310 there are 423 units error.For the number 5311 there are 233 units error.For the number 5312 there are 555 units error.For the number 5313 there are 225 units error.For the number 5314 there are 73 units error.For the number 5315 there are 170 units error.For the number 5316 there are 93 units error.For the number 5317 there are 378 units error.For the number 5318 there are 820 units error.For the number 5319 there are 68 units error.

Page 68: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 5320 there are 325 units error.For the number 5321 there are 200 units error.For the number 5322 there are 421 units error.For the number 5323 there are 55 units error.For the number 5324 there are 365 units error.For the number 5325 there are 131 units error.For the number 5326 there are 545 units error.For the number 5327 there are 134 units error.For the number 5328 there are 71 units error.For the number 5329 there are 82 units error.For the number 5330 there are 326 units error.For the number 5331 there are 193 units error.For the number 5332 there are 414 units error.For the number 5333 there are 181 units error.For the number 5334 there are 283 units error.For the number 5335 there are 203 units error.For the number 5336 there are 190 units error.For the number 5337 there are 125 units error.For the number 5338 there are 69 units error.For the number 5339 there are 57 units error.For the number 5340 there are 275 units error.For the number 5341 there are 136 units error.For the number 5342 there are 624 units error.For the number 5343 there are 703 units error.For the number 5344 there are 333 units error.For the number 5345 there are 254 units error.For the number 5346 there are 157 units error.For the number 5347 there are 476 units error.For the number 5348 there are 349 units error.For the number 5349 there are 178 units error.For the number 5350 there are 23 units error.For the number 5351 there are 165 units error.For the number 5352 there are 316 units error.For the number 5353 there are 410 units error.For the number 5354 there are 48 units error.For the number 5355 there are 407 units error.For the number 5356 there are 261 units error.For the number 5357 there are 141 units error.For the number 5358 there are 530 units error.For the number 5359 there are 293 units error.For the number 5360 there are 404 units error.For the number 5361 there are 143 units error.For the number 5362 there are 196 units error.For the number 5363 there are 116 units error.For the number 5364 there are 3 units error.For the number 5365 there are 75 units error.For the number 5366 there are 190 units error.For the number 5367 there are 457 units error.For the number 5368 there are 331 units error.For the number 5369 there are 464 units error.For the number 5370 there are 70 units error.For the number 5371 there are 168 units error.

For the number 5372 there are 233 units error.For the number 5373 there are 28 units error.For the number 5374 there are 350 units error.For the number 5375 there are 352 units error.For the number 5376 there are 8 units error.For the number 5377 there are 488 units error.For the number 5378 there are 237 units error.For the number 5379 there are 6 units error.For the number 5380 there are 653 units error.For the number 5381 there are 172 units error.For the number 5382 there are 146 units error.For the number 5383 there are 395 units error.For the number 5384 there are 420 units error.For the number 5385 there are 296 units error.For the number 5386 there are 213 units error.For the number 5387 there are 141 units error.For the number 5388 there are 35 units error.For the number 5389 there are 477 units error.For the number 5390 there are 469 units error.For the number 5391 there are 150 units error.For the number 5392 there are 404 units error.For the number 5393 there are 94 units error.For the number 5394 there are 72 units error.For the number 5395 there are 269 units error.For the number 5396 there are 440 units error.For the number 5397 there are 99 units error.For the number 5398 there are 209 units error.For the number 5399 there are 41 units error.For the number 5400 there are 332 units error.For the number 5401 there are 347 units error.For the number 5402 there are 235 units error.For the number 5403 there are 304 units error.For the number 5404 there are 174 units error.For the number 5405 there are 474 units error.For the number 5406 there are 381 units error.For the number 5407 there are 232 units error.For the number 5408 there are 65 units error.For the number 5409 there are 340 units error.For the number 5410 there are 380 units error.For the number 5411 there are 146 units error.For the number 5412 there are 133 units error.For the number 5413 there are 107 units error.For the number 5414 there are 165 units error.For the number 5415 there are 184 units error.For the number 5416 there are 210 units error.For the number 5417 there are 206 units error.For the number 5418 there are 112 units error.For the number 5419 there are 238 units error.For the number 5420 there are 195 units error.For the number 5421 there are 69 units error.For the number 5422 there are 292 units error.For the number 5423 there are 440 units error.

Page 69: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 5424 there are 354 units error.For the number 5425 there are 294 units error.For the number 5426 there are 165 units error.For the number 5427 there are 59 units error.For the number 5428 there are 71 units error.For the number 5429 there are 140 units error.For the number 5430 there are 29 units error.For the number 5431 there are 100 units error.For the number 5432 there are 55 units error.For the number 5433 there are 118 units error.For the number 5434 there are 187 units error.For the number 5435 there are 327 units error.For the number 5436 there are 10 units error.For the number 5437 there are 40 units error.For the number 5438 there are 359 units error.For the number 5439 there are 729 units error.For the number 5440 there are 344 units error.For the number 5441 there are 586 units error.For the number 5442 there are 160 units error.For the number 5443 there are 240 units error.For the number 5444 there are 99 units error.For the number 5445 there are 139 units error.For the number 5446 there are 522 units error.For the number 5447 there are 308 units error.For the number 5448 there are 605 units error.For the number 5449 there are 2 units error.For the number 5450 there are 7 units error.For the number 5451 there are 59 units error.For the number 5452 there are 27 units error.For the number 5453 there are 176 units error.For the number 5454 there are 9 units error.For the number 5455 there are 143 units error.For the number 5456 there are 261 units error.For the number 5457 there are 22 units error.For the number 5458 there are 151 units error.For the number 5459 there are 333 units error.For the number 5460 there are 318 units error.For the number 5461 there are 625 units error.For the number 5462 there are 62 units error.For the number 5463 there are 547 units error.For the number 5464 there are 527 units error.For the number 5465 there are 283 units error.For the number 5466 there are 266 units error.For the number 5467 there are 512 units error.For the number 5468 there are 371 units error.For the number 5469 there are 186 units error.For the number 5470 there are 174 units error.For the number 5471 there are 181 units error.For the number 5472 there are 537 units error.For the number 5473 there are 18 units error.For the number 5474 there are 116 units error.For the number 5475 there are 345 units error.

For the number 5476 there are 426 units error.For the number 5477 there are 829 units error.For the number 5478 there are 207 units error.For the number 5479 there are 444 units error.For the number 5480 there are 674 units error.For the number 5481 there are 244 units error.For the number 5482 there are 632 units error.For the number 5483 there are 117 units error.For the number 5484 there are 90 units error.For the number 5485 there are 7 units error.For the number 5486 there are 207 units error.For the number 5487 there are 637 units error.For the number 5488 there are 635 units error.For the number 5489 there are 502 units error.For the number 5490 there are 72 units error.For the number 5491 there are 6 units error.For the number 5492 there are 110 units error.For the number 5493 there are 332 units error.For the number 5494 there are 250 units error.For the number 5495 there are 176 units error.For the number 5496 there are 251 units error.For the number 5497 there are 188 units error.For the number 5498 there are 62 units error.For the number 5499 there are 50 units error.For the number 5500 there are 169 units error.For the number 5501 there are 217 units error.For the number 5502 there are 194 units error.For the number 5503 there are 9 units error.For the number 5504 there are 496 units error.For the number 5505 there are 81 units error.For the number 5506 there are 388 units error.For the number 5507 there are 405 units error.For the number 5508 there are 509 units error.For the number 5509 there are 15 units error.For the number 5510 there are 115 units error.For the number 5511 there are 86 units error.For the number 5512 there are 489 units error.For the number 5513 there are 233 units error.For the number 5514 there are 230 units error.For the number 5515 there are 132 units error.For the number 5516 there are 55 units error.For the number 5517 there are 234 units error.For the number 5518 there are 93 units error.For the number 5519 there are 177 units error.For the number 5520 there are 150 units error.For the number 5521 there are 105 units error.For the number 5522 there are 113 units error.For the number 5523 there are 316 units error.For the number 5524 there are 142 units error.For the number 5525 there are 305 units error.For the number 5526 there are 134 units error.For the number 5527 there are 130 units error.

Page 70: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 5528 there are 203 units error.For the number 5529 there are 296 units error.For the number 5530 there are 71 units error.For the number 5531 there are 178 units error.For the number 5532 there are 677 units error.For the number 5533 there are 73 units error.For the number 5534 there are 134 units error.For the number 5535 there are 340 units error.For the number 5536 there are 159 units error.For the number 5537 there are 65 units error.For the number 5538 there are 43 units error.For the number 5539 there are 359 units error.For the number 5540 there are 46 units error.For the number 5541 there are 42 units error.For the number 5542 there are 156 units error.For the number 5543 there are 9 units error.For the number 5544 there are 1 units error.For the number 5545 there are 28 units error.For the number 5546 there are 500 units error.For the number 5547 there are 329 units error.For the number 5548 there are 282 units error.For the number 5549 there are 379 units error.For the number 5550 there are 341 units error.For the number 5551 there are 5 units error.For the number 5552 there are 7 units error.For the number 5553 there are 299 units error.For the number 5554 there are 166 units error.For the number 5555 there are 71 units error.For the number 5556 there are 281 units error.For the number 5557 there are 239 units error.For the number 5558 there are 607 units error.For the number 5559 there are 239 units error.For the number 5560 there are 75 units error.For the number 5561 there are 212 units error.For the number 5562 there are 338 units error.For the number 5563 there are 724 units error.For the number 5564 there are 254 units error.For the number 5565 there are 45 units error.For the number 5566 there are 302 units error.For the number 5567 there are 133 units error.For the number 5568 there are 213 units error.For the number 5569 there are 555 units error.For the number 5570 there are 66 units error.For the number 5571 there are 902 units error.For the number 5572 there are 35 units error.For the number 5573 there are 223 units error.For the number 5574 there are 32 units error.For the number 5575 there are 408 units error.For the number 5576 there are 799 units error.For the number 5577 there are 543 units error.For the number 5578 there are 276 units error.For the number 5579 there are 391 units error.

For the number 5580 there are 379 units error.For the number 5581 there are 373 units error.For the number 5582 there are 169 units error.For the number 5583 there are 222 units error.For the number 5584 there are 211 units error.For the number 5585 there are 138 units error.For the number 5586 there are 313 units error.For the number 5587 there are 46 units error.For the number 5588 there are 83 units error.For the number 5589 there are 203 units error.For the number 5590 there are 227 units error.For the number 5591 there are 255 units error.For the number 5592 there are 187 units error.For the number 5593 there are 62 units error.For the number 5594 there are 415 units error.For the number 5595 there are 311 units error.For the number 5596 there are 147 units error.For the number 5597 there are 154 units error.For the number 5598 there are 347 units error.For the number 5599 there are 486 units error.For the number 5600 there are 399 units error.For the number 5601 there are 118 units error.For the number 5602 there are 44 units error.For the number 5603 there are 100 units error.For the number 5604 there are 184 units error.For the number 5605 there are 105 units error.For the number 5606 there are 267 units error.For the number 5607 there are 387 units error.For the number 5608 there are 293 units error.For the number 5609 there are 71 units error.For the number 5610 there are 249 units error.For the number 5611 there are 326 units error.For the number 5612 there are 362 units error.For the number 5613 there are 348 units error.For the number 5614 there are 89 units error.For the number 5615 there are 214 units error.For the number 5616 there are 356 units error.For the number 5617 there are 90 units error.For the number 5618 there are 80 units error.For the number 5619 there are 182 units error.For the number 5620 there are 134 units error.For the number 5621 there are 163 units error.For the number 5622 there are 177 units error.For the number 5623 there are 220 units error.For the number 5624 there are 222 units error.For the number 5625 there are 179 units error.For the number 5626 there are 366 units error.For the number 5627 there are 330 units error.For the number 5628 there are 211 units error.For the number 5629 there are 283 units error.For the number 5630 there are 674 units error.For the number 5631 there are 583 units error.

Page 71: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 5632 there are 306 units error.For the number 5633 there are 12 units error.For the number 5634 there are 443 units error.For the number 5635 there are 82 units error.For the number 5636 there are 357 units error.For the number 5637 there are 630 units error.For the number 5638 there are 127 units error.For the number 5639 there are 362 units error.For the number 5640 there are 272 units error.For the number 5641 there are 309 units error.For the number 5642 there are 19 units error.For the number 5643 there are 590 units error.For the number 5644 there are 347 units error.For the number 5645 there are 40 units error.For the number 5646 there are 388 units error.For the number 5647 there are 501 units error.For the number 5648 there are 395 units error.For the number 5649 there are 28 units error.For the number 5650 there are 555 units error.For the number 5651 there are 125 units error.For the number 5652 there are 307 units error.For the number 5653 there are 3 units error.For the number 5654 there are 336 units error.For the number 5655 there are 540 units error.For the number 5656 there are 580 units error.For the number 5657 there are 149 units error.For the number 5658 there are 211 units error.For the number 5659 there are 57 units error.For the number 5660 there are 287 units error.For the number 5661 there are 660 units error.For the number 5662 there are 95 units error.For the number 5663 there are 103 units error.For the number 5664 there are 206 units error.For the number 5665 there are 353 units error.For the number 5666 there are 57 units error.For the number 5667 there are 146 units error.For the number 5668 there are 383 units error.For the number 5669 there are 409 units error.For the number 5670 there are 35 units error.For the number 5671 there are 211 units error.For the number 5672 there are 744 units error.For the number 5673 there are 77 units error.For the number 5674 there are 61 units error.For the number 5675 there are 94 units error.For the number 5676 there are 20 units error.For the number 5677 there are 252 units error.For the number 5678 there are 351 units error.For the number 5679 there are 37 units error.For the number 5680 there are 346 units error.For the number 5681 there are 194 units error.For the number 5682 there are 160 units error.For the number 5683 there are 233 units error.

For the number 5684 there are 201 units error.For the number 5685 there are 258 units error.For the number 5686 there are 276 units error.For the number 5687 there are 237 units error.For the number 5688 there are 283 units error.For the number 5689 there are 119 units error.For the number 5690 there are 22 units error.For the number 5691 there are 315 units error.For the number 5692 there are 0 units error.For the number 5693 there are 68 units error.For the number 5694 there are 417 units error.For the number 5695 there are 104 units error.For the number 5696 there are 633 units error.For the number 5697 there are 465 units error.For the number 5698 there are 463 units error.For the number 5699 there are 37 units error.For the number 5700 there are 177 units error.For the number 5701 there are 342 units error.For the number 5702 there are 239 units error.For the number 5703 there are 53 units error.For the number 5704 there are 298 units error.For the number 5705 there are 120 units error.For the number 5706 there are 185 units error.For the number 5707 there are 65 units error.For the number 5708 there are 647 units error.For the number 5709 there are 96 units error.For the number 5710 there are 349 units error.For the number 5711 there are 455 units error.For the number 5712 there are 252 units error.For the number 5713 there are 260 units error.For the number 5714 there are 144 units error.For the number 5715 there are 200 units error.For the number 5716 there are 244 units error.For the number 5717 there are 430 units error.For the number 5718 there are 57 units error.For the number 5719 there are 97 units error.For the number 5720 there are 88 units error.For the number 5721 there are 219 units error.For the number 5722 there are 87 units error.For the number 5723 there are 88 units error.For the number 5724 there are 237 units error.For the number 5725 there are 60 units error.For the number 5726 there are 337 units error.For the number 5727 there are 231 units error.For the number 5728 there are 3 units error.For the number 5729 there are 465 units error.For the number 5730 there are 38 units error.For the number 5731 there are 4 units error.For the number 5732 there are 54 units error.For the number 5733 there are 255 units error.For the number 5734 there are 358 units error.For the number 5735 there are 561 units error.

Page 72: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 5736 there are 51 units error.For the number 5737 there are 261 units error.For the number 5738 there are 73 units error.For the number 5739 there are 408 units error.For the number 5740 there are 236 units error.For the number 5741 there are 268 units error.For the number 5742 there are 151 units error.For the number 5743 there are 307 units error.For the number 5744 there are 439 units error.For the number 5745 there are 110 units error.For the number 5746 there are 173 units error.For the number 5747 there are 274 units error.For the number 5748 there are 47 units error.For the number 5749 there are 89 units error.For the number 5750 there are 214 units error.For the number 5751 there are 280 units error.For the number 5752 there are 447 units error.For the number 5753 there are 2 units error.For the number 5754 there are 79 units error.For the number 5755 there are 40 units error.For the number 5756 there are 4 units error.For the number 5757 there are 157 units error.For the number 5758 there are 31 units error.For the number 5759 there are 242 units error.For the number 5760 there are 216 units error.For the number 5761 there are 105 units error.For the number 5762 there are 49 units error.For the number 5763 there are 322 units error.For the number 5764 there are 601 units error.For the number 5765 there are 212 units error.For the number 5766 there are 65 units error.For the number 5767 there are 274 units error.For the number 5768 there are 137 units error.For the number 5769 there are 332 units error.For the number 5770 there are 424 units error.For the number 5771 there are 231 units error.For the number 5772 there are 426 units error.For the number 5773 there are 359 units error.For the number 5774 there are 164 units error.For the number 5775 there are 108 units error.For the number 5776 there are 29 units error.For the number 5777 there are 147 units error.For the number 5778 there are 272 units error.For the number 5779 there are 491 units error.For the number 5780 there are 514 units error.For the number 5781 there are 117 units error.For the number 5782 there are 197 units error.For the number 5783 there are 17 units error.For the number 5784 there are 362 units error.For the number 5785 there are 597 units error.For the number 5786 there are 547 units error.For the number 5787 there are 128 units error.

For the number 5788 there are 59 units error.For the number 5789 there are 328 units error.For the number 5790 there are 50 units error.For the number 5791 there are 331 units error.For the number 5792 there are 29 units error.For the number 5793 there are 42 units error.For the number 5794 there are 181 units error.For the number 5795 there are 263 units error.For the number 5796 there are 242 units error.For the number 5797 there are 205 units error.For the number 5798 there are 182 units error.For the number 5799 there are 541 units error.For the number 5800 there are 407 units error.For the number 5801 there are 539 units error.For the number 5802 there are 7 units error.For the number 5803 there are 92 units error.For the number 5804 there are 314 units error.For the number 5805 there are 239 units error.For the number 5806 there are 106 units error.For the number 5807 there are 558 units error.For the number 5808 there are 259 units error.For the number 5809 there are 122 units error.For the number 5810 there are 98 units error.For the number 5811 there are 205 units error.For the number 5812 there are 167 units error.For the number 5813 there are 151 units error.For the number 5814 there are 282 units error.For the number 5815 there are 73 units error.For the number 5816 there are 331 units error.For the number 5817 there are 132 units error.For the number 5818 there are 118 units error.For the number 5819 there are 467 units error.For the number 5820 there are 366 units error.For the number 5821 there are 136 units error.For the number 5822 there are 449 units error.For the number 5823 there are 604 units error.For the number 5824 there are 601 units error.For the number 5825 there are 212 units error.For the number 5826 there are 308 units error.For the number 5827 there are 47 units error.For the number 5828 there are 562 units error.For the number 5829 there are 607 units error.For the number 5830 there are 586 units error.For the number 5831 there are 48 units error.For the number 5832 there are 11 units error.For the number 5833 there are 493 units error.For the number 5834 there are 74 units error.For the number 5835 there are 73 units error.For the number 5836 there are 138 units error.For the number 5837 there are 671 units error.For the number 5838 there are 312 units error.For the number 5839 there are 22 units error.

Page 73: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 5840 there are 448 units error.For the number 5841 there are 58 units error.For the number 5842 there are 862 units error.For the number 5843 there are 12 units error.For the number 5844 there are 12 units error.For the number 5845 there are 66 units error.For the number 5846 there are 127 units error.For the number 5847 there are 67 units error.For the number 5848 there are 447 units error.For the number 5849 there are 135 units error.For the number 5850 there are 428 units error.For the number 5851 there are 384 units error.For the number 5852 there are 123 units error.For the number 5853 there are 6 units error.For the number 5854 there are 568 units error.For the number 5855 there are 61 units error.For the number 5856 there are 366 units error.For the number 5857 there are 67 units error.For the number 5858 there are 247 units error.For the number 5859 there are 216 units error.For the number 5860 there are 159 units error.For the number 5861 there are 414 units error.For the number 5862 there are 1 units error.For the number 5863 there are 5 units error.For the number 5864 there are 481 units error.For the number 5865 there are 57 units error.For the number 5866 there are 83 units error.For the number 5867 there are 323 units error.For the number 5868 there are 28 units error.For the number 5869 there are 180 units error.For the number 5870 there are 202 units error.For the number 5871 there are 12 units error.For the number 5872 there are 460 units error.For the number 5873 there are 512 units error.For the number 5874 there are 323 units error.For the number 5875 there are 480 units error.For the number 5876 there are 644 units error.For the number 5877 there are 136 units error.For the number 5878 there are 962 units error.For the number 5879 there are 70 units error.For the number 5880 there are 292 units error.For the number 5881 there are 288 units error.For the number 5882 there are 158 units error.For the number 5883 there are 536 units error.For the number 5884 there are 494 units error.For the number 5885 there are 88 units error.For the number 5886 there are 179 units error.For the number 5887 there are 17 units error.For the number 5888 there are 549 units error.For the number 5889 there are 100 units error.For the number 5890 there are 298 units error.For the number 5891 there are 304 units error.

For the number 5892 there are 125 units error.For the number 5893 there are 231 units error.For the number 5894 there are 107 units error.For the number 5895 there are 107 units error.For the number 5896 there are 543 units error.For the number 5897 there are 96 units error.For the number 5898 there are 59 units error.For the number 5899 there are 483 units error.For the number 5900 there are 89 units error.For the number 5901 there are 134 units error.For the number 5902 there are 584 units error.For the number 5903 there are 48 units error.For the number 5904 there are 193 units error.For the number 5905 there are 62 units error.For the number 5906 there are 20 units error.For the number 5907 there are 236 units error.For the number 5908 there are 8 units error.For the number 5909 there are 226 units error.For the number 5910 there are 53 units error.For the number 5911 there are 206 units error.For the number 5912 there are 252 units error.For the number 5913 there are 47 units error.For the number 5914 there are 182 units error.For the number 5915 there are 33 units error.For the number 5916 there are 512 units error.For the number 5917 there are 216 units error.For the number 5918 there are 115 units error.For the number 5919 there are 483 units error.For the number 5920 there are 178 units error.For the number 5921 there are 166 units error.For the number 5922 there are 27 units error.For the number 5923 there are 403 units error.For the number 5924 there are 458 units error.For the number 5925 there are 80 units error.For the number 5926 there are 573 units error.For the number 5927 there are 14 units error.For the number 5928 there are 77 units error.For the number 5929 there are 50 units error.For the number 5930 there are 381 units error.For the number 5931 there are 109 units error.For the number 5932 there are 40 units error.For the number 5933 there are 44 units error.For the number 5934 there are 137 units error.For the number 5935 there are 47 units error.For the number 5936 there are 48 units error.For the number 5937 there are 25 units error.For the number 5938 there are 441 units error.For the number 5939 there are 148 units error.For the number 5940 there are 74 units error.For the number 5941 there are 498 units error.For the number 5942 there are 15 units error.For the number 5943 there are 252 units error.

Page 74: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 5944 there are 172 units error.For the number 5945 there are 388 units error.For the number 5946 there are 96 units error.For the number 5947 there are 91 units error.For the number 5948 there are 408 units error.For the number 5949 there are 419 units error.For the number 5950 there are 160 units error.For the number 5951 there are 110 units error.For the number 5952 there are 7 units error.For the number 5953 there are 98 units error.For the number 5954 there are 58 units error.For the number 5955 there are 44 units error.For the number 5956 there are 228 units error.For the number 5957 there are 178 units error.For the number 5958 there are 32 units error.For the number 5959 there are 160 units error.For the number 5960 there are 37 units error.For the number 5961 there are 248 units error.For the number 5962 there are 412 units error.For the number 5963 there are 4 units error.For the number 5964 there are 757 units error.For the number 5965 there are 288 units error.For the number 5966 there are 302 units error.For the number 5967 there are 195 units error.For the number 5968 there are 509 units error.For the number 5969 there are 75 units error.For the number 5970 there are 486 units error.For the number 5971 there are 198 units error.For the number 5972 there are 10 units error.For the number 5973 there are 205 units error.For the number 5974 there are 230 units error.For the number 5975 there are 169 units error.For the number 5976 there are 270 units error.For the number 5977 there are 99 units error.For the number 5978 there are 413 units error.For the number 5979 there are 449 units error.For the number 5980 there are 368 units error.For the number 5981 there are 167 units error.For the number 5982 there are 259 units error.For the number 5983 there are 435 units error.For the number 5984 there are 249 units error.For the number 5985 there are 51 units error.For the number 5986 there are 599 units error.For the number 5987 there are 245 units error.For the number 5988 there are 261 units error.For the number 5989 there are 254 units error.For the number 5990 there are 52 units error.For the number 5991 there are 343 units error.For the number 5992 there are 734 units error.For the number 5993 there are 326 units error.For the number 5994 there are 308 units error.For the number 5995 there are 127 units error.

For the number 5996 there are 269 units error.For the number 5997 there are 392 units error.For the number 5998 there are 148 units error.For the number 5999 there are 506 units error.For the number 6000 there are 604 units error.For the number 6001 there are 1106 units error.For the number 6002 there are 191 units error.For the number 6003 there are 354 units error.For the number 6004 there are 785 units error.For the number 6005 there are 440 units error.For the number 6006 there are 117 units error.For the number 6007 there are 158 units error.For the number 6008 there are 163 units error.For the number 6009 there are 512 units error.For the number 6010 there are 246 units error.For the number 6011 there are 99 units error.For the number 6012 there are 139 units error.For the number 6013 there are 269 units error.For the number 6014 there are 144 units error.For the number 6015 there are 64 units error.For the number 6016 there are 56 units error.For the number 6017 there are 182 units error.For the number 6018 there are 487 units error.For the number 6019 there are 132 units error.For the number 6020 there are 327 units error.For the number 6021 there are 350 units error.For the number 6022 there are 2 units error.For the number 6023 there are 319 units error.For the number 6024 there are 96 units error.For the number 6025 there are 230 units error.For the number 6026 there are 61 units error.For the number 6027 there are 61 units error.For the number 6028 there are 37 units error.For the number 6029 there are 13 units error.For the number 6030 there are 105 units error.For the number 6031 there are 107 units error.For the number 6032 there are 302 units error.For the number 6033 there are 602 units error.For the number 6034 there are 75 units error.For the number 6035 there are 239 units error.For the number 6036 there are 12 units error.For the number 6037 there are 118 units error.For the number 6038 there are 493 units error.For the number 6039 there are 323 units error.For the number 6040 there are 219 units error.For the number 6041 there are 281 units error.For the number 6042 there are 239 units error.For the number 6043 there are 6 units error.For the number 6044 there are 194 units error.For the number 6045 there are 288 units error.For the number 6046 there are 313 units error.For the number 6047 there are 25 units error.

Page 75: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 6048 there are 133 units error.For the number 6049 there are 747 units error.For the number 6050 there are 239 units error.For the number 6051 there are 199 units error.For the number 6052 there are 531 units error.For the number 6053 there are 57 units error.For the number 6054 there are 162 units error.For the number 6055 there are 512 units error.For the number 6056 there are 197 units error.For the number 6057 there are 391 units error.For the number 6058 there are 525 units error.For the number 6059 there are 58 units error.For the number 6060 there are 156 units error.For the number 6061 there are 240 units error.For the number 6062 there are 233 units error.For the number 6063 there are 16 units error.For the number 6064 there are 168 units error.For the number 6065 there are 199 units error.For the number 6066 there are 211 units error.For the number 6067 there are 108 units error.For the number 6068 there are 198 units error.For the number 6069 there are 10 units error.For the number 6070 there are 704 units error.For the number 6071 there are 136 units error.For the number 6072 there are 8 units error.For the number 6073 there are 389 units error.For the number 6074 there are 316 units error.For the number 6075 there are 275 units error.For the number 6076 there are 45 units error.For the number 6077 there are 89 units error.For the number 6078 there are 273 units error.For the number 6079 there are 170 units error.For the number 6080 there are 515 units error.For the number 6081 there are 313 units error.For the number 6082 there are 302 units error.For the number 6083 there are 27 units error.For the number 6084 there are 223 units error.For the number 6085 there are 75 units error.For the number 6086 there are 172 units error.For the number 6087 there are 369 units error.For the number 6088 there are 107 units error.For the number 6089 there are 41 units error.For the number 6090 there are 502 units error.For the number 6091 there are 234 units error.For the number 6092 there are 164 units error.For the number 6093 there are 82 units error.For the number 6094 there are 714 units error.For the number 6095 there are 127 units error.For the number 6096 there are 65 units error.For the number 6097 there are 79 units error.For the number 6098 there are 530 units error.For the number 6099 there are 561 units error.

For the number 6100 there are 263 units error.For the number 6101 there are 292 units error.For the number 6102 there are 51 units error.For the number 6103 there are 2 units error.For the number 6104 there are 148 units error.For the number 6105 there are 177 units error.For the number 6106 there are 213 units error.For the number 6107 there are 562 units error.For the number 6108 there are 5 units error.For the number 6109 there are 203 units error.For the number 6110 there are 46 units error.For the number 6111 there are 285 units error.For the number 6112 there are 171 units error.For the number 6113 there are 415 units error.For the number 6114 there are 43 units error.For the number 6115 there are 97 units error.For the number 6116 there are 299 units error.For the number 6117 there are 109 units error.For the number 6118 there are 139 units error.For the number 6119 there are 9 units error.For the number 6120 there are 440 units error.For the number 6121 there are 371 units error.For the number 6122 there are 22 units error.For the number 6123 there are 183 units error.For the number 6124 there are 66 units error.For the number 6125 there are 51 units error.For the number 6126 there are 189 units error.For the number 6127 there are 95 units error.For the number 6128 there are 35 units error.For the number 6129 there are 333 units error.For the number 6130 there are 327 units error.For the number 6131 there are 87 units error.For the number 6132 there are 28 units error.For the number 6133 there are 95 units error.For the number 6134 there are 203 units error.For the number 6135 there are 33 units error.For the number 6136 there are 171 units error.For the number 6137 there are 98 units error.For the number 6138 there are 65 units error.For the number 6139 there are 532 units error.For the number 6140 there are 32 units error.For the number 6141 there are 298 units error.For the number 6142 there are 16 units error.For the number 6143 there are 20 units error.For the number 6144 there are 590 units error.For the number 6145 there are 325 units error.For the number 6146 there are 104 units error.For the number 6147 there are 452 units error.For the number 6148 there are 18 units error.For the number 6149 there are 582 units error.For the number 6150 there are 519 units error.For the number 6151 there are 242 units error.

Page 76: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 6152 there are 183 units error.For the number 6153 there are 341 units error.For the number 6154 there are 334 units error.For the number 6155 there are 985 units error.For the number 6156 there are 443 units error.For the number 6157 there are 367 units error.For the number 6158 there are 110 units error.For the number 6159 there are 616 units error.For the number 6160 there are 345 units error.For the number 6161 there are 139 units error.For the number 6162 there are 322 units error.For the number 6163 there are 657 units error.For the number 6164 there are 310 units error.For the number 6165 there are 592 units error.For the number 6166 there are 74 units error.For the number 6167 there are 197 units error.For the number 6168 there are 15 units error.For the number 6169 there are 340 units error.For the number 6170 there are 153 units error.For the number 6171 there are 439 units error.For the number 6172 there are 41 units error.For the number 6173 there are 76 units error.For the number 6174 there are 123 units error.For the number 6175 there are 51 units error.For the number 6176 there are 926 units error.For the number 6177 there are 57 units error.For the number 6178 there are 181 units error.For the number 6179 there are 147 units error.For the number 6180 there are 90 units error.For the number 6181 there are 311 units error.For the number 6182 there are 88 units error.For the number 6183 there are 115 units error.For the number 6184 there are 203 units error.For the number 6185 there are 6 units error.For the number 6186 there are 208 units error.For the number 6187 there are 365 units error.For the number 6188 there are 162 units error.For the number 6189 there are 137 units error.For the number 6190 there are 397 units error.For the number 6191 there are 296 units error.For the number 6192 there are 289 units error.For the number 6193 there are 385 units error.For the number 6194 there are 380 units error.For the number 6195 there are 209 units error.For the number 6196 there are 121 units error.For the number 6197 there are 239 units error.For the number 6198 there are 417 units error.For the number 6199 there are 69 units error.For the number 6200 there are 293 units error.For the number 6201 there are 548 units error.For the number 6202 there are 151 units error.For the number 6203 there are 46 units error.

For the number 6204 there are 132 units error.For the number 6205 there are 583 units error.For the number 6206 there are 496 units error.For the number 6207 there are 128 units error.For the number 6208 there are 328 units error.For the number 6209 there are 1 units error.For the number 6210 there are 196 units error.For the number 6211 there are 110 units error.For the number 6212 there are 224 units error.For the number 6213 there are 94 units error.For the number 6214 there are 304 units error.For the number 6215 there are 16 units error.For the number 6216 there are 32 units error.For the number 6217 there are 357 units error.For the number 6218 there are 50 units error.For the number 6219 there are 608 units error.For the number 6220 there are 87 units error.For the number 6221 there are 37 units error.For the number 6222 there are 43 units error.For the number 6223 there are 13 units error.For the number 6224 there are 18 units error.For the number 6225 there are 494 units error.For the number 6226 there are 372 units error.For the number 6227 there are 26 units error.For the number 6228 there are 192 units error.For the number 6229 there are 138 units error.For the number 6230 there are 485 units error.For the number 6231 there are 99 units error.For the number 6232 there are 132 units error.For the number 6233 there are 123 units error.For the number 6234 there are 223 units error.For the number 6235 there are 233 units error.For the number 6236 there are 506 units error.For the number 6237 there are 620 units error.For the number 6238 there are 413 units error.For the number 6239 there are 154 units error.For the number 6240 there are 264 units error.For the number 6241 there are 237 units error.For the number 6242 there are 111 units error.For the number 6243 there are 168 units error.For the number 6244 there are 68 units error.For the number 6245 there are 523 units error.For the number 6246 there are 484 units error.For the number 6247 there are 111 units error.For the number 6248 there are 421 units error.For the number 6249 there are 80 units error.For the number 6250 there are 104 units error.For the number 6251 there are 213 units error.For the number 6252 there are 313 units error.For the number 6253 there are 150 units error.For the number 6254 there are 43 units error.For the number 6255 there are 170 units error.

Page 77: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 6256 there are 71 units error.For the number 6257 there are 379 units error.For the number 6258 there are 123 units error.For the number 6259 there are 257 units error.For the number 6260 there are 26 units error.For the number 6261 there are 198 units error.For the number 6262 there are 27 units error.For the number 6263 there are 214 units error.For the number 6264 there are 335 units error.For the number 6265 there are 155 units error.For the number 6266 there are 87 units error.For the number 6267 there are 588 units error.For the number 6268 there are 210 units error.For the number 6269 there are 267 units error.For the number 6270 there are 231 units error.For the number 6271 there are 98 units error.For the number 6272 there are 225 units error.For the number 6273 there are 121 units error.For the number 6274 there are 97 units error.For the number 6275 there are 28 units error.For the number 6276 there are 486 units error.For the number 6277 there are 108 units error.For the number 6278 there are 263 units error.For the number 6279 there are 409 units error.For the number 6280 there are 726 units error.For the number 6281 there are 163 units error.For the number 6282 there are 220 units error.For the number 6283 there are 152 units error.For the number 6284 there are 272 units error.For the number 6285 there are 518 units error.For the number 6286 there are 39 units error.For the number 6287 there are 24 units error.For the number 6288 there are 243 units error.For the number 6289 there are 402 units error.For the number 6290 there are 327 units error.For the number 6291 there are 395 units error.For the number 6292 there are 257 units error.For the number 6293 there are 298 units error.For the number 6294 there are 480 units error.For the number 6295 there are 456 units error.For the number 6296 there are 1128 units error.For the number 6297 there are 88 units error.For the number 6298 there are 459 units error.For the number 6299 there are 70 units error.For the number 6300 there are 335 units error.For the number 6301 there are 395 units error.For the number 6302 there are 763 units error.For the number 6303 there are 132 units error.For the number 6304 there are 100 units error.For the number 6305 there are 237 units error.For the number 6306 there are 120 units error.For the number 6307 there are 325 units error.

For the number 6308 there are 232 units error.For the number 6309 there are 218 units error.For the number 6310 there are 104 units error.For the number 6311 there are 447 units error.For the number 6312 there are 269 units error.For the number 6313 there are 105 units error.For the number 6314 there are 159 units error.For the number 6315 there are 7 units error.For the number 6316 there are 135 units error.For the number 6317 there are 516 units error.For the number 6318 there are 26 units error.For the number 6319 there are 15 units error.For the number 6320 there are 89 units error.For the number 6321 there are 491 units error.For the number 6322 there are 82 units error.For the number 6323 there are 347 units error.For the number 6324 there are 131 units error.For the number 6325 there are 15 units error.For the number 6326 there are 191 units error.For the number 6327 there are 78 units error.For the number 6328 there are 544 units error.For the number 6329 there are 476 units error.For the number 6330 there are 116 units error.For the number 6331 there are 8 units error.For the number 6332 there are 606 units error.For the number 6333 there are 192 units error.For the number 6334 there are 120 units error.For the number 6335 there are 275 units error.For the number 6336 there are 194 units error.For the number 6337 there are 21 units error.For the number 6338 there are 26 units error.For the number 6339 there are 185 units error.For the number 6340 there are 274 units error.For the number 6341 there are 470 units error.For the number 6342 there are 264 units error.For the number 6343 there are 352 units error.For the number 6344 there are 225 units error.For the number 6345 there are 213 units error.For the number 6346 there are 38 units error.For the number 6347 there are 200 units error.For the number 6348 there are 128 units error.For the number 6349 there are 280 units error.For the number 6350 there are 12 units error.For the number 6351 there are 194 units error.For the number 6352 there are 397 units error.For the number 6353 there are 121 units error.For the number 6354 there are 142 units error.For the number 6355 there are 230 units error.For the number 6356 there are 1 units error.For the number 6357 there are 38 units error.For the number 6358 there are 375 units error.For the number 6359 there are 357 units error.

Page 78: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 6360 there are 458 units error.For the number 6361 there are 60 units error.For the number 6362 there are 123 units error.For the number 6363 there are 67 units error.For the number 6364 there are 12 units error.For the number 6365 there are 16 units error.For the number 6366 there are 314 units error.For the number 6367 there are 398 units error.For the number 6368 there are 927 units error.For the number 6369 there are 228 units error.For the number 6370 there are 539 units error.For the number 6371 there are 107 units error.For the number 6372 there are 198 units error.For the number 6373 there are 151 units error.For the number 6374 there are 256 units error.For the number 6375 there are 121 units error.For the number 6376 there are 418 units error.For the number 6377 there are 171 units error.For the number 6378 there are 66 units error.For the number 6379 there are 139 units error.For the number 6380 there are 607 units error.For the number 6381 there are 406 units error.For the number 6382 there are 107 units error.For the number 6383 there are 174 units error.For the number 6384 there are 144 units error.For the number 6385 there are 175 units error.For the number 6386 there are 90 units error.For the number 6387 there are 6 units error.For the number 6388 there are 474 units error.For the number 6389 there are 192 units error.For the number 6390 there are 328 units error.For the number 6391 there are 280 units error.For the number 6392 there are 348 units error.For the number 6393 there are 111 units error.For the number 6394 there are 82 units error.For the number 6395 there are 591 units error.For the number 6396 there are 53 units error.For the number 6397 there are 38 units error.For the number 6398 there are 87 units error.For the number 6399 there are 363 units error.For the number 6400 there are 78 units error.For the number 6401 there are 718 units error.For the number 6402 there are 130 units error.For the number 6403 there are 56 units error.For the number 6404 there are 435 units error.For the number 6405 there are 31 units error.For the number 6406 there are 14 units error.For the number 6407 there are 211 units error.For the number 6408 there are 390 units error.For the number 6409 there are 604 units error.For the number 6410 there are 589 units error.For the number 6411 there are 330 units error.

For the number 6412 there are 68 units error.For the number 6413 there are 144 units error.For the number 6414 there are 226 units error.For the number 6415 there are 320 units error.For the number 6416 there are 96 units error.For the number 6417 there are 206 units error.For the number 6418 there are 169 units error.For the number 6419 there are 266 units error.For the number 6420 there are 165 units error.For the number 6421 there are 31 units error.For the number 6422 there are 173 units error.For the number 6423 there are 250 units error.For the number 6424 there are 238 units error.For the number 6425 there are 317 units error.For the number 6426 there are 13 units error.For the number 6427 there are 385 units error.For the number 6428 there are 168 units error.For the number 6429 there are 77 units error.For the number 6430 there are 291 units error.For the number 6431 there are 111 units error.For the number 6432 there are 341 units error.For the number 6433 there are 199 units error.For the number 6434 there are 297 units error.For the number 6435 there are 117 units error.For the number 6436 there are 394 units error.For the number 6437 there are 576 units error.For the number 6438 there are 471 units error.For the number 6439 there are 530 units error.For the number 6440 there are 574 units error.For the number 6441 there are 759 units error.For the number 6442 there are 519 units error.For the number 6443 there are 486 units error.For the number 6444 there are 305 units error.For the number 6445 there are 255 units error.For the number 6446 there are 150 units error.For the number 6447 there are 40 units error.For the number 6448 there are 63 units error.For the number 6449 there are 248 units error.For the number 6450 there are 230 units error.For the number 6451 there are 180 units error.For the number 6452 there are 130 units error.For the number 6453 there are 556 units error.For the number 6454 there are 202 units error.For the number 6455 there are 13 units error.For the number 6456 there are 254 units error.For the number 6457 there are 219 units error.For the number 6458 there are 293 units error.For the number 6459 there are 462 units error.For the number 6460 there are 44 units error.For the number 6461 there are 237 units error.For the number 6462 there are 583 units error.For the number 6463 there are 135 units error.

Page 79: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 6464 there are 25 units error.For the number 6465 there are 4 units error.For the number 6466 there are 7 units error.For the number 6467 there are 81 units error.For the number 6468 there are 20 units error.For the number 6469 there are 115 units error.For the number 6470 there are 365 units error.For the number 6471 there are 1027 units error.For the number 6472 there are 113 units error.For the number 6473 there are 323 units error.For the number 6474 there are 49 units error.For the number 6475 there are 297 units error.For the number 6476 there are 147 units error.For the number 6477 there are 115 units error.For the number 6478 there are 70 units error.For the number 6479 there are 102 units error.For the number 6480 there are 95 units error.For the number 6481 there are 399 units error.For the number 6482 there are 323 units error.For the number 6483 there are 303 units error.For the number 6484 there are 341 units error.For the number 6485 there are 159 units error.For the number 6486 there are 374 units error.For the number 6487 there are 248 units error.For the number 6488 there are 206 units error.For the number 6489 there are 404 units error.For the number 6490 there are 247 units error.For the number 6491 there are 429 units error.For the number 6492 there are 67 units error.For the number 6493 there are 589 units error.For the number 6494 there are 36 units error.For the number 6495 there are 151 units error.For the number 6496 there are 206 units error.For the number 6497 there are 245 units error.For the number 6498 there are 522 units error.For the number 6499 there are 324 units error.For the number 6500 there are 383 units error.For the number 6501 there are 230 units error.For the number 6502 there are 58 units error.For the number 6503 there are 63 units error.For the number 6504 there are 171 units error.For the number 6505 there are 573 units error.For the number 6506 there are 27 units error.For the number 6507 there are 228 units error.For the number 6508 there are 134 units error.For the number 6509 there are 1 units error.For the number 6510 there are 65 units error.For the number 6511 there are 90 units error.For the number 6512 there are 245 units error.For the number 6513 there are 194 units error.For the number 6514 there are 277 units error.For the number 6515 there are 245 units error.

For the number 6516 there are 527 units error.For the number 6517 there are 346 units error.For the number 6518 there are 352 units error.For the number 6519 there are 410 units error.For the number 6520 there are 188 units error.For the number 6521 there are 99 units error.For the number 6522 there are 132 units error.For the number 6523 there are 244 units error.For the number 6524 there are 141 units error.For the number 6525 there are 379 units error.For the number 6526 there are 21 units error.For the number 6527 there are 102 units error.For the number 6528 there are 22 units error.For the number 6529 there are 122 units error.For the number 6530 there are 219 units error.For the number 6531 there are 498 units error.For the number 6532 there are 350 units error.For the number 6533 there are 57 units error.For the number 6534 there are 168 units error.For the number 6535 there are 571 units error.For the number 6536 there are 964 units error.For the number 6537 there are 161 units error.For the number 6538 there are 251 units error.For the number 6539 there are 486 units error.For the number 6540 there are 72 units error.For the number 6541 there are 54 units error.For the number 6542 there are 52 units error.For the number 6543 there are 403 units error.For the number 6544 there are 322 units error.For the number 6545 there are 336 units error.For the number 6546 there are 1143 units error.For the number 6547 there are 35 units error.For the number 6548 there are 401 units error.For the number 6549 there are 24 units error.For the number 6550 there are 109 units error.For the number 6551 there are 496 units error.For the number 6552 there are 148 units error.For the number 6553 there are 218 units error.For the number 6554 there are 145 units error.For the number 6555 there are 450 units error.For the number 6556 there are 369 units error.For the number 6557 there are 336 units error.For the number 6558 there are 191 units error.For the number 6559 there are 48 units error.For the number 6560 there are 29 units error.For the number 6561 there are 550 units error.For the number 6562 there are 407 units error.For the number 6563 there are 43 units error.For the number 6564 there are 697 units error.For the number 6565 there are 312 units error.For the number 6566 there are 110 units error.For the number 6567 there are 722 units error.

Page 80: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 6568 there are 453 units error.For the number 6569 there are 330 units error.For the number 6570 there are 278 units error.For the number 6571 there are 487 units error.For the number 6572 there are 704 units error.For the number 6573 there are 374 units error.For the number 6574 there are 175 units error.For the number 6575 there are 299 units error.For the number 6576 there are 364 units error.For the number 6577 there are 241 units error.For the number 6578 there are 111 units error.For the number 6579 there are 242 units error.For the number 6580 there are 705 units error.For the number 6581 there are 286 units error.For the number 6582 there are 303 units error.For the number 6583 there are 434 units error.For the number 6584 there are 55 units error.For the number 6585 there are 443 units error.For the number 6586 there are 59 units error.For the number 6587 there are 18 units error.For the number 6588 there are 114 units error.For the number 6589 there are 127 units error.For the number 6590 there are 355 units error.For the number 6591 there are 80 units error.For the number 6592 there are 137 units error.For the number 6593 there are 46 units error.For the number 6594 there are 213 units error.For the number 6595 there are 376 units error.For the number 6596 there are 326 units error.For the number 6597 there are 369 units error.For the number 6598 there are 462 units error.For the number 6599 there are 637 units error.For the number 6600 there are 118 units error.For the number 6601 there are 158 units error.For the number 6602 there are 205 units error.For the number 6603 there are 566 units error.For the number 6604 there are 421 units error.For the number 6605 there are 175 units error.For the number 6606 there are 160 units error.For the number 6607 there are 528 units error.For the number 6608 there are 202 units error.For the number 6609 there are 414 units error.For the number 6610 there are 234 units error.For the number 6611 there are 36 units error.For the number 6612 there are 71 units error.For the number 6613 there are 271 units error.For the number 6614 there are 238 units error.For the number 6615 there are 229 units error.For the number 6616 there are 108 units error.For the number 6617 there are 277 units error.For the number 6618 there are 27 units error.For the number 6619 there are 413 units error.

For the number 6620 there are 93 units error.For the number 6621 there are 62 units error.For the number 6622 there are 148 units error.For the number 6623 there are 197 units error.For the number 6624 there are 9 units error.For the number 6625 there are 626 units error.For the number 6626 there are 193 units error.For the number 6627 there are 57 units error.For the number 6628 there are 753 units error.For the number 6629 there are 410 units error.For the number 6630 there are 483 units error.For the number 6631 there are 226 units error.For the number 6632 there are 81 units error.For the number 6633 there are 143 units error.For the number 6634 there are 639 units error.For the number 6635 there are 226 units error.For the number 6636 there are 228 units error.For the number 6637 there are 248 units error.For the number 6638 there are 444 units error.For the number 6639 there are 693 units error.For the number 6640 there are 289 units error.For the number 6641 there are 31 units error.For the number 6642 there are 94 units error.For the number 6643 there are 392 units error.For the number 6644 there are 243 units error.For the number 6645 there are 192 units error.For the number 6646 there are 151 units error.For the number 6647 there are 495 units error.For the number 6648 there are 532 units error.For the number 6649 there are 251 units error.For the number 6650 there are 414 units error.For the number 6651 there are 133 units error.For the number 6652 there are 344 units error.For the number 6653 there are 388 units error.For the number 6654 there are 13 units error.For the number 6655 there are 342 units error.For the number 6656 there are 464 units error.For the number 6657 there are 306 units error.For the number 6658 there are 366 units error.For the number 6659 there are 36 units error.For the number 6660 there are 91 units error.For the number 6661 there are 63 units error.For the number 6662 there are 383 units error.For the number 6663 there are 357 units error.For the number 6664 there are 155 units error.For the number 6665 there are 401 units error.For the number 6666 there are 158 units error.For the number 6667 there are 445 units error.For the number 6668 there are 133 units error.For the number 6669 there are 9 units error.For the number 6670 there are 390 units error.For the number 6671 there are 73 units error.

Page 81: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 6672 there are 309 units error.For the number 6673 there are 262 units error.For the number 6674 there are 110 units error.For the number 6675 there are 31 units error.For the number 6676 there are 185 units error.For the number 6677 there are 52 units error.For the number 6678 there are 303 units error.For the number 6679 there are 175 units error.For the number 6680 there are 611 units error.For the number 6681 there are 181 units error.For the number 6682 there are 596 units error.For the number 6683 there are 144 units error.For the number 6684 there are 83 units error.For the number 6685 there are 215 units error.For the number 6686 there are 146 units error.For the number 6687 there are 324 units error.For the number 6688 there are 45 units error.For the number 6689 there are 270 units error.For the number 6690 there are 177 units error.For the number 6691 there are 614 units error.For the number 6692 there are 175 units error.For the number 6693 there are 42 units error.For the number 6694 there are 52 units error.For the number 6695 there are 550 units error.For the number 6696 there are 20 units error.For the number 6697 there are 57 units error.For the number 6698 there are 317 units error.For the number 6699 there are 350 units error.For the number 6700 there are 139 units error.For the number 6701 there are 343 units error.For the number 6702 there are 599 units error.For the number 6703 there are 92 units error.For the number 6704 there are 611 units error.For the number 6705 there are 347 units error.For the number 6706 there are 166 units error.For the number 6707 there are 434 units error.For the number 6708 there are 30 units error.For the number 6709 there are 217 units error.For the number 6710 there are 128 units error.For the number 6711 there are 175 units error.For the number 6712 there are 203 units error.For the number 6713 there are 301 units error.For the number 6714 there are 365 units error.For the number 6715 there are 243 units error.For the number 6716 there are 233 units error.For the number 6717 there are 459 units error.For the number 6718 there are 575 units error.For the number 6719 there are 503 units error.For the number 6720 there are 258 units error.For the number 6721 there are 351 units error.For the number 6722 there are 568 units error.For the number 6723 there are 280 units error.

For the number 6724 there are 68 units error.For the number 6725 there are 519 units error.For the number 6726 there are 98 units error.For the number 6727 there are 508 units error.For the number 6728 there are 363 units error.For the number 6729 there are 430 units error.For the number 6730 there are 123 units error.For the number 6731 there are 187 units error.For the number 6732 there are 594 units error.For the number 6733 there are 158 units error.For the number 6734 there are 232 units error.For the number 6735 there are 95 units error.For the number 6736 there are 303 units error.For the number 6737 there are 195 units error.For the number 6738 there are 143 units error.For the number 6739 there are 359 units error.For the number 6740 there are 570 units error.For the number 6741 there are 212 units error.For the number 6742 there are 210 units error.For the number 6743 there are 102 units error.For the number 6744 there are 66 units error.For the number 6745 there are 187 units error.For the number 6746 there are 747 units error.For the number 6747 there are 97 units error.For the number 6748 there are 203 units error.For the number 6749 there are 111 units error.For the number 6750 there are 152 units error.For the number 6751 there are 429 units error.For the number 6752 there are 379 units error.For the number 6753 there are 272 units error.For the number 6754 there are 316 units error.For the number 6755 there are 176 units error.For the number 6756 there are 205 units error.For the number 6757 there are 605 units error.For the number 6758 there are 85 units error.For the number 6759 there are 6 units error.For the number 6760 there are 795 units error.For the number 6761 there are 418 units error.For the number 6762 there are 47 units error.For the number 6763 there are 615 units error.For the number 6764 there are 55 units error.For the number 6765 there are 230 units error.For the number 6766 there are 205 units error.For the number 6767 there are 643 units error.For the number 6768 there are 69 units error.For the number 6769 there are 154 units error.For the number 6770 there are 309 units error.For the number 6771 there are 78 units error.For the number 6772 there are 6 units error.For the number 6773 there are 295 units error.For the number 6774 there are 74 units error.For the number 6775 there are 29 units error.

Page 82: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 6776 there are 243 units error.For the number 6777 there are 261 units error.For the number 6778 there are 383 units error.For the number 6779 there are 310 units error.For the number 6780 there are 160 units error.For the number 6781 there are 37 units error.For the number 6782 there are 97 units error.For the number 6783 there are 413 units error.For the number 6784 there are 391 units error.For the number 6785 there are 67 units error.For the number 6786 there are 130 units error.For the number 6787 there are 131 units error.For the number 6788 there are 469 units error.For the number 6789 there are 241 units error.For the number 6790 there are 175 units error.For the number 6791 there are 254 units error.For the number 6792 there are 166 units error.For the number 6793 there are 323 units error.For the number 6794 there are 189 units error.For the number 6795 there are 482 units error.For the number 6796 there are 6 units error.For the number 6797 there are 281 units error.For the number 6798 there are 48 units error.For the number 6799 there are 267 units error.For the number 6800 there are 19 units error.For the number 6801 there are 32 units error.For the number 6802 there are 215 units error.For the number 6803 there are 349 units error.For the number 6804 there are 739 units error.For the number 6805 there are 467 units error.For the number 6806 there are 221 units error.For the number 6807 there are 188 units error.For the number 6808 there are 157 units error.For the number 6809 there are 148 units error.For the number 6810 there are 592 units error.For the number 6811 there are 93 units error.For the number 6812 there are 222 units error.For the number 6813 there are 359 units error.For the number 6814 there are 471 units error.For the number 6815 there are 2 units error.For the number 6816 there are 111 units error.For the number 6817 there are 29 units error.For the number 6818 there are 434 units error.For the number 6819 there are 251 units error.For the number 6820 there are 110 units error.For the number 6821 there are 2 units error.For the number 6822 there are 34 units error.For the number 6823 there are 243 units error.For the number 6824 there are 110 units error.For the number 6825 there are 87 units error.For the number 6826 there are 134 units error.For the number 6827 there are 413 units error.

For the number 6828 there are 136 units error.For the number 6829 there are 160 units error.For the number 6830 there are 562 units error.For the number 6831 there are 338 units error.For the number 6832 there are 8 units error.For the number 6833 there are 300 units error.For the number 6834 there are 252 units error.For the number 6835 there are 289 units error.For the number 6836 there are 479 units error.For the number 6837 there are 182 units error.For the number 6838 there are 272 units error.For the number 6839 there are 456 units error.For the number 6840 there are 122 units error.For the number 6841 there are 514 units error.For the number 6842 there are 122 units error.For the number 6843 there are 196 units error.For the number 6844 there are 420 units error.For the number 6845 there are 140 units error.For the number 6846 there are 181 units error.For the number 6847 there are 113 units error.For the number 6848 there are 440 units error.For the number 6849 there are 643 units error.For the number 6850 there are 1038 units error.For the number 6851 there are 100 units error.For the number 6852 there are 364 units error.For the number 6853 there are 533 units error.For the number 6854 there are 596 units error.For the number 6855 there are 105 units error.For the number 6856 there are 130 units error.For the number 6857 there are 466 units error.For the number 6858 there are 89 units error.For the number 6859 there are 374 units error.For the number 6860 there are 341 units error.For the number 6861 there are 78 units error.For the number 6862 there are 23 units error.For the number 6863 there are 249 units error.For the number 6864 there are 323 units error.For the number 6865 there are 46 units error.For the number 6866 there are 23 units error.For the number 6867 there are 38 units error.For the number 6868 there are 690 units error.For the number 6869 there are 645 units error.For the number 6870 there are 304 units error.For the number 6871 there are 319 units error.For the number 6872 there are 51 units error.For the number 6873 there are 226 units error.For the number 6874 there are 531 units error.For the number 6875 there are 210 units error.For the number 6876 there are 95 units error.For the number 6877 there are 98 units error.For the number 6878 there are 357 units error.For the number 6879 there are 197 units error.

Page 83: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 6880 there are 366 units error.For the number 6881 there are 135 units error.For the number 6882 there are 401 units error.For the number 6883 there are 148 units error.For the number 6884 there are 153 units error.For the number 6885 there are 484 units error.For the number 6886 there are 455 units error.For the number 6887 there are 19 units error.For the number 6888 there are 254 units error.For the number 6889 there are 382 units error.For the number 6890 there are 321 units error.For the number 6891 there are 142 units error.For the number 6892 there are 121 units error.For the number 6893 there are 83 units error.For the number 6894 there are 82 units error.For the number 6895 there are 343 units error.For the number 6896 there are 295 units error.For the number 6897 there are 114 units error.For the number 6898 there are 19 units error.For the number 6899 there are 433 units error.For the number 6900 there are 158 units error.For the number 6901 there are 356 units error.For the number 6902 there are 169 units error.For the number 6903 there are 551 units error.For the number 6904 there are 64 units error.For the number 6905 there are 399 units error.For the number 6906 there are 75 units error.For the number 6907 there are 65 units error.For the number 6908 there are 271 units error.For the number 6909 there are 501 units error.For the number 6910 there are 34 units error.For the number 6911 there are 42 units error.For the number 6912 there are 384 units error.For the number 6913 there are 410 units error.For the number 6914 there are 742 units error.For the number 6915 there are 26 units error.For the number 6916 there are 475 units error.For the number 6917 there are 77 units error.For the number 6918 there are 37 units error.For the number 6919 there are 301 units error.For the number 6920 there are 513 units error.For the number 6921 there are 309 units error.For the number 6922 there are 153 units error.For the number 6923 there are 733 units error.For the number 6924 there are 202 units error.For the number 6925 there are 111 units error.For the number 6926 there are 73 units error.For the number 6927 there are 587 units error.For the number 6928 there are 235 units error.For the number 6929 there are 168 units error.For the number 6930 there are 618 units error.For the number 6931 there are 117 units error.

For the number 6932 there are 301 units error.For the number 6933 there are 698 units error.For the number 6934 there are 688 units error.For the number 6935 there are 667 units error.For the number 6936 there are 696 units error.For the number 6937 there are 82 units error.For the number 6938 there are 43 units error.For the number 6939 there are 58 units error.For the number 6940 there are 96 units error.For the number 6941 there are 222 units error.For the number 6942 there are 501 units error.For the number 6943 there are 573 units error.For the number 6944 there are 187 units error.For the number 6945 there are 296 units error.For the number 6946 there are 333 units error.For the number 6947 there are 139 units error.For the number 6948 there are 321 units error.For the number 6949 there are 182 units error.For the number 6950 there are 351 units error.For the number 6951 there are 434 units error.For the number 6952 there are 131 units error.For the number 6953 there are 95 units error.For the number 6954 there are 453 units error.For the number 6955 there are 239 units error.For the number 6956 there are 26 units error.For the number 6957 there are 905 units error.For the number 6958 there are 49 units error.For the number 6959 there are 485 units error.For the number 6960 there are 243 units error.For the number 6961 there are 37 units error.For the number 6962 there are 998 units error.For the number 6963 there are 3 units error.For the number 6964 there are 659 units error.For the number 6965 there are 619 units error.For the number 6966 there are 571 units error.For the number 6967 there are 132 units error.For the number 6968 there are 1419 units error.For the number 6969 there are 291 units error.For the number 6970 there are 362 units error.For the number 6971 there are 51 units error.For the number 6972 there are 213 units error.For the number 6973 there are 18 units error.For the number 6974 there are 20 units error.For the number 6975 there are 439 units error.For the number 6976 there are 39 units error.For the number 6977 there are 414 units error.For the number 6978 there are 456 units error.For the number 6979 there are 60 units error.For the number 6980 there are 19 units error.For the number 6981 there are 483 units error.For the number 6982 there are 198 units error.For the number 6983 there are 250 units error.

Page 84: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 6984 there are 268 units error.For the number 6985 there are 81 units error.For the number 6986 there are 696 units error.For the number 6987 there are 57 units error.For the number 6988 there are 104 units error.For the number 6989 there are 452 units error.For the number 6990 there are 146 units error.For the number 6991 there are 276 units error.For the number 6992 there are 475 units error.For the number 6993 there are 24 units error.For the number 6994 there are 76 units error.For the number 6995 there are 319 units error.For the number 6996 there are 64 units error.For the number 6997 there are 94 units error.For the number 6998 there are 200 units error.For the number 6999 there are 38 units error.For the number 7000 there are 695 units error.For the number 7001 there are 294 units error.For the number 7002 there are 280 units error.For the number 7003 there are 322 units error.For the number 7004 there are 392 units error.For the number 7005 there are 28 units error.For the number 7006 there are 99 units error.For the number 7007 there are 409 units error.For the number 7008 there are 122 units error.For the number 7009 there are 438 units error.For the number 7010 there are 452 units error.For the number 7011 there are 249 units error.For the number 7012 there are 115 units error.For the number 7013 there are 265 units error.For the number 7014 there are 167 units error.For the number 7015 there are 347 units error.For the number 7016 there are 513 units error.For the number 7017 there are 566 units error.For the number 7018 there are 23 units error.For the number 7019 there are 390 units error.For the number 7020 there are 261 units error.For the number 7021 there are 419 units error.For the number 7022 there are 109 units error.For the number 7023 there are 517 units error.For the number 7024 there are 306 units error.For the number 7025 there are 90 units error.For the number 7026 there are 169 units error.For the number 7027 there are 96 units error.For the number 7028 there are 210 units error.For the number 7029 there are 318 units error.For the number 7030 there are 9 units error.For the number 7031 there are 22 units error.For the number 7032 there are 347 units error.For the number 7033 there are 378 units error.For the number 7034 there are 148 units error.For the number 7035 there are 239 units error.

For the number 7036 there are 78 units error.For the number 7037 there are 105 units error.For the number 7038 there are 341 units error.For the number 7039 there are 189 units error.For the number 7040 there are 382 units error.For the number 7041 there are 547 units error.For the number 7042 there are 5 units error.For the number 7043 there are 6 units error.For the number 7044 there are 574 units error.For the number 7045 there are 572 units error.For the number 7046 there are 407 units error.For the number 7047 there are 205 units error.For the number 7048 there are 463 units error.For the number 7049 there are 555 units error.For the number 7050 there are 178 units error.For the number 7051 there are 719 units error.For the number 7052 there are 182 units error.For the number 7053 there are 562 units error.For the number 7054 there are 283 units error.For the number 7055 there are 69 units error.For the number 7056 there are 134 units error.For the number 7057 there are 365 units error.For the number 7058 there are 764 units error.For the number 7059 there are 42 units error.For the number 7060 there are 868 units error.For the number 7061 there are 300 units error.For the number 7062 there are 16 units error.For the number 7063 there are 43 units error.For the number 7064 there are 444 units error.For the number 7065 there are 171 units error.For the number 7066 there are 4 units error.For the number 7067 there are 84 units error.For the number 7068 there are 120 units error.For the number 7069 there are 89 units error.For the number 7070 there are 155 units error.For the number 7071 there are 242 units error.For the number 7072 there are 285 units error.For the number 7073 there are 177 units error.For the number 7074 there are 180 units error.For the number 7075 there are 173 units error.For the number 7076 there are 202 units error.For the number 7077 there are 137 units error.For the number 7078 there are 113 units error.For the number 7079 there are 39 units error.For the number 7080 there are 340 units error.For the number 7081 there are 555 units error.For the number 7082 there are 174 units error.For the number 7083 there are 79 units error.For the number 7084 there are 290 units error.For the number 7085 there are 406 units error.For the number 7086 there are 203 units error.For the number 7087 there are 455 units error.

Page 85: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 7088 there are 179 units error.For the number 7089 there are 522 units error.For the number 7090 there are 309 units error.For the number 7091 there are 131 units error.For the number 7092 there are 354 units error.For the number 7093 there are 52 units error.For the number 7094 there are 22 units error.For the number 7095 there are 364 units error.For the number 7096 there are 40 units error.For the number 7097 there are 93 units error.For the number 7098 there are 182 units error.For the number 7099 there are 329 units error.For the number 7100 there are 346 units error.For the number 7101 there are 119 units error.For the number 7102 there are 364 units error.For the number 7103 there are 345 units error.For the number 7104 there are 746 units error.For the number 7105 there are 378 units error.For the number 7106 there are 61 units error.For the number 7107 there are 535 units error.For the number 7108 there are 309 units error.For the number 7109 there are 39 units error.For the number 7110 there are 197 units error.For the number 7111 there are 770 units error.For the number 7112 there are 977 units error.For the number 7113 there are 706 units error.For the number 7114 there are 174 units error.For the number 7115 there are 40 units error.For the number 7116 there are 11 units error.For the number 7117 there are 583 units error.For the number 7118 there are 12 units error.For the number 7119 there are 123 units error.For the number 7120 there are 362 units error.For the number 7121 there are 537 units error.For the number 7122 there are 436 units error.For the number 7123 there are 7 units error.For the number 7124 there are 666 units error.For the number 7125 there are 419 units error.For the number 7126 there are 552 units error.For the number 7127 there are 917 units error.For the number 7128 there are 75 units error.For the number 7129 there are 281 units error.For the number 7130 there are 85 units error.For the number 7131 there are 286 units error.For the number 7132 there are 572 units error.For the number 7133 there are 1 units error.For the number 7134 there are 360 units error.For the number 7135 there are 51 units error.For the number 7136 there are 239 units error.For the number 7137 there are 244 units error.For the number 7138 there are 596 units error.For the number 7139 there are 212 units error.

For the number 7140 there are 61 units error.For the number 7141 there are 3 units error.For the number 7142 there are 496 units error.For the number 7143 there are 24 units error.For the number 7144 there are 297 units error.For the number 7145 there are 41 units error.For the number 7146 there are 548 units error.For the number 7147 there are 663 units error.For the number 7148 there are 166 units error.For the number 7149 there are 38 units error.For the number 7150 there are 29 units error.For the number 7151 there are 163 units error.For the number 7152 there are 209 units error.For the number 7153 there are 453 units error.For the number 7154 there are 119 units error.For the number 7155 there are 172 units error.For the number 7156 there are 221 units error.For the number 7157 there are 397 units error.For the number 7158 there are 609 units error.For the number 7159 there are 338 units error.For the number 7160 there are 206 units error.For the number 7161 there are 86 units error.For the number 7162 there are 411 units error.For the number 7163 there are 14 units error.For the number 7164 there are 140 units error.For the number 7165 there are 149 units error.For the number 7166 there are 418 units error.For the number 7167 there are 563 units error.For the number 7168 there are 58 units error.For the number 7169 there are 15 units error.For the number 7170 there are 423 units error.For the number 7171 there are 79 units error.For the number 7172 there are 9 units error.For the number 7173 there are 400 units error.For the number 7174 there are 114 units error.For the number 7175 there are 392 units error.For the number 7176 there are 351 units error.For the number 7177 there are 112 units error.For the number 7178 there are 214 units error.For the number 7179 there are 147 units error.For the number 7180 there are 449 units error.For the number 7181 there are 193 units error.For the number 7182 there are 295 units error.For the number 7183 there are 46 units error.For the number 7184 there are 185 units error.For the number 7185 there are 521 units error.For the number 7186 there are 161 units error.For the number 7187 there are 3 units error.For the number 7188 there are 441 units error.For the number 7189 there are 278 units error.For the number 7190 there are 510 units error.For the number 7191 there are 472 units error.

Page 86: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 7192 there are 168 units error.For the number 7193 there are 343 units error.For the number 7194 there are 216 units error.For the number 7195 there are 44 units error.For the number 7196 there are 699 units error.For the number 7197 there are 262 units error.For the number 7198 there are 175 units error.For the number 7199 there are 172 units error.For the number 7200 there are 486 units error.For the number 7201 there are 256 units error.For the number 7202 there are 265 units error.For the number 7203 there are 628 units error.For the number 7204 there are 194 units error.For the number 7205 there are 243 units error.For the number 7206 there are 794 units error.For the number 7207 there are 837 units error.For the number 7208 there are 330 units error.For the number 7209 there are 243 units error.For the number 7210 there are 31 units error.For the number 7211 there are 270 units error.For the number 7212 there are 366 units error.For the number 7213 there are 422 units error.For the number 7214 there are 392 units error.For the number 7215 there are 344 units error.For the number 7216 there are 177 units error.For the number 7217 there are 68 units error.For the number 7218 there are 269 units error.For the number 7219 there are 47 units error.For the number 7220 there are 683 units error.For the number 7221 there are 327 units error.For the number 7222 there are 184 units error.For the number 7223 there are 113 units error.For the number 7224 there are 28 units error.For the number 7225 there are 348 units error.For the number 7226 there are 1 units error.For the number 7227 there are 157 units error.For the number 7228 there are 437 units error.For the number 7229 there are 293 units error.For the number 7230 there are 595 units error.For the number 7231 there are 70 units error.For the number 7232 there are 158 units error.For the number 7233 there are 429 units error.For the number 7234 there are 271 units error.For the number 7235 there are 84 units error.For the number 7236 there are 380 units error.For the number 7237 there are 0 units error.For the number 7238 there are 204 units error.For the number 7239 there are 609 units error.For the number 7240 there are 270 units error.For the number 7241 there are 81 units error.For the number 7242 there are 101 units error.For the number 7243 there are 335 units error.

For the number 7244 there are 179 units error.For the number 7245 there are 93 units error.For the number 7246 there are 449 units error.For the number 7247 there are 363 units error.For the number 7248 there are 172 units error.For the number 7249 there are 63 units error.For the number 7250 there are 478 units error.For the number 7251 there are 277 units error.For the number 7252 there are 331 units error.For the number 7253 there are 236 units error.For the number 7254 there are 193 units error.For the number 7255 there are 201 units error.For the number 7256 there are 748 units error.For the number 7257 there are 10 units error.For the number 7258 there are 593 units error.For the number 7259 there are 477 units error.For the number 7260 there are 652 units error.For the number 7261 there are 83 units error.For the number 7262 there are 171 units error.For the number 7263 there are 68 units error.For the number 7264 there are 574 units error.For the number 7265 there are 180 units error.For the number 7266 there are 124 units error.For the number 7267 there are 330 units error.For the number 7268 there are 109 units error.For the number 7269 there are 304 units error.For the number 7270 there are 436 units error.For the number 7271 there are 219 units error.For the number 7272 there are 403 units error.For the number 7273 there are 196 units error.For the number 7274 there are 355 units error.For the number 7275 there are 479 units error.For the number 7276 there are 642 units error.For the number 7277 there are 85 units error.For the number 7278 there are 307 units error.For the number 7279 there are 51 units error.For the number 7280 there are 63 units error.For the number 7281 there are 578 units error.For the number 7282 there are 233 units error.For the number 7283 there are 218 units error.For the number 7284 there are 86 units error.For the number 7285 there are 554 units error.For the number 7286 there are 300 units error.For the number 7287 there are 130 units error.For the number 7288 there are 436 units error.For the number 7289 there are 334 units error.For the number 7290 there are 84 units error.For the number 7291 there are 487 units error.For the number 7292 there are 219 units error.For the number 7293 there are 130 units error.For the number 7294 there are 303 units error.For the number 7295 there are 300 units error.

Page 87: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 7296 there are 367 units error.For the number 7297 there are 275 units error.For the number 7298 there are 76 units error.For the number 7299 there are 52 units error.For the number 7300 there are 261 units error.For the number 7301 there are 104 units error.For the number 7302 there are 287 units error.For the number 7303 there are 27 units error.For the number 7304 there are 12 units error.For the number 7305 there are 111 units error.For the number 7306 there are 303 units error.For the number 7307 there are 10 units error.For the number 7308 there are 164 units error.For the number 7309 there are 185 units error.For the number 7310 there are 267 units error.For the number 7311 there are 444 units error.For the number 7312 there are 105 units error.For the number 7313 there are 2 units error.For the number 7314 there are 20 units error.For the number 7315 there are 76 units error.For the number 7316 there are 62 units error.For the number 7317 there are 349 units error.For the number 7318 there are 375 units error.For the number 7319 there are 59 units error.For the number 7320 there are 183 units error.For the number 7321 there are 6 units error.For the number 7322 there are 357 units error.For the number 7323 there are 75 units error.For the number 7324 there are 252 units error.For the number 7325 there are 463 units error.For the number 7326 there are 5 units error.For the number 7327 there are 34 units error.For the number 7328 there are 115 units error.For the number 7329 there are 358 units error.For the number 7330 there are 343 units error.For the number 7331 there are 213 units error.For the number 7332 there are 165 units error.For the number 7333 there are 375 units error.For the number 7334 there are 191 units error.For the number 7335 there are 170 units error.For the number 7336 there are 108 units error.For the number 7337 there are 188 units error.For the number 7338 there are 602 units error.For the number 7339 there are 229 units error.For the number 7340 there are 109 units error.For the number 7341 there are 88 units error.For the number 7342 there are 30 units error.For the number 7343 there are 547 units error.For the number 7344 there are 122 units error.For the number 7345 there are 1 units error.For the number 7346 there are 265 units error.For the number 7347 there are 77 units error.

For the number 7348 there are 32 units error.For the number 7349 there are 22 units error.For the number 7350 there are 367 units error.For the number 7351 there are 601 units error.For the number 7352 there are 860 units error.For the number 7353 there are 545 units error.For the number 7354 there are 318 units error.For the number 7355 there are 282 units error.For the number 7356 there are 664 units error.For the number 7357 there are 338 units error.For the number 7358 there are 59 units error.For the number 7359 there are 170 units error.For the number 7360 there are 198 units error.For the number 7361 there are 139 units error.For the number 7362 there are 615 units error.For the number 7363 there are 422 units error.For the number 7364 there are 228 units error.For the number 7365 there are 281 units error.For the number 7366 there are 309 units error.For the number 7367 there are 63 units error.For the number 7368 there are 50 units error.For the number 7369 there are 192 units error.For the number 7370 there are 308 units error.For the number 7371 there are 330 units error.For the number 7372 there are 191 units error.For the number 7373 there are 200 units error.For the number 7374 there are 518 units error.For the number 7375 there are 135 units error.For the number 7376 there are 327 units error.For the number 7377 there are 226 units error.For the number 7378 there are 749 units error.For the number 7379 there are 69 units error.For the number 7380 there are 317 units error.For the number 7381 there are 23 units error.For the number 7382 there are 235 units error.For the number 7383 there are 59 units error.For the number 7384 there are 131 units error.For the number 7385 there are 242 units error.For the number 7386 there are 302 units error.For the number 7387 there are 199 units error.For the number 7388 there are 394 units error.For the number 7389 there are 27 units error.For the number 7390 there are 11 units error.For the number 7391 there are 451 units error.For the number 7392 there are 349 units error.For the number 7393 there are 590 units error.For the number 7394 there are 223 units error.For the number 7395 there are 333 units error.For the number 7396 there are 41 units error.For the number 7397 there are 38 units error.For the number 7398 there are 475 units error.For the number 7399 there are 46 units error.

Page 88: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 7400 there are 444 units error.For the number 7401 there are 154 units error.For the number 7402 there are 398 units error.For the number 7403 there are 173 units error.For the number 7404 there are 252 units error.For the number 7405 there are 437 units error.For the number 7406 there are 641 units error.For the number 7407 there are 78 units error.For the number 7408 there are 230 units error.For the number 7409 there are 462 units error.For the number 7410 there are 516 units error.For the number 7411 there are 247 units error.For the number 7412 there are 138 units error.For the number 7413 there are 149 units error.For the number 7414 there are 259 units error.For the number 7415 there are 43 units error.For the number 7416 there are 316 units error.For the number 7417 there are 413 units error.For the number 7418 there are 508 units error.For the number 7419 there are 1017 units error.For the number 7420 there are 172 units error.For the number 7421 there are 253 units error.For the number 7422 there are 85 units error.For the number 7423 there are 36 units error.For the number 7424 there are 180 units error.For the number 7425 there are 201 units error.For the number 7426 there are 82 units error.For the number 7427 there are 279 units error.For the number 7428 there are 505 units error.For the number 7429 there are 394 units error.For the number 7430 there are 275 units error.For the number 7431 there are 70 units error.For the number 7432 there are 337 units error.For the number 7433 there are 30 units error.For the number 7434 there are 19 units error.For the number 7435 there are 477 units error.For the number 7436 there are 19 units error.For the number 7437 there are 100 units error.For the number 7438 there are 680 units error.For the number 7439 there are 148 units error.For the number 7440 there are 153 units error.For the number 7441 there are 64 units error.For the number 7442 there are 158 units error.For the number 7443 there are 161 units error.For the number 7444 there are 571 units error.For the number 7445 there are 223 units error.For the number 7446 there are 765 units error.For the number 7447 there are 462 units error.For the number 7448 there are 98 units error.For the number 7449 there are 9 units error.For the number 7450 there are 375 units error.For the number 7451 there are 382 units error.

For the number 7452 there are 692 units error.For the number 7453 there are 26 units error.For the number 7454 there are 241 units error.For the number 7455 there are 173 units error.For the number 7456 there are 479 units error.For the number 7457 there are 195 units error.For the number 7458 there are 355 units error.For the number 7459 there are 679 units error.For the number 7460 there are 314 units error.For the number 7461 there are 104 units error.For the number 7462 there are 12 units error.For the number 7463 there are 109 units error.For the number 7464 there are 556 units error.For the number 7465 there are 83 units error.For the number 7466 there are 316 units error.For the number 7467 there are 37 units error.For the number 7468 there are 178 units error.For the number 7469 there are 23 units error.For the number 7470 there are 481 units error.For the number 7471 there are 283 units error.For the number 7472 there are 376 units error.For the number 7473 there are 276 units error.For the number 7474 there are 453 units error.For the number 7475 there are 366 units error.For the number 7476 there are 264 units error.For the number 7477 there are 335 units error.For the number 7478 there are 122 units error.For the number 7479 there are 205 units error.For the number 7480 there are 798 units error.For the number 7481 there are 454 units error.For the number 7482 there are 259 units error.For the number 7483 there are 52 units error.For the number 7484 there are 344 units error.For the number 7485 there are 126 units error.For the number 7486 there are 756 units error.For the number 7487 there are 288 units error.For the number 7488 there are 122 units error.For the number 7489 there are 564 units error.For the number 7490 there are 310 units error.For the number 7491 there are 433 units error.For the number 7492 there are 345 units error.For the number 7493 there are 394 units error.For the number 7494 there are 144 units error.For the number 7495 there are 108 units error.For the number 7496 there are 544 units error.For the number 7497 there are 341 units error.For the number 7498 there are 350 units error.For the number 7499 there are 44 units error.For the number 7500 there are 326 units error.For the number 7501 there are 1 units error.For the number 7502 there are 265 units error.For the number 7503 there are 155 units error.

Page 89: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 7504 there are 500 units error.For the number 7505 there are 167 units error.For the number 7506 there are 762 units error.For the number 7507 there are 80 units error.For the number 7508 there are 49 units error.For the number 7509 there are 416 units error.For the number 7510 there are 191 units error.For the number 7511 there are 260 units error.For the number 7512 there are 188 units error.For the number 7513 there are 71 units error.For the number 7514 there are 399 units error.For the number 7515 there are 217 units error.For the number 7516 there are 169 units error.For the number 7517 there are 228 units error.For the number 7518 there are 36 units error.For the number 7519 there are 201 units error.For the number 7520 there are 407 units error.For the number 7521 there are 638 units error.For the number 7522 there are 52 units error.For the number 7523 there are 456 units error.For the number 7524 there are 271 units error.For the number 7525 there are 586 units error.For the number 7526 there are 810 units error.For the number 7527 there are 71 units error.For the number 7528 there are 20 units error.For the number 7529 there are 465 units error.For the number 7530 there are 17 units error.For the number 7531 there are 422 units error.For the number 7532 there are 6 units error.For the number 7533 there are 92 units error.For the number 7534 there are 369 units error.For the number 7535 there are 48 units error.For the number 7536 there are 508 units error.For the number 7537 there are 516 units error.For the number 7538 there are 206 units error.For the number 7539 there are 289 units error.For the number 7540 there are 400 units error.For the number 7541 there are 195 units error.For the number 7542 there are 46 units error.For the number 7543 there are 105 units error.For the number 7544 there are 238 units error.For the number 7545 there are 83 units error.For the number 7546 there are 665 units error.For the number 7547 there are 154 units error.For the number 7548 there are 102 units error.For the number 7549 there are 538 units error.For the number 7550 there are 651 units error.For the number 7551 there are 439 units error.For the number 7552 there are 133 units error.For the number 7553 there are 294 units error.For the number 7554 there are 183 units error.For the number 7555 there are 161 units error.

For the number 7556 there are 155 units error.For the number 7557 there are 339 units error.For the number 7558 there are 136 units error.For the number 7559 there are 478 units error.For the number 7560 there are 424 units error.For the number 7561 there are 269 units error.For the number 7562 there are 680 units error.For the number 7563 there are 113 units error.For the number 7564 there are 632 units error.For the number 7565 there are 140 units error.For the number 7566 there are 33 units error.For the number 7567 there are 393 units error.For the number 7568 there are 5 units error.For the number 7569 there are 92 units error.For the number 7570 there are 531 units error.For the number 7571 there are 207 units error.For the number 7572 there are 44 units error.For the number 7573 there are 13 units error.For the number 7574 there are 338 units error.For the number 7575 there are 339 units error.For the number 7576 there are 261 units error.For the number 7577 there are 486 units error.For the number 7578 there are 213 units error.For the number 7579 there are 37 units error.For the number 7580 there are 494 units error.For the number 7581 there are 321 units error.For the number 7582 there are 73 units error.For the number 7583 there are 327 units error.For the number 7584 there are 438 units error.For the number 7585 there are 64 units error.For the number 7586 there are 117 units error.For the number 7587 there are 409 units error.For the number 7588 there are 195 units error.For the number 7589 there are 205 units error.For the number 7590 there are 182 units error.For the number 7591 there are 132 units error.For the number 7592 there are 208 units error.For the number 7593 there are 890 units error.For the number 7594 there are 21 units error.For the number 7595 there are 131 units error.For the number 7596 there are 455 units error.For the number 7597 there are 155 units error.For the number 7598 there are 590 units error.For the number 7599 there are 10 units error.For the number 7600 there are 446 units error.For the number 7601 there are 441 units error.For the number 7602 there are 21 units error.For the number 7603 there are 200 units error.For the number 7604 there are 168 units error.For the number 7605 there are 322 units error.For the number 7606 there are 359 units error.For the number 7607 there are 475 units error.

Page 90: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 7608 there are 95 units error.For the number 7609 there are 119 units error.For the number 7610 there are 161 units error.For the number 7611 there are 42 units error.For the number 7612 there are 249 units error.For the number 7613 there are 306 units error.For the number 7614 there are 37 units error.For the number 7615 there are 476 units error.For the number 7616 there are 331 units error.For the number 7617 there are 340 units error.For the number 7618 there are 354 units error.For the number 7619 there are 697 units error.For the number 7620 there are 790 units error.For the number 7621 there are 378 units error.For the number 7622 there are 488 units error.For the number 7623 there are 210 units error.For the number 7624 there are 308 units error.For the number 7625 there are 388 units error.For the number 7626 there are 484 units error.For the number 7627 there are 231 units error.For the number 7628 there are 33 units error.For the number 7629 there are 237 units error.For the number 7630 there are 251 units error.For the number 7631 there are 71 units error.For the number 7632 there are 278 units error.For the number 7633 there are 36 units error.For the number 7634 there are 35 units error.For the number 7635 there are 104 units error.For the number 7636 there are 682 units error.For the number 7637 there are 641 units error.For the number 7638 there are 19 units error.For the number 7639 there are 323 units error.For the number 7640 there are 330 units error.For the number 7641 there are 728 units error.For the number 7642 there are 176 units error.For the number 7643 there are 428 units error.For the number 7644 there are 100 units error.For the number 7645 there are 119 units error.For the number 7646 there are 177 units error.For the number 7647 there are 54 units error.For the number 7648 there are 12 units error.For the number 7649 there are 141 units error.For the number 7650 there are 489 units error.For the number 7651 there are 429 units error.For the number 7652 there are 329 units error.For the number 7653 there are 449 units error.For the number 7654 there are 18 units error.For the number 7655 there are 473 units error.For the number 7656 there are 94 units error.For the number 7657 there are 61 units error.For the number 7658 there are 20 units error.For the number 7659 there are 325 units error.

For the number 7660 there are 141 units error.For the number 7661 there are 482 units error.For the number 7662 there are 286 units error.For the number 7663 there are 305 units error.For the number 7664 there are 45 units error.For the number 7665 there are 113 units error.For the number 7666 there are 223 units error.For the number 7667 there are 202 units error.For the number 7668 there are 264 units error.For the number 7669 there are 142 units error.For the number 7670 there are 601 units error.For the number 7671 there are 248 units error.For the number 7672 there are 47 units error.For the number 7673 there are 241 units error.For the number 7674 there are 295 units error.For the number 7675 there are 324 units error.For the number 7676 there are 166 units error.For the number 7677 there are 40 units error.For the number 7678 there are 191 units error.For the number 7679 there are 230 units error.For the number 7680 there are 24 units error.For the number 7681 there are 35 units error.For the number 7682 there are 155 units error.For the number 7683 there are 111 units error.For the number 7684 there are 390 units error.For the number 7685 there are 506 units error.For the number 7686 there are 541 units error.For the number 7687 there are 325 units error.For the number 7688 there are 305 units error.For the number 7689 there are 480 units error.For the number 7690 there are 53 units error.For the number 7691 there are 102 units error.For the number 7692 there are 3 units error.For the number 7693 there are 23 units error.For the number 7694 there are 146 units error.For the number 7695 there are 263 units error.For the number 7696 there are 839 units error.For the number 7697 there are 152 units error.For the number 7698 there are 183 units error.For the number 7699 there are 217 units error.For the number 7700 there are 510 units error.For the number 7701 there are 429 units error.For the number 7702 there are 108 units error.For the number 7703 there are 186 units error.For the number 7704 there are 122 units error.For the number 7705 there are 204 units error.For the number 7706 there are 523 units error.For the number 7707 there are 302 units error.For the number 7708 there are 846 units error.For the number 7709 there are 316 units error.For the number 7710 there are 840 units error.For the number 7711 there are 106 units error.

Page 91: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 7712 there are 687 units error.For the number 7713 there are 248 units error.For the number 7714 there are 525 units error.For the number 7715 there are 91 units error.For the number 7716 there are 196 units error.For the number 7717 there are 129 units error.For the number 7718 there are 72 units error.For the number 7719 there are 346 units error.For the number 7720 there are 536 units error.For the number 7721 there are 197 units error.For the number 7722 there are 379 units error.For the number 7723 there are 10 units error.For the number 7724 there are 491 units error.For the number 7725 there are 64 units error.For the number 7726 there are 294 units error.For the number 7727 there are 439 units error.For the number 7728 there are 220 units error.For the number 7729 there are 77 units error.For the number 7730 there are 155 units error.For the number 7731 there are 324 units error.For the number 7732 there are 162 units error.For the number 7733 there are 222 units error.For the number 7734 there are 380 units error.For the number 7735 there are 160 units error.For the number 7736 there are 569 units error.For the number 7737 there are 413 units error.For the number 7738 there are 246 units error.For the number 7739 there are 94 units error.For the number 7740 there are 268 units error.For the number 7741 there are 227 units error.For the number 7742 there are 421 units error.For the number 7743 there are 128 units error.For the number 7744 there are 509 units error.For the number 7745 there are 190 units error.For the number 7746 there are 312 units error.For the number 7747 there are 157 units error.For the number 7748 there are 636 units error.For the number 7749 there are 243 units error.For the number 7750 there are 774 units error.For the number 7751 there are 452 units error.For the number 7752 there are 88 units error.For the number 7753 there are 215 units error.For the number 7754 there are 43 units error.For the number 7755 there are 116 units error.For the number 7756 there are 517 units error.For the number 7757 there are 335 units error.For the number 7758 there are 172 units error.For the number 7759 there are 441 units error.For the number 7760 there are 267 units error.For the number 7761 there are 59 units error.For the number 7762 there are 278 units error.For the number 7763 there are 13 units error.

For the number 7764 there are 137 units error.For the number 7765 there are 0 units error.For the number 7766 there are 5 units error.For the number 7767 there are 110 units error.For the number 7768 there are 641 units error.For the number 7769 there are 478 units error.For the number 7770 there are 7 units error.For the number 7771 there are 6 units error.For the number 7772 there are 148 units error.For the number 7773 there are 50 units error.For the number 7774 there are 141 units error.For the number 7775 there are 795 units error.For the number 7776 there are 92 units error.For the number 7777 there are 0 units error.For the number 7778 there are 237 units error.For the number 7779 there are 902 units error.For the number 7780 there are 37 units error.For the number 7781 there are 418 units error.For the number 7782 there are 294 units error.For the number 7783 there are 205 units error.For the number 7784 there are 338 units error.For the number 7785 there are 261 units error.For the number 7786 there are 364 units error.For the number 7787 there are 105 units error.For the number 7788 there are 273 units error.For the number 7789 there are 252 units error.For the number 7790 there are 36 units error.For the number 7791 there are 675 units error.For the number 7792 there are 90 units error.For the number 7793 there are 234 units error.For the number 7794 there are 464 units error.For the number 7795 there are 144 units error.For the number 7796 there are 760 units error.For the number 7797 there are 352 units error.For the number 7798 there are 340 units error.For the number 7799 there are 314 units error.For the number 7800 there are 70 units error.For the number 7801 there are 323 units error.For the number 7802 there are 827 units error.For the number 7803 there are 26 units error.For the number 7804 there are 212 units error.For the number 7805 there are 259 units error.For the number 7806 there are 54 units error.For the number 7807 there are 216 units error.For the number 7808 there are 1 units error.For the number 7809 there are 193 units error.For the number 7810 there are 800 units error.For the number 7811 there are 360 units error.For the number 7812 there are 464 units error.For the number 7813 there are 102 units error.For the number 7814 there are 494 units error.For the number 7815 there are 593 units error.

Page 92: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 7816 there are 547 units error.For the number 7817 there are 246 units error.For the number 7818 there are 571 units error.For the number 7819 there are 522 units error.For the number 7820 there are 608 units error.For the number 7821 there are 50 units error.For the number 7822 there are 536 units error.For the number 7823 there are 135 units error.For the number 7824 there are 415 units error.For the number 7825 there are 104 units error.For the number 7826 there are 563 units error.For the number 7827 there are 382 units error.For the number 7828 there are 881 units error.For the number 7829 there are 66 units error.For the number 7830 there are 256 units error.For the number 7831 there are 451 units error.For the number 7832 there are 374 units error.For the number 7833 there are 272 units error.For the number 7834 there are 60 units error.For the number 7835 there are 634 units error.For the number 7836 there are 57 units error.For the number 7837 there are 467 units error.For the number 7838 there are 224 units error.For the number 7839 there are 200 units error.For the number 7840 there are 86 units error.For the number 7841 there are 79 units error.For the number 7842 there are 112 units error.For the number 7843 there are 36 units error.For the number 7844 there are 430 units error.For the number 7845 there are 134 units error.For the number 7846 there are 156 units error.For the number 7847 there are 164 units error.For the number 7848 there are 511 units error.For the number 7849 there are 582 units error.For the number 7850 there are 9 units error.For the number 7851 there are 115 units error.For the number 7852 there are 61 units error.For the number 7853 there are 50 units error.For the number 7854 there are 228 units error.For the number 7855 there are 166 units error.For the number 7856 there are 485 units error.For the number 7857 there are 31 units error.For the number 7858 there are 439 units error.For the number 7859 there are 35 units error.For the number 7860 there are 148 units error.For the number 7861 there are 169 units error.For the number 7862 there are 272 units error.For the number 7863 there are 269 units error.For the number 7864 there are 36 units error.For the number 7865 there are 279 units error.For the number 7866 there are 147 units error.For the number 7867 there are 248 units error.

For the number 7868 there are 249 units error.For the number 7869 there are 492 units error.For the number 7870 there are 655 units error.For the number 7871 there are 311 units error.For the number 7872 there are 407 units error.For the number 7873 there are 132 units error.For the number 7874 there are 324 units error.For the number 7875 there are 102 units error.For the number 7876 there are 361 units error.For the number 7877 there are 20 units error.For the number 7878 there are 521 units error.For the number 7879 there are 307 units error.For the number 7880 there are 142 units error.For the number 7881 there are 412 units error.For the number 7882 there are 298 units error.For the number 7883 there are 216 units error.For the number 7884 there are 400 units error.For the number 7885 there are 39 units error.For the number 7886 there are 325 units error.For the number 7887 there are 88 units error.For the number 7888 there are 277 units error.For the number 7889 there are 314 units error.For the number 7890 there are 42 units error.For the number 7891 there are 273 units error.For the number 7892 there are 890 units error.For the number 7893 there are 274 units error.For the number 7894 there are 477 units error.For the number 7895 there are 169 units error.For the number 7896 there are 160 units error.For the number 7897 there are 407 units error.For the number 7898 there are 359 units error.For the number 7899 there are 285 units error.For the number 7900 there are 603 units error.For the number 7901 there are 339 units error.For the number 7902 there are 313 units error.For the number 7903 there are 17 units error.For the number 7904 there are 206 units error.For the number 7905 there are 340 units error.For the number 7906 there are 247 units error.For the number 7907 there are 274 units error.For the number 7908 there are 205 units error.For the number 7909 there are 281 units error.For the number 7910 there are 532 units error.For the number 7911 there are 266 units error.For the number 7912 there are 426 units error.For the number 7913 there are 22 units error.For the number 7914 there are 90 units error.For the number 7915 there are 34 units error.For the number 7916 there are 51 units error.For the number 7917 there are 535 units error.For the number 7918 there are 634 units error.For the number 7919 there are 64 units error.

Page 93: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 7920 there are 230 units error.For the number 7921 there are 108 units error.For the number 7922 there are 608 units error.For the number 7923 there are 321 units error.For the number 7924 there are 190 units error.For the number 7925 there are 641 units error.For the number 7926 there are 439 units error.For the number 7927 there are 678 units error.For the number 7928 there are 243 units error.For the number 7929 there are 128 units error.For the number 7930 there are 546 units error.For the number 7931 there are 257 units error.For the number 7932 there are 106 units error.For the number 7933 there are 336 units error.For the number 7934 there are 119 units error.For the number 7935 there are 209 units error.For the number 7936 there are 226 units error.For the number 7937 there are 345 units error.For the number 7938 there are 146 units error.For the number 7939 there are 473 units error.For the number 7940 there are 472 units error.For the number 7941 there are 81 units error.For the number 7942 there are 110 units error.For the number 7943 there are 86 units error.For the number 7944 there are 58 units error.For the number 7945 there are 538 units error.For the number 7946 there are 134 units error.For the number 7947 there are 77 units error.For the number 7948 there are 351 units error.For the number 7949 there are 465 units error.For the number 7950 there are 294 units error.For the number 7951 there are 440 units error.For the number 7952 there are 167 units error.For the number 7953 there are 178 units error.For the number 7954 there are 564 units error.For the number 7955 there are 554 units error.For the number 7956 there are 808 units error.For the number 7957 there are 546 units error.For the number 7958 there are 51 units error.For the number 7959 there are 201 units error.For the number 7960 there are 174 units error.For the number 7961 there are 70 units error.For the number 7962 there are 428 units error.For the number 7963 there are 53 units error.For the number 7964 there are 700 units error.For the number 7965 there are 550 units error.For the number 7966 there are 842 units error.For the number 7967 there are 270 units error.For the number 7968 there are 588 units error.For the number 7969 there are 213 units error.For the number 7970 there are 87 units error.For the number 7971 there are 201 units error.

For the number 7972 there are 631 units error.For the number 7973 there are 74 units error.For the number 7974 there are 301 units error.For the number 7975 there are 284 units error.For the number 7976 there are 198 units error.For the number 7977 there are 18 units error.For the number 7978 there are 84 units error.For the number 7979 there are 665 units error.For the number 7980 there are 60 units error.For the number 7981 there are 390 units error.For the number 7982 there are 173 units error.For the number 7983 there are 23 units error.For the number 7984 there are 94 units error.For the number 7985 there are 229 units error.For the number 7986 there are 382 units error.For the number 7987 there are 421 units error.For the number 7988 there are 21 units error.For the number 7989 there are 16 units error.For the number 7990 there are 190 units error.For the number 7991 there are 556 units error.For the number 7992 there are 120 units error.For the number 7993 there are 150 units error.For the number 7994 there are 531 units error.For the number 7995 there are 314 units error.For the number 7996 there are 313 units error.For the number 7997 there are 51 units error.For the number 7998 there are 73 units error.For the number 7999 there are 68 units error.For the number 8000 there are 13 units error.For the number 8001 there are 537 units error.For the number 8002 there are 63 units error.For the number 8003 there are 297 units error.For the number 8004 there are 147 units error.For the number 8005 there are 438 units error.For the number 8006 there are 538 units error.For the number 8007 there are 144 units error.For the number 8008 there are 228 units error.For the number 8009 there are 332 units error.For the number 8010 there are 518 units error.For the number 8011 there are 629 units error.For the number 8012 there are 139 units error.For the number 8013 there are 195 units error.For the number 8014 there are 54 units error.For the number 8015 there are 520 units error.For the number 8016 there are 22 units error.For the number 8017 there are 274 units error.For the number 8018 there are 173 units error.For the number 8019 there are 4 units error.For the number 8020 there are 139 units error.For the number 8021 there are 210 units error.For the number 8022 there are 830 units error.For the number 8023 there are 101 units error.

Page 94: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 8024 there are 174 units error.For the number 8025 there are 308 units error.For the number 8026 there are 444 units error.For the number 8027 there are 381 units error.For the number 8028 there are 768 units error.For the number 8029 there are 46 units error.For the number 8030 there are 624 units error.For the number 8031 there are 388 units error.For the number 8032 there are 352 units error.For the number 8033 there are 252 units error.For the number 8034 there are 290 units error.For the number 8035 there are 1005 units error.For the number 8036 there are 118 units error.For the number 8037 there are 263 units error.For the number 8038 there are 128 units error.For the number 8039 there are 198 units error.For the number 8040 there are 457 units error.For the number 8041 there are 282 units error.For the number 8042 there are 577 units error.For the number 8043 there are 305 units error.For the number 8044 there are 324 units error.For the number 8045 there are 445 units error.For the number 8046 there are 68 units error.For the number 8047 there are 63 units error.For the number 8048 there are 102 units error.For the number 8049 there are 150 units error.For the number 8050 there are 266 units error.For the number 8051 there are 726 units error.For the number 8052 there are 124 units error.For the number 8053 there are 160 units error.For the number 8054 there are 93 units error.For the number 8055 there are 252 units error.For the number 8056 there are 641 units error.For the number 8057 there are 5 units error.For the number 8058 there are 251 units error.For the number 8059 there are 250 units error.For the number 8060 there are 280 units error.For the number 8061 there are 282 units error.For the number 8062 there are 179 units error.For the number 8063 there are 130 units error.For the number 8064 there are 547 units error.For the number 8065 there are 401 units error.For the number 8066 there are 142 units error.For the number 8067 there are 209 units error.For the number 8068 there are 168 units error.For the number 8069 there are 508 units error.For the number 8070 there are 717 units error.For the number 8071 there are 547 units error.For the number 8072 there are 474 units error.For the number 8073 there are 218 units error.For the number 8074 there are 117 units error.For the number 8075 there are 188 units error.

For the number 8076 there are 198 units error.For the number 8077 there are 169 units error.For the number 8078 there are 529 units error.For the number 8079 there are 394 units error.For the number 8080 there are 15 units error.For the number 8081 there are 75 units error.For the number 8082 there are 293 units error.For the number 8083 there are 763 units error.For the number 8084 there are 558 units error.For the number 8085 there are 874 units error.For the number 8086 there are 709 units error.For the number 8087 there are 370 units error.For the number 8088 there are 125 units error.For the number 8089 there are 248 units error.For the number 8090 there are 607 units error.For the number 8091 there are 822 units error.For the number 8092 there are 487 units error.For the number 8093 there are 25 units error.For the number 8094 there are 268 units error.For the number 8095 there are 549 units error.For the number 8096 there are 533 units error.For the number 8097 there are 301 units error.For the number 8098 there are 389 units error.For the number 8099 there are 575 units error.For the number 8100 there are 390 units error.For the number 8101 there are 69 units error.For the number 8102 there are 519 units error.For the number 8103 there are 413 units error.For the number 8104 there are 314 units error.For the number 8105 there are 458 units error.For the number 8106 there are 540 units error.For the number 8107 there are 41 units error.For the number 8108 there are 162 units error.For the number 8109 there are 184 units error.For the number 8110 there are 144 units error.For the number 8111 there are 315 units error.For the number 8112 there are 150 units error.For the number 8113 there are 140 units error.For the number 8114 there are 190 units error.For the number 8115 there are 478 units error.For the number 8116 there are 429 units error.For the number 8117 there are 477 units error.For the number 8118 there are 597 units error.For the number 8119 there are 466 units error.For the number 8120 there are 541 units error.For the number 8121 there are 316 units error.For the number 8122 there are 355 units error.For the number 8123 there are 975 units error.For the number 8124 there are 482 units error.For the number 8125 there are 87 units error.For the number 8126 there are 122 units error.For the number 8127 there are 263 units error.

Page 95: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 8128 there are 202 units error.For the number 8129 there are 421 units error.For the number 8130 there are 190 units error.For the number 8131 there are 211 units error.For the number 8132 there are 416 units error.For the number 8133 there are 383 units error.For the number 8134 there are 189 units error.For the number 8135 there are 445 units error.For the number 8136 there are 46 units error.For the number 8137 there are 315 units error.For the number 8138 there are 11 units error.For the number 8139 there are 126 units error.For the number 8140 there are 69 units error.For the number 8141 there are 413 units error.For the number 8142 there are 237 units error.For the number 8143 there are 161 units error.For the number 8144 there are 305 units error.For the number 8145 there are 242 units error.For the number 8146 there are 138 units error.For the number 8147 there are 92 units error.For the number 8148 there are 219 units error.For the number 8149 there are 223 units error.For the number 8150 there are 82 units error.For the number 8151 there are 753 units error.For the number 8152 there are 215 units error.For the number 8153 there are 480 units error.For the number 8154 there are 29 units error.For the number 8155 there are 330 units error.For the number 8156 there are 389 units error.For the number 8157 there are 180 units error.For the number 8158 there are 223 units error.For the number 8159 there are 482 units error.For the number 8160 there are 219 units error.For the number 8161 there are 38 units error.For the number 8162 there are 9 units error.For the number 8163 there are 502 units error.For the number 8164 there are 195 units error.For the number 8165 there are 24 units error.For the number 8166 there are 512 units error.For the number 8167 there are 19 units error.For the number 8168 there are 375 units error.For the number 8169 there are 96 units error.For the number 8170 there are 286 units error.For the number 8171 there are 534 units error.For the number 8172 there are 368 units error.For the number 8173 there are 267 units error.For the number 8174 there are 158 units error.For the number 8175 there are 80 units error.For the number 8176 there are 55 units error.For the number 8177 there are 303 units error.For the number 8178 there are 455 units error.For the number 8179 there are 83 units error.

For the number 8180 there are 54 units error.For the number 8181 there are 27 units error.For the number 8182 there are 195 units error.For the number 8183 there are 60 units error.For the number 8184 there are 130 units error.For the number 8185 there are 28 units error.For the number 8186 there are 396 units error.For the number 8187 there are 739 units error.For the number 8188 there are 371 units error.For the number 8189 there are 385 units error.For the number 8190 there are 67 units error.For the number 8191 there are 517 units error.For the number 8192 there are 188 units error.For the number 8193 there are 23 units error.For the number 8194 there are 250 units error.For the number 8195 there are 391 units error.For the number 8196 there are 193 units error.For the number 8197 there are 254 units error.For the number 8198 there are 214 units error.For the number 8199 there are 645 units error.For the number 8200 there are 143 units error.For the number 8201 there are 508 units error.For the number 8202 there are 49 units error.For the number 8203 there are 608 units error.For the number 8204 there are 99 units error.For the number 8205 there are 171 units error.For the number 8206 there are 560 units error.For the number 8207 there are 36 units error.For the number 8208 there are 44 units error.For the number 8209 there are 119 units error.For the number 8210 there are 135 units error.For the number 8211 there are 482 units error.For the number 8212 there are 328 units error.For the number 8213 there are 699 units error.For the number 8214 there are 753 units error.For the number 8215 there are 37 units error.For the number 8216 there are 142 units error.For the number 8217 there are 201 units error.For the number 8218 there are 775 units error.For the number 8219 there are 6 units error.For the number 8220 there are 188 units error.For the number 8221 there are 98 units error.For the number 8222 there are 459 units error.For the number 8223 there are 583 units error.For the number 8224 there are 241 units error.For the number 8225 there are 222 units error.For the number 8226 there are 643 units error.For the number 8227 there are 43 units error.For the number 8228 there are 585 units error.For the number 8229 there are 760 units error.For the number 8230 there are 519 units error.For the number 8231 there are 63 units error.

Page 96: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 8232 there are 26 units error.For the number 8233 there are 116 units error.For the number 8234 there are 40 units error.For the number 8235 there are 144 units error.For the number 8236 there are 757 units error.For the number 8237 there are 373 units error.For the number 8238 there are 121 units error.For the number 8239 there are 475 units error.For the number 8240 there are 519 units error.For the number 8241 there are 605 units error.For the number 8242 there are 638 units error.For the number 8243 there are 663 units error.For the number 8244 there are 61 units error.For the number 8245 there are 333 units error.For the number 8246 there are 342 units error.For the number 8247 there are 568 units error.For the number 8248 there are 377 units error.For the number 8249 there are 220 units error.For the number 8250 there are 225 units error.For the number 8251 there are 173 units error.For the number 8252 there are 76 units error.For the number 8253 there are 203 units error.For the number 8254 there are 454 units error.For the number 8255 there are 113 units error.For the number 8256 there are 157 units error.For the number 8257 there are 295 units error.For the number 8258 there are 322 units error.For the number 8259 there are 68 units error.For the number 8260 there are 133 units error.For the number 8261 there are 291 units error.For the number 8262 there are 643 units error.For the number 8263 there are 157 units error.For the number 8264 there are 667 units error.For the number 8265 there are 328 units error.For the number 8266 there are 93 units error.For the number 8267 there are 318 units error.For the number 8268 there are 65 units error.For the number 8269 there are 113 units error.For the number 8270 there are 363 units error.For the number 8271 there are 18 units error.For the number 8272 there are 239 units error.For the number 8273 there are 51 units error.For the number 8274 there are 677 units error.For the number 8275 there are 201 units error.For the number 8276 there are 3 units error.For the number 8277 there are 219 units error.For the number 8278 there are 821 units error.For the number 8279 there are 480 units error.For the number 8280 there are 11 units error.For the number 8281 there are 42 units error.For the number 8282 there are 400 units error.For the number 8283 there are 604 units error.

For the number 8284 there are 48 units error.For the number 8285 there are 331 units error.For the number 8286 there are 203 units error.For the number 8287 there are 415 units error.For the number 8288 there are 219 units error.For the number 8289 there are 709 units error.For the number 8290 there are 602 units error.For the number 8291 there are 150 units error.For the number 8292 there are 60 units error.For the number 8293 there are 316 units error.For the number 8294 there are 215 units error.For the number 8295 there are 245 units error.For the number 8296 there are 170 units error.For the number 8297 there are 243 units error.For the number 8298 there are 6 units error.For the number 8299 there are 818 units error.For the number 8300 there are 1014 units error.For the number 8301 there are 187 units error.For the number 8302 there are 88 units error.For the number 8303 there are 336 units error.For the number 8304 there are 379 units error.For the number 8305 there are 1 units error.For the number 8306 there are 800 units error.For the number 8307 there are 159 units error.For the number 8308 there are 207 units error.For the number 8309 there are 265 units error.For the number 8310 there are 668 units error.For the number 8311 there are 18 units error.For the number 8312 there are 412 units error.For the number 8313 there are 47 units error.For the number 8314 there are 57 units error.For the number 8315 there are 296 units error.For the number 8316 there are 246 units error.For the number 8317 there are 579 units error.For the number 8318 there are 46 units error.For the number 8319 there are 139 units error.For the number 8320 there are 242 units error.For the number 8321 there are 31 units error.For the number 8322 there are 359 units error.For the number 8323 there are 198 units error.For the number 8324 there are 626 units error.For the number 8325 there are 277 units error.For the number 8326 there are 172 units error.For the number 8327 there are 444 units error.For the number 8328 there are 663 units error.For the number 8329 there are 771 units error.For the number 8330 there are 270 units error.For the number 8331 there are 334 units error.For the number 8332 there are 474 units error.For the number 8333 there are 699 units error.For the number 8334 there are 894 units error.For the number 8335 there are 132 units error.

Page 97: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 8336 there are 155 units error.For the number 8337 there are 75 units error.For the number 8338 there are 489 units error.For the number 8339 there are 67 units error.For the number 8340 there are 211 units error.For the number 8341 there are 641 units error.For the number 8342 there are 55 units error.For the number 8343 there are 339 units error.For the number 8344 there are 129 units error.For the number 8345 there are 647 units error.For the number 8346 there are 385 units error.For the number 8347 there are 11 units error.For the number 8348 there are 94 units error.For the number 8349 there are 355 units error.For the number 8350 there are 278 units error.For the number 8351 there are 300 units error.For the number 8352 there are 289 units error.For the number 8353 there are 124 units error.For the number 8354 there are 170 units error.For the number 8355 there are 413 units error.For the number 8356 there are 327 units error.For the number 8357 there are 345 units error.For the number 8358 there are 289 units error.For the number 8359 there are 294 units error.For the number 8360 there are 764 units error.For the number 8361 there are 268 units error.For the number 8362 there are 451 units error.For the number 8363 there are 59 units error.For the number 8364 there are 111 units error.For the number 8365 there are 263 units error.For the number 8366 there are 71 units error.For the number 8367 there are 501 units error.For the number 8368 there are 119 units error.For the number 8369 there are 361 units error.For the number 8370 there are 691 units error.For the number 8371 there are 645 units error.For the number 8372 there are 686 units error.For the number 8373 there are 67 units error.For the number 8374 there are 15 units error.For the number 8375 there are 211 units error.For the number 8376 there are 291 units error.For the number 8377 there are 106 units error.For the number 8378 there are 385 units error.For the number 8379 there are 411 units error.For the number 8380 there are 266 units error.For the number 8381 there are 88 units error.For the number 8382 there are 174 units error.For the number 8383 there are 364 units error.For the number 8384 there are 92 units error.For the number 8385 there are 201 units error.For the number 8386 there are 410 units error.For the number 8387 there are 142 units error.

For the number 8388 there are 350 units error.For the number 8389 there are 31 units error.For the number 8390 there are 352 units error.For the number 8391 there are 333 units error.For the number 8392 there are 339 units error.For the number 8393 there are 389 units error.For the number 8394 there are 320 units error.For the number 8395 there are 312 units error.For the number 8396 there are 267 units error.For the number 8397 there are 440 units error.For the number 8398 there are 482 units error.For the number 8399 there are 186 units error.For the number 8400 there are 272 units error.For the number 8401 there are 120 units error.For the number 8402 there are 22 units error.For the number 8403 there are 128 units error.For the number 8404 there are 64 units error.For the number 8405 there are 246 units error.For the number 8406 there are 198 units error.For the number 8407 there are 423 units error.For the number 8408 there are 549 units error.For the number 8409 there are 541 units error.For the number 8410 there are 339 units error.For the number 8411 there are 253 units error.For the number 8412 there are 104 units error.For the number 8413 there are 347 units error.For the number 8414 there are 99 units error.For the number 8415 there are 11 units error.For the number 8416 there are 158 units error.For the number 8417 there are 113 units error.For the number 8418 there are 107 units error.For the number 8419 there are 185 units error.For the number 8420 there are 166 units error.For the number 8421 there are 15 units error.For the number 8422 there are 160 units error.For the number 8423 there are 270 units error.For the number 8424 there are 15 units error.For the number 8425 there are 243 units error.For the number 8426 there are 82 units error.For the number 8427 there are 33 units error.For the number 8428 there are 509 units error.For the number 8429 there are 126 units error.For the number 8430 there are 122 units error.For the number 8431 there are 145 units error.For the number 8432 there are 114 units error.For the number 8433 there are 66 units error.For the number 8434 there are 465 units error.For the number 8435 there are 246 units error.For the number 8436 there are 472 units error.For the number 8437 there are 232 units error.For the number 8438 there are 304 units error.For the number 8439 there are 87 units error.

Page 98: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 8440 there are 367 units error.For the number 8441 there are 538 units error.For the number 8442 there are 108 units error.For the number 8443 there are 326 units error.For the number 8444 there are 169 units error.For the number 8445 there are 493 units error.For the number 8446 there are 325 units error.For the number 8447 there are 97 units error.For the number 8448 there are 189 units error.For the number 8449 there are 523 units error.For the number 8450 there are 7 units error.For the number 8451 there are 285 units error.For the number 8452 there are 71 units error.For the number 8453 there are 842 units error.For the number 8454 there are 263 units error.For the number 8455 there are 64 units error.For the number 8456 there are 180 units error.For the number 8457 there are 574 units error.For the number 8458 there are 104 units error.For the number 8459 there are 88 units error.For the number 8460 there are 371 units error.For the number 8461 there are 6 units error.For the number 8462 there are 399 units error.For the number 8463 there are 10 units error.For the number 8464 there are 358 units error.For the number 8465 there are 710 units error.For the number 8466 there are 417 units error.For the number 8467 there are 260 units error.For the number 8468 there are 469 units error.For the number 8469 there are 223 units error.For the number 8470 there are 339 units error.For the number 8471 there are 201 units error.For the number 8472 there are 343 units error.For the number 8473 there are 429 units error.For the number 8474 there are 125 units error.For the number 8475 there are 298 units error.For the number 8476 there are 244 units error.For the number 8477 there are 317 units error.For the number 8478 there are 214 units error.For the number 8479 there are 430 units error.For the number 8480 there are 282 units error.For the number 8481 there are 97 units error.For the number 8482 there are 809 units error.For the number 8483 there are 61 units error.For the number 8484 there are 6 units error.For the number 8485 there are 187 units error.For the number 8486 there are 786 units error.For the number 8487 there are 108 units error.For the number 8488 there are 745 units error.For the number 8489 there are 149 units error.For the number 8490 there are 63 units error.For the number 8491 there are 719 units error.

For the number 8492 there are 204 units error.For the number 8493 there are 258 units error.For the number 8494 there are 335 units error.For the number 8495 there are 119 units error.For the number 8496 there are 61 units error.For the number 8497 there are 10 units error.For the number 8498 there are 1123 units error.For the number 8499 there are 316 units error.For the number 8500 there are 348 units error.For the number 8501 there are 579 units error.For the number 8502 there are 102 units error.For the number 8503 there are 112 units error.For the number 8504 there are 176 units error.For the number 8505 there are 192 units error.For the number 8506 there are 584 units error.For the number 8507 there are 581 units error.For the number 8508 there are 195 units error.For the number 8509 there are 205 units error.For the number 8510 there are 57 units error.For the number 8511 there are 21 units error.For the number 8512 there are 238 units error.For the number 8513 there are 612 units error.For the number 8514 there are 313 units error.For the number 8515 there are 255 units error.For the number 8516 there are 1601 units error.For the number 8517 there are 95 units error.For the number 8518 there are 14 units error.For the number 8519 there are 181 units error.For the number 8520 there are 525 units error.For the number 8521 there are 301 units error.For the number 8522 there are 682 units error.For the number 8523 there are 29 units error.For the number 8524 there are 106 units error.For the number 8525 there are 700 units error.For the number 8526 there are 563 units error.For the number 8527 there are 519 units error.For the number 8528 there are 173 units error.For the number 8529 there are 245 units error.For the number 8530 there are 782 units error.For the number 8531 there are 140 units error.For the number 8532 there are 306 units error.For the number 8533 there are 249 units error.For the number 8534 there are 541 units error.For the number 8535 there are 418 units error.For the number 8536 there are 260 units error.For the number 8537 there are 138 units error.For the number 8538 there are 315 units error.For the number 8539 there are 384 units error.For the number 8540 there are 718 units error.For the number 8541 there are 326 units error.For the number 8542 there are 205 units error.For the number 8543 there are 389 units error.

Page 99: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 8544 there are 189 units error.For the number 8545 there are 520 units error.For the number 8546 there are 91 units error.For the number 8547 there are 522 units error.For the number 8548 there are 158 units error.For the number 8549 there are 443 units error.For the number 8550 there are 60 units error.For the number 8551 there are 127 units error.For the number 8552 there are 410 units error.For the number 8553 there are 216 units error.For the number 8554 there are 124 units error.For the number 8555 there are 55 units error.For the number 8556 there are 251 units error.For the number 8557 there are 422 units error.For the number 8558 there are 252 units error.For the number 8559 there are 180 units error.For the number 8560 there are 33 units error.For the number 8561 there are 327 units error.For the number 8562 there are 267 units error.For the number 8563 there are 42 units error.For the number 8564 there are 366 units error.For the number 8565 there are 253 units error.For the number 8566 there are 245 units error.For the number 8567 there are 403 units error.For the number 8568 there are 364 units error.For the number 8569 there are 248 units error.For the number 8570 there are 543 units error.For the number 8571 there are 131 units error.For the number 8572 there are 6 units error.For the number 8573 there are 368 units error.For the number 8574 there are 266 units error.For the number 8575 there are 363 units error.For the number 8576 there are 358 units error.For the number 8577 there are 157 units error.For the number 8578 there are 483 units error.For the number 8579 there are 127 units error.For the number 8580 there are 265 units error.For the number 8581 there are 374 units error.For the number 8582 there are 214 units error.For the number 8583 there are 568 units error.For the number 8584 there are 687 units error.For the number 8585 there are 339 units error.For the number 8586 there are 696 units error.For the number 8587 there are 839 units error.For the number 8588 there are 137 units error.For the number 8589 there are 119 units error.For the number 8590 there are 360 units error.For the number 8591 there are 639 units error.For the number 8592 there are 150 units error.For the number 8593 there are 344 units error.For the number 8594 there are 581 units error.For the number 8595 there are 156 units error.

For the number 8596 there are 162 units error.For the number 8597 there are 251 units error.For the number 8598 there are 828 units error.For the number 8599 there are 23 units error.For the number 8600 there are 312 units error.For the number 8601 there are 152 units error.For the number 8602 there are 188 units error.For the number 8603 there are 60 units error.For the number 8604 there are 417 units error.For the number 8605 there are 391 units error.For the number 8606 there are 436 units error.For the number 8607 there are 235 units error.For the number 8608 there are 219 units error.For the number 8609 there are 169 units error.For the number 8610 there are 175 units error.For the number 8611 there are 260 units error.For the number 8612 there are 200 units error.For the number 8613 there are 20 units error.For the number 8614 there are 426 units error.For the number 8615 there are 58 units error.For the number 8616 there are 337 units error.For the number 8617 there are 107 units error.For the number 8618 there are 194 units error.For the number 8619 there are 11 units error.For the number 8620 there are 212 units error.For the number 8621 there are 408 units error.For the number 8622 there are 175 units error.For the number 8623 there are 300 units error.For the number 8624 there are 56 units error.For the number 8625 there are 516 units error.For the number 8626 there are 614 units error.For the number 8627 there are 547 units error.For the number 8628 there are 215 units error.For the number 8629 there are 115 units error.For the number 8630 there are 523 units error.For the number 8631 there are 243 units error.For the number 8632 there are 78 units error.For the number 8633 there are 387 units error.For the number 8634 there are 405 units error.For the number 8635 there are 64 units error.For the number 8636 there are 267 units error.For the number 8637 there are 4 units error.For the number 8638 there are 521 units error.For the number 8639 there are 665 units error.For the number 8640 there are 82 units error.For the number 8641 there are 491 units error.For the number 8642 there are 42 units error.For the number 8643 there are 459 units error.For the number 8644 there are 622 units error.For the number 8645 there are 758 units error.For the number 8646 there are 105 units error.For the number 8647 there are 340 units error.

Page 100: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 8648 there are 376 units error.For the number 8649 there are 52 units error.For the number 8650 there are 193 units error.For the number 8651 there are 255 units error.For the number 8652 there are 151 units error.For the number 8653 there are 94 units error.For the number 8654 there are 220 units error.For the number 8655 there are 152 units error.For the number 8656 there are 4 units error.For the number 8657 there are 182 units error.For the number 8658 there are 113 units error.For the number 8659 there are 16 units error.For the number 8660 there are 292 units error.For the number 8661 there are 188 units error.For the number 8662 there are 340 units error.For the number 8663 there are 364 units error.For the number 8664 there are 259 units error.For the number 8665 there are 177 units error.For the number 8666 there are 353 units error.For the number 8667 there are 293 units error.For the number 8668 there are 234 units error.For the number 8669 there are 656 units error.For the number 8670 there are 205 units error.For the number 8671 there are 299 units error.For the number 8672 there are 56 units error.For the number 8673 there are 447 units error.For the number 8674 there are 198 units error.For the number 8675 there are 43 units error.For the number 8676 there are 585 units error.For the number 8677 there are 380 units error.For the number 8678 there are 235 units error.For the number 8679 there are 182 units error.For the number 8680 there are 175 units error.For the number 8681 there are 52 units error.For the number 8682 there are 286 units error.For the number 8683 there are 369 units error.For the number 8684 there are 276 units error.For the number 8685 there are 307 units error.For the number 8686 there are 371 units error.For the number 8687 there are 8 units error.For the number 8688 there are 447 units error.For the number 8689 there are 226 units error.For the number 8690 there are 151 units error.For the number 8691 there are 257 units error.For the number 8692 there are 526 units error.For the number 8693 there are 31 units error.For the number 8694 there are 135 units error.For the number 8695 there are 93 units error.For the number 8696 there are 178 units error.For the number 8697 there are 95 units error.For the number 8698 there are 12 units error.For the number 8699 there are 373 units error.

For the number 8700 there are 144 units error.For the number 8701 there are 249 units error.For the number 8702 there are 224 units error.For the number 8703 there are 106 units error.For the number 8704 there are 279 units error.For the number 8705 there are 51 units error.For the number 8706 there are 342 units error.For the number 8707 there are 551 units error.For the number 8708 there are 273 units error.For the number 8709 there are 278 units error.For the number 8710 there are 289 units error.For the number 8711 there are 36 units error.For the number 8712 there are 177 units error.For the number 8713 there are 533 units error.For the number 8714 there are 154 units error.For the number 8715 there are 239 units error.For the number 8716 there are 442 units error.For the number 8717 there are 397 units error.For the number 8718 there are 323 units error.For the number 8719 there are 274 units error.For the number 8720 there are 513 units error.For the number 8721 there are 142 units error.For the number 8722 there are 476 units error.For the number 8723 there are 607 units error.For the number 8724 there are 103 units error.For the number 8725 there are 164 units error.For the number 8726 there are 19 units error.For the number 8727 there are 503 units error.For the number 8728 there are 65 units error.For the number 8729 there are 257 units error.For the number 8730 there are 648 units error.For the number 8731 there are 19 units error.For the number 8732 there are 308 units error.For the number 8733 there are 570 units error.For the number 8734 there are 61 units error.For the number 8735 there are 618 units error.For the number 8736 there are 391 units error.For the number 8737 there are 399 units error.For the number 8738 there are 51 units error.For the number 8739 there are 150 units error.For the number 8740 there are 286 units error.For the number 8741 there are 22 units error.For the number 8742 there are 153 units error.For the number 8743 there are 315 units error.For the number 8744 there are 38 units error.For the number 8745 there are 57 units error.For the number 8746 there are 335 units error.For the number 8747 there are 200 units error.For the number 8748 there are 141 units error.For the number 8749 there are 107 units error.For the number 8750 there are 256 units error.For the number 8751 there are 277 units error.

Page 101: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 8752 there are 526 units error.For the number 8753 there are 398 units error.For the number 8754 there are 409 units error.For the number 8755 there are 138 units error.For the number 8756 there are 495 units error.For the number 8757 there are 162 units error.For the number 8758 there are 379 units error.For the number 8759 there are 338 units error.For the number 8760 there are 148 units error.For the number 8761 there are 834 units error.For the number 8762 there are 156 units error.For the number 8763 there are 135 units error.For the number 8764 there are 170 units error.For the number 8765 there are 187 units error.For the number 8766 there are 581 units error.For the number 8767 there are 62 units error.For the number 8768 there are 1 units error.For the number 8769 there are 193 units error.For the number 8770 there are 87 units error.For the number 8771 there are 808 units error.For the number 8772 there are 255 units error.For the number 8773 there are 176 units error.For the number 8774 there are 925 units error.For the number 8775 there are 138 units error.For the number 8776 there are 146 units error.For the number 8777 there are 84 units error.For the number 8778 there are 19 units error.For the number 8779 there are 391 units error.For the number 8780 there are 89 units error.For the number 8781 there are 642 units error.For the number 8782 there are 251 units error.For the number 8783 there are 297 units error.For the number 8784 there are 993 units error.For the number 8785 there are 266 units error.For the number 8786 there are 20 units error.For the number 8787 there are 491 units error.For the number 8788 there are 1071 units error.For the number 8789 there are 642 units error.For the number 8790 there are 1 units error.For the number 8791 there are 671 units error.For the number 8792 there are 230 units error.For the number 8793 there are 158 units error.For the number 8794 there are 120 units error.For the number 8795 there are 350 units error.For the number 8796 there are 37 units error.For the number 8797 there are 337 units error.For the number 8798 there are 195 units error.For the number 8799 there are 616 units error.For the number 8800 there are 118 units error.For the number 8801 there are 315 units error.For the number 8802 there are 134 units error.For the number 8803 there are 414 units error.

For the number 8804 there are 261 units error.For the number 8805 there are 233 units error.For the number 8806 there are 423 units error.For the number 8807 there are 102 units error.For the number 8808 there are 503 units error.For the number 8809 there are 254 units error.For the number 8810 there are 756 units error.For the number 8811 there are 59 units error.For the number 8812 there are 40 units error.For the number 8813 there are 236 units error.For the number 8814 there are 283 units error.For the number 8815 there are 669 units error.For the number 8816 there are 248 units error.For the number 8817 there are 170 units error.For the number 8818 there are 109 units error.For the number 8819 there are 385 units error.For the number 8820 there are 253 units error.For the number 8821 there are 336 units error.For the number 8822 there are 6 units error.For the number 8823 there are 552 units error.For the number 8824 there are 157 units error.For the number 8825 there are 318 units error.For the number 8826 there are 363 units error.For the number 8827 there are 117 units error.For the number 8828 there are 127 units error.For the number 8829 there are 61 units error.For the number 8830 there are 405 units error.For the number 8831 there are 219 units error.For the number 8832 there are 172 units error.For the number 8833 there are 199 units error.For the number 8834 there are 229 units error.For the number 8835 there are 74 units error.For the number 8836 there are 596 units error.For the number 8837 there are 176 units error.For the number 8838 there are 16 units error.For the number 8839 there are 355 units error.For the number 8840 there are 622 units error.For the number 8841 there are 735 units error.For the number 8842 there are 666 units error.For the number 8843 there are 163 units error.For the number 8844 there are 25 units error.For the number 8845 there are 37 units error.For the number 8846 there are 63 units error.For the number 8847 there are 427 units error.For the number 8848 there are 199 units error.For the number 8849 there are 355 units error.For the number 8850 there are 165 units error.For the number 8851 there are 348 units error.For the number 8852 there are 302 units error.For the number 8853 there are 541 units error.For the number 8854 there are 293 units error.For the number 8855 there are 310 units error.

Page 102: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 8856 there are 139 units error.For the number 8857 there are 606 units error.For the number 8858 there are 150 units error.For the number 8859 there are 20 units error.For the number 8860 there are 538 units error.For the number 8861 there are 304 units error.For the number 8862 there are 304 units error.For the number 8863 there are 21 units error.For the number 8864 there are 354 units error.For the number 8865 there are 306 units error.For the number 8866 there are 516 units error.For the number 8867 there are 464 units error.For the number 8868 there are 81 units error.For the number 8869 there are 50 units error.For the number 8870 there are 622 units error.For the number 8871 there are 370 units error.For the number 8872 there are 245 units error.For the number 8873 there are 524 units error.For the number 8874 there are 373 units error.For the number 8875 there are 447 units error.For the number 8876 there are 143 units error.For the number 8877 there are 282 units error.For the number 8878 there are 92 units error.For the number 8879 there are 76 units error.For the number 8880 there are 572 units error.For the number 8881 there are 452 units error.For the number 8882 there are 676 units error.For the number 8883 there are 92 units error.For the number 8884 there are 144 units error.For the number 8885 there are 100 units error.For the number 8886 there are 444 units error.For the number 8887 there are 106 units error.For the number 8888 there are 402 units error.For the number 8889 there are 419 units error.For the number 8890 there are 326 units error.For the number 8891 there are 160 units error.For the number 8892 there are 291 units error.For the number 8893 there are 500 units error.For the number 8894 there are 738 units error.For the number 8895 there are 216 units error.For the number 8896 there are 452 units error.For the number 8897 there are 138 units error.For the number 8898 there are 152 units error.For the number 8899 there are 47 units error.For the number 8900 there are 125 units error.For the number 8901 there are 397 units error.For the number 8902 there are 92 units error.For the number 8903 there are 860 units error.For the number 8904 there are 417 units error.For the number 8905 there are 452 units error.For the number 8906 there are 12 units error.For the number 8907 there are 769 units error.

For the number 8908 there are 148 units error.For the number 8909 there are 122 units error.For the number 8910 there are 361 units error.For the number 8911 there are 65 units error.For the number 8912 there are 251 units error.For the number 8913 there are 270 units error.For the number 8914 there are 263 units error.For the number 8915 there are 535 units error.For the number 8916 there are 458 units error.For the number 8917 there are 877 units error.For the number 8918 there are 20 units error.For the number 8919 there are 731 units error.For the number 8920 there are 727 units error.For the number 8921 there are 407 units error.For the number 8922 there are 43 units error.For the number 8923 there are 86 units error.For the number 8924 there are 146 units error.For the number 8925 there are 423 units error.For the number 8926 there are 555 units error.For the number 8927 there are 143 units error.For the number 8928 there are 310 units error.For the number 8929 there are 2 units error.For the number 8930 there are 237 units error.For the number 8931 there are 140 units error.For the number 8932 there are 1401 units error.For the number 8933 there are 412 units error.For the number 8934 there are 141 units error.For the number 8935 there are 10 units error.For the number 8936 there are 828 units error.For the number 8937 there are 248 units error.For the number 8938 there are 869 units error.For the number 8939 there are 40 units error.For the number 8940 there are 78 units error.For the number 8941 there are 307 units error.For the number 8942 there are 820 units error.For the number 8943 there are 62 units error.For the number 8944 there are 72 units error.For the number 8945 there are 456 units error.For the number 8946 there are 224 units error.For the number 8947 there are 256 units error.For the number 8948 there are 239 units error.For the number 8949 there are 256 units error.For the number 8950 there are 411 units error.For the number 8951 there are 260 units error.For the number 8952 there are 142 units error.For the number 8953 there are 368 units error.For the number 8954 there are 145 units error.For the number 8955 there are 400 units error.For the number 8956 there are 521 units error.For the number 8957 there are 253 units error.For the number 8958 there are 272 units error.For the number 8959 there are 272 units error.

Page 103: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 8960 there are 501 units error.For the number 8961 there are 360 units error.For the number 8962 there are 192 units error.For the number 8963 there are 145 units error.For the number 8964 there are 159 units error.For the number 8965 there are 51 units error.For the number 8966 there are 269 units error.For the number 8967 there are 795 units error.For the number 8968 there are 416 units error.For the number 8969 there are 384 units error.For the number 8970 there are 178 units error.For the number 8971 there are 293 units error.For the number 8972 there are 664 units error.For the number 8973 there are 29 units error.For the number 8974 there are 16 units error.For the number 8975 there are 201 units error.For the number 8976 there are 858 units error.For the number 8977 there are 28 units error.For the number 8978 there are 207 units error.For the number 8979 there are 27 units error.For the number 8980 there are 152 units error.For the number 8981 there are 404 units error.For the number 8982 there are 321 units error.For the number 8983 there are 282 units error.For the number 8984 there are 847 units error.For the number 8985 there are 512 units error.For the number 8986 there are 156 units error.For the number 8987 there are 171 units error.For the number 8988 there are 534 units error.For the number 8989 there are 512 units error.For the number 8990 there are 695 units error.For the number 8991 there are 340 units error.For the number 8992 there are 309 units error.For the number 8993 there are 342 units error.For the number 8994 there are 564 units error.For the number 8995 there are 455 units error.For the number 8996 there are 72 units error.For the number 8997 there are 169 units error.For the number 8998 there are 385 units error.For the number 8999 there are 454 units error.For the number 9000 there are 849 units error.For the number 9001 there are 19 units error.For the number 9002 there are 275 units error.For the number 9003 there are 866 units error.For the number 9004 there are 176 units error.For the number 9005 there are 413 units error.For the number 9006 there are 247 units error.For the number 9007 there are 502 units error.For the number 9008 there are 210 units error.For the number 9009 there are 337 units error.For the number 9010 there are 927 units error.For the number 9011 there are 271 units error.

For the number 9012 there are 44 units error.For the number 9013 there are 179 units error.For the number 9014 there are 1517 units error.For the number 9015 there are 434 units error.For the number 9016 there are 25 units error.For the number 9017 there are 506 units error.For the number 9018 there are 732 units error.For the number 9019 there are 402 units error.For the number 9020 there are 352 units error.For the number 9021 there are 401 units error.For the number 9022 there are 394 units error.For the number 9023 there are 160 units error.For the number 9024 there are 178 units error.For the number 9025 there are 237 units error.For the number 9026 there are 84 units error.For the number 9027 there are 78 units error.For the number 9028 there are 273 units error.For the number 9029 there are 162 units error.For the number 9030 there are 292 units error.For the number 9031 there are 149 units error.For the number 9032 there are 377 units error.For the number 9033 there are 207 units error.For the number 9034 there are 323 units error.For the number 9035 there are 294 units error.For the number 9036 there are 311 units error.For the number 9037 there are 422 units error.For the number 9038 there are 12 units error.For the number 9039 there are 824 units error.For the number 9040 there are 31 units error.For the number 9041 there are 332 units error.For the number 9042 there are 667 units error.For the number 9043 there are 260 units error.For the number 9044 there are 20 units error.For the number 9045 there are 152 units error.For the number 9046 there are 402 units error.For the number 9047 there are 210 units error.For the number 9048 there are 749 units error.For the number 9049 there are 442 units error.For the number 9050 there are 65 units error.For the number 9051 there are 222 units error.For the number 9052 there are 1009 units error.For the number 9053 there are 96 units error.For the number 9054 there are 615 units error.For the number 9055 there are 255 units error.For the number 9056 there are 428 units error.For the number 9057 there are 292 units error.For the number 9058 there are 156 units error.For the number 9059 there are 287 units error.For the number 9060 there are 128 units error.For the number 9061 there are 332 units error.For the number 9062 there are 52 units error.For the number 9063 there are 388 units error.

Page 104: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 9064 there are 226 units error.For the number 9065 there are 408 units error.For the number 9066 there are 354 units error.For the number 9067 there are 199 units error.For the number 9068 there are 429 units error.For the number 9069 there are 355 units error.For the number 9070 there are 461 units error.For the number 9071 there are 738 units error.For the number 9072 there are 607 units error.For the number 9073 there are 99 units error.For the number 9074 there are 478 units error.For the number 9075 there are 181 units error.For the number 9076 there are 191 units error.For the number 9077 there are 13 units error.For the number 9078 there are 127 units error.For the number 9079 there are 152 units error.For the number 9080 there are 118 units error.For the number 9081 there are 243 units error.For the number 9082 there are 502 units error.For the number 9083 there are 412 units error.For the number 9084 there are 288 units error.For the number 9085 there are 231 units error.For the number 9086 there are 315 units error.For the number 9087 there are 20 units error.For the number 9088 there are 293 units error.For the number 9089 there are 266 units error.For the number 9090 there are 110 units error.For the number 9091 there are 169 units error.For the number 9092 there are 977 units error.For the number 9093 there are 189 units error.For the number 9094 there are 65 units error.For the number 9095 there are 29 units error.For the number 9096 there are 218 units error.For the number 9097 there are 297 units error.For the number 9098 there are 502 units error.For the number 9099 there are 168 units error.For the number 9100 there are 341 units error.For the number 9101 there are 12 units error.For the number 9102 there are 637 units error.For the number 9103 there are 58 units error.For the number 9104 there are 189 units error.For the number 9105 there are 318 units error.For the number 9106 there are 117 units error.For the number 9107 there are 41 units error.For the number 9108 there are 119 units error.For the number 9109 there are 126 units error.For the number 9110 there are 903 units error.For the number 9111 there are 629 units error.For the number 9112 there are 635 units error.For the number 9113 there are 810 units error.For the number 9114 there are 351 units error.For the number 9115 there are 259 units error.

For the number 9116 there are 96 units error.For the number 9117 there are 106 units error.For the number 9118 there are 107 units error.For the number 9119 there are 187 units error.For the number 9120 there are 139 units error.For the number 9121 there are 247 units error.For the number 9122 there are 153 units error.For the number 9123 there are 206 units error.For the number 9124 there are 748 units error.For the number 9125 there are 152 units error.For the number 9126 there are 330 units error.For the number 9127 there are 401 units error.For the number 9128 there are 15 units error.For the number 9129 there are 434 units error.For the number 9130 there are 39 units error.For the number 9131 there are 764 units error.For the number 9132 there are 420 units error.For the number 9133 there are 357 units error.For the number 9134 there are 788 units error.For the number 9135 there are 950 units error.For the number 9136 there are 107 units error.For the number 9137 there are 391 units error.For the number 9138 there are 506 units error.For the number 9139 there are 555 units error.For the number 9140 there are 1095 units error.For the number 9141 there are 585 units error.For the number 9142 there are 391 units error.For the number 9143 there are 430 units error.For the number 9144 there are 682 units error.For the number 9145 there are 351 units error.For the number 9146 there are 259 units error.For the number 9147 there are 114 units error.For the number 9148 there are 466 units error.For the number 9149 there are 427 units error.For the number 9150 there are 362 units error.For the number 9151 there are 19 units error.For the number 9152 there are 756 units error.For the number 9153 there are 331 units error.For the number 9154 there are 455 units error.For the number 9155 there are 279 units error.For the number 9156 there are 298 units error.For the number 9157 there are 326 units error.For the number 9158 there are 415 units error.For the number 9159 there are 97 units error.For the number 9160 there are 135 units error.For the number 9161 there are 565 units error.For the number 9162 there are 252 units error.For the number 9163 there are 317 units error.For the number 9164 there are 1033 units error.For the number 9165 there are 364 units error.For the number 9166 there are 25 units error.For the number 9167 there are 836 units error.

Page 105: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 9168 there are 279 units error.For the number 9169 there are 422 units error.For the number 9170 there are 210 units error.For the number 9171 there are 215 units error.For the number 9172 there are 256 units error.For the number 9173 there are 507 units error.For the number 9174 there are 5 units error.For the number 9175 there are 96 units error.For the number 9176 there are 103 units error.For the number 9177 there are 463 units error.For the number 9178 there are 705 units error.For the number 9179 there are 505 units error.For the number 9180 there are 98 units error.For the number 9181 there are 434 units error.For the number 9182 there are 378 units error.For the number 9183 there are 601 units error.For the number 9184 there are 280 units error.For the number 9185 there are 218 units error.For the number 9186 there are 157 units error.For the number 9187 there are 192 units error.For the number 9188 there are 445 units error.For the number 9189 there are 392 units error.For the number 9190 there are 161 units error.For the number 9191 there are 124 units error.For the number 9192 there are 431 units error.For the number 9193 there are 184 units error.For the number 9194 there are 37 units error.For the number 9195 there are 268 units error.For the number 9196 there are 184 units error.For the number 9197 there are 284 units error.For the number 9198 there are 330 units error.For the number 9199 there are 166 units error.For the number 9200 there are 564 units error.For the number 9201 there are 2 units error.For the number 9202 there are 393 units error.For the number 9203 there are 764 units error.For the number 9204 there are 114 units error.For the number 9205 there are 678 units error.For the number 9206 there are 95 units error.For the number 9207 there are 398 units error.For the number 9208 there are 229 units error.For the number 9209 there are 796 units error.For the number 9210 there are 85 units error.For the number 9211 there are 106 units error.For the number 9212 there are 76 units error.For the number 9213 there are 536 units error.For the number 9214 there are 189 units error.For the number 9215 there are 264 units error.For the number 9216 there are 691 units error.For the number 9217 there are 46 units error.For the number 9218 there are 78 units error.For the number 9219 there are 405 units error.

For the number 9220 there are 546 units error.For the number 9221 there are 37 units error.For the number 9222 there are 448 units error.For the number 9223 there are 340 units error.For the number 9224 there are 676 units error.For the number 9225 there are 324 units error.For the number 9226 there are 214 units error.For the number 9227 there are 550 units error.For the number 9228 there are 365 units error.For the number 9229 there are 124 units error.For the number 9230 there are 635 units error.For the number 9231 there are 622 units error.For the number 9232 there are 412 units error.For the number 9233 there are 79 units error.For the number 9234 there are 186 units error.For the number 9235 there are 543 units error.For the number 9236 there are 865 units error.For the number 9237 there are 180 units error.For the number 9238 there are 155 units error.For the number 9239 there are 692 units error.For the number 9240 there are 541 units error.For the number 9241 there are 277 units error.For the number 9242 there are 387 units error.For the number 9243 there are 82 units error.For the number 9244 there are 96 units error.For the number 9245 there are 1002 units error.For the number 9246 there are 511 units error.For the number 9247 there are 192 units error.For the number 9248 there are 144 units error.For the number 9249 there are 156 units error.For the number 9250 there are 162 units error.For the number 9251 there are 3 units error.For the number 9252 there are 360 units error.For the number 9253 there are 381 units error.For the number 9254 there are 343 units error.For the number 9255 there are 74 units error.For the number 9256 there are 618 units error.For the number 9257 there are 68 units error.For the number 9258 there are 194 units error.For the number 9259 there are 483 units error.For the number 9260 there are 208 units error.For the number 9261 there are 252 units error.For the number 9262 there are 289 units error.For the number 9263 there are 3 units error.For the number 9264 there are 818 units error.For the number 9265 there are 108 units error.For the number 9266 there are 119 units error.For the number 9267 there are 715 units error.For the number 9268 there are 85 units error.For the number 9269 there are 358 units error.For the number 9270 there are 527 units error.For the number 9271 there are 114 units error.

Page 106: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 9272 there are 298 units error.For the number 9273 there are 53 units error.For the number 9274 there are 51 units error.For the number 9275 there are 287 units error.For the number 9276 there are 144 units error.For the number 9277 there are 382 units error.For the number 9278 there are 328 units error.For the number 9279 there are 486 units error.For the number 9280 there are 655 units error.For the number 9281 there are 100 units error.For the number 9282 there are 8 units error.For the number 9283 there are 732 units error.For the number 9284 there are 161 units error.For the number 9285 there are 152 units error.For the number 9286 there are 335 units error.For the number 9287 there are 740 units error.For the number 9288 there are 856 units error.For the number 9289 there are 32 units error.For the number 9290 there are 372 units error.For the number 9291 there are 202 units error.For the number 9292 there are 816 units error.For the number 9293 there are 250 units error.For the number 9294 there are 90 units error.For the number 9295 there are 98 units error.For the number 9296 there are 196 units error.For the number 9297 there are 150 units error.For the number 9298 there are 352 units error.For the number 9299 there are 296 units error.For the number 9300 there are 775 units error.For the number 9301 there are 12 units error.For the number 9302 there are 174 units error.For the number 9303 there are 192 units error.For the number 9304 there are 128 units error.For the number 9305 there are 238 units error.For the number 9306 there are 138 units error.For the number 9307 there are 561 units error.For the number 9308 there are 711 units error.For the number 9309 there are 177 units error.For the number 9310 there are 261 units error.For the number 9311 there are 479 units error.For the number 9312 there are 202 units error.For the number 9313 there are 267 units error.For the number 9314 there are 230 units error.For the number 9315 there are 175 units error.For the number 9316 there are 392 units error.For the number 9317 there are 105 units error.For the number 9318 there are 90 units error.For the number 9319 there are 613 units error.For the number 9320 there are 262 units error.For the number 9321 there are 408 units error.For the number 9322 there are 173 units error.For the number 9323 there are 111 units error.

For the number 9324 there are 142 units error.For the number 9325 there are 591 units error.For the number 9326 there are 621 units error.For the number 9327 there are 510 units error.For the number 9328 there are 235 units error.For the number 9329 there are 16 units error.For the number 9330 there are 701 units error.For the number 9331 there are 573 units error.For the number 9332 there are 28 units error.For the number 9333 there are 519 units error.For the number 9334 there are 916 units error.For the number 9335 there are 54 units error.For the number 9336 there are 370 units error.For the number 9337 there are 392 units error.For the number 9338 there are 460 units error.For the number 9339 there are 916 units error.For the number 9340 there are 768 units error.For the number 9341 there are 423 units error.For the number 9342 there are 688 units error.For the number 9343 there are 595 units error.For the number 9344 there are 795 units error.For the number 9345 there are 39 units error.For the number 9346 there are 605 units error.For the number 9347 there are 171 units error.For the number 9348 there are 275 units error.For the number 9349 there are 415 units error.For the number 9350 there are 108 units error.For the number 9351 there are 292 units error.For the number 9352 there are 124 units error.For the number 9353 there are 325 units error.For the number 9354 there are 199 units error.For the number 9355 there are 48 units error.For the number 9356 there are 417 units error.For the number 9357 there are 41 units error.For the number 9358 there are 322 units error.For the number 9359 there are 363 units error.For the number 9360 there are 63 units error.For the number 9361 there are 38 units error.For the number 9362 there are 252 units error.For the number 9363 there are 204 units error.For the number 9364 there are 88 units error.For the number 9365 there are 653 units error.For the number 9366 there are 487 units error.For the number 9367 there are 632 units error.For the number 9368 there are 351 units error.For the number 9369 there are 301 units error.For the number 9370 there are 198 units error.For the number 9371 there are 224 units error.For the number 9372 there are 370 units error.For the number 9373 there are 172 units error.For the number 9374 there are 573 units error.For the number 9375 there are 342 units error.

Page 107: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 9376 there are 867 units error.For the number 9377 there are 714 units error.For the number 9378 there are 119 units error.For the number 9379 there are 524 units error.For the number 9380 there are 766 units error.For the number 9381 there are 59 units error.For the number 9382 there are 282 units error.For the number 9383 there are 277 units error.For the number 9384 there are 110 units error.For the number 9385 there are 28 units error.For the number 9386 there are 1060 units error.For the number 9387 there are 679 units error.For the number 9388 there are 1022 units error.For the number 9389 there are 27 units error.For the number 9390 there are 220 units error.For the number 9391 there are 532 units error.For the number 9392 there are 123 units error.For the number 9393 there are 351 units error.For the number 9394 there are 14 units error.For the number 9395 there are 605 units error.For the number 9396 there are 343 units error.For the number 9397 there are 44 units error.For the number 9398 there are 876 units error.For the number 9399 there are 405 units error.For the number 9400 there are 367 units error.For the number 9401 there are 500 units error.For the number 9402 there are 507 units error.For the number 9403 there are 230 units error.For the number 9404 there are 143 units error.For the number 9405 there are 163 units error.For the number 9406 there are 714 units error.For the number 9407 there are 29 units error.For the number 9408 there are 662 units error.For the number 9409 there are 438 units error.For the number 9410 there are 439 units error.For the number 9411 there are 121 units error.For the number 9412 there are 103 units error.For the number 9413 there are 175 units error.For the number 9414 there are 73 units error.For the number 9415 there are 564 units error.For the number 9416 there are 501 units error.For the number 9417 there are 228 units error.For the number 9418 there are 826 units error.For the number 9419 there are 35 units error.For the number 9420 there are 141 units error.For the number 9421 there are 659 units error.For the number 9422 there are 106 units error.For the number 9423 there are 178 units error.For the number 9424 there are 429 units error.For the number 9425 there are 534 units error.For the number 9426 there are 457 units error.For the number 9427 there are 230 units error.

For the number 9428 there are 14 units error.For the number 9429 there are 31 units error.For the number 9430 there are 523 units error.For the number 9431 there are 149 units error.For the number 9432 there are 250 units error.For the number 9433 there are 181 units error.For the number 9434 there are 55 units error.For the number 9435 there are 237 units error.For the number 9436 there are 174 units error.For the number 9437 there are 556 units error.For the number 9438 there are 46 units error.For the number 9439 there are 452 units error.For the number 9440 there are 75 units error.For the number 9441 there are 902 units error.For the number 9442 there are 280 units error.For the number 9443 there are 410 units error.For the number 9444 there are 317 units error.For the number 9445 there are 242 units error.For the number 9446 there are 28 units error.For the number 9447 there are 276 units error.For the number 9448 there are 117 units error.For the number 9449 there are 218 units error.For the number 9450 there are 173 units error.For the number 9451 there are 128 units error.For the number 9452 there are 67 units error.For the number 9453 there are 295 units error.For the number 9454 there are 118 units error.For the number 9455 there are 337 units error.For the number 9456 there are 403 units error.For the number 9457 there are 313 units error.For the number 9458 there are 309 units error.For the number 9459 there are 317 units error.For the number 9460 there are 315 units error.For the number 9461 there are 23 units error.For the number 9462 there are 1034 units error.For the number 9463 there are 252 units error.For the number 9464 there are 1217 units error.For the number 9465 there are 844 units error.For the number 9466 there are 270 units error.For the number 9467 there are 7 units error.For the number 9468 there are 24 units error.For the number 9469 there are 964 units error.For the number 9470 there are 420 units error.For the number 9471 there are 301 units error.For the number 9472 there are 45 units error.For the number 9473 there are 352 units error.For the number 9474 there are 292 units error.For the number 9475 there are 797 units error.For the number 9476 there are 110 units error.For the number 9477 there are 120 units error.For the number 9478 there are 541 units error.For the number 9479 there are 376 units error.

Page 108: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 9480 there are 414 units error.For the number 9481 there are 119 units error.For the number 9482 there are 84 units error.For the number 9483 there are 52 units error.For the number 9484 there are 366 units error.For the number 9485 there are 128 units error.For the number 9486 there are 509 units error.For the number 9487 there are 98 units error.For the number 9488 there are 51 units error.For the number 9489 there are 446 units error.For the number 9490 there are 525 units error.For the number 9491 there are 136 units error.For the number 9492 there are 179 units error.For the number 9493 there are 134 units error.For the number 9494 there are 299 units error.For the number 9495 there are 406 units error.For the number 9496 there are 248 units error.For the number 9497 there are 101 units error.For the number 9498 there are 273 units error.For the number 9499 there are 41 units error.For the number 9500 there are 118 units error.For the number 9501 there are 129 units error.For the number 9502 there are 103 units error.For the number 9503 there are 357 units error.For the number 9504 there are 462 units error.For the number 9505 there are 71 units error.For the number 9506 there are 162 units error.For the number 9507 there are 332 units error.For the number 9508 there are 136 units error.For the number 9509 there are 60 units error.For the number 9510 there are 537 units error.For the number 9511 there are 143 units error.For the number 9512 there are 630 units error.For the number 9513 there are 120 units error.For the number 9514 there are 850 units error.For the number 9515 there are 141 units error.For the number 9516 there are 191 units error.For the number 9517 there are 264 units error.For the number 9518 there are 716 units error.For the number 9519 there are 287 units error.For the number 9520 there are 635 units error.For the number 9521 there are 518 units error.For the number 9522 there are 818 units error.For the number 9523 there are 245 units error.For the number 9524 there are 8 units error.For the number 9525 there are 1103 units error.For the number 9526 there are 2 units error.For the number 9527 there are 623 units error.For the number 9528 there are 498 units error.For the number 9529 there are 757 units error.For the number 9530 there are 26 units error.For the number 9531 there are 128 units error.

For the number 9532 there are 371 units error.For the number 9533 there are 322 units error.For the number 9534 there are 444 units error.For the number 9535 there are 109 units error.For the number 9536 there are 829 units error.For the number 9537 there are 11 units error.For the number 9538 there are 830 units error.For the number 9539 there are 103 units error.For the number 9540 there are 22 units error.For the number 9541 there are 837 units error.For the number 9542 there are 381 units error.For the number 9543 there are 137 units error.For the number 9544 there are 289 units error.For the number 9545 there are 158 units error.For the number 9546 there are 263 units error.For the number 9547 there are 13 units error.For the number 9548 there are 418 units error.For the number 9549 there are 311 units error.For the number 9550 there are 340 units error.For the number 9551 there are 50 units error.For the number 9552 there are 17 units error.For the number 9553 there are 245 units error.For the number 9554 there are 475 units error.For the number 9555 there are 150 units error.For the number 9556 there are 232 units error.For the number 9557 there are 402 units error.For the number 9558 there are 54 units error.For the number 9559 there are 271 units error.For the number 9560 there are 731 units error.For the number 9561 there are 573 units error.For the number 9562 there are 346 units error.For the number 9563 there are 287 units error.For the number 9564 there are 23 units error.For the number 9565 there are 309 units error.For the number 9566 there are 105 units error.For the number 9567 there are 228 units error.For the number 9568 there are 385 units error.For the number 9569 there are 142 units error.For the number 9570 there are 738 units error.For the number 9571 there are 133 units error.For the number 9572 there are 881 units error.For the number 9573 there are 446 units error.For the number 9574 there are 302 units error.For the number 9575 there are 111 units error.For the number 9576 there are 290 units error.For the number 9577 there are 199 units error.For the number 9578 there are 182 units error.For the number 9579 there are 1015 units error.For the number 9580 there are 364 units error.For the number 9581 there are 288 units error.For the number 9582 there are 85 units error.For the number 9583 there are 73 units error.

Page 109: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 9584 there are 82 units error.For the number 9585 there are 220 units error.For the number 9586 there are 250 units error.For the number 9587 there are 235 units error.For the number 9588 there are 138 units error.For the number 9589 there are 389 units error.For the number 9590 there are 239 units error.For the number 9591 there are 223 units error.For the number 9592 there are 123 units error.For the number 9593 there are 786 units error.For the number 9594 there are 567 units error.For the number 9595 there are 250 units error.For the number 9596 there are 319 units error.For the number 9597 there are 334 units error.For the number 9598 there are 309 units error.For the number 9599 there are 557 units error.For the number 9600 there are 94 units error.For the number 9601 there are 77 units error.For the number 9602 there are 483 units error.For the number 9603 there are 7 units error.For the number 9604 there are 56 units error.For the number 9605 there are 167 units error.For the number 9606 there are 125 units error.For the number 9607 there are 1 units error.For the number 9608 there are 466 units error.For the number 9609 there are 275 units error.For the number 9610 there are 170 units error.For the number 9611 there are 437 units error.For the number 9612 there are 90 units error.For the number 9613 there are 159 units error.For the number 9614 there are 73 units error.For the number 9615 there are 178 units error.For the number 9616 there are 418 units error.For the number 9617 there are 444 units error.For the number 9618 there are 469 units error.For the number 9619 there are 155 units error.For the number 9620 there are 1135 units error.For the number 9621 there are 80 units error.For the number 9622 there are 307 units error.For the number 9623 there are 245 units error.For the number 9624 there are 354 units error.For the number 9625 there are 297 units error.For the number 9626 there are 558 units error.For the number 9627 there are 571 units error.For the number 9628 there are 290 units error.For the number 9629 there are 198 units error.For the number 9630 there are 183 units error.For the number 9631 there are 93 units error.For the number 9632 there are 382 units error.For the number 9633 there are 353 units error.For the number 9634 there are 313 units error.For the number 9635 there are 527 units error.

For the number 9636 there are 448 units error.For the number 9637 there are 144 units error.For the number 9638 there are 134 units error.For the number 9639 there are 7 units error.For the number 9640 there are 115 units error.For the number 9641 there are 26 units error.For the number 9642 there are 567 units error.For the number 9643 there are 218 units error.For the number 9644 there are 328 units error.For the number 9645 there are 12 units error.For the number 9646 there are 173 units error.For the number 9647 there are 306 units error.For the number 9648 there are 152 units error.For the number 9649 there are 93 units error.For the number 9650 there are 326 units error.For the number 9651 there are 83 units error.For the number 9652 there are 897 units error.For the number 9653 there are 248 units error.For the number 9654 there are 60 units error.For the number 9655 there are 100 units error.For the number 9656 there are 425 units error.For the number 9657 there are 95 units error.For the number 9658 there are 144 units error.For the number 9659 there are 637 units error.For the number 9660 there are 155 units error.For the number 9661 there are 267 units error.For the number 9662 there are 57 units error.For the number 9663 there are 21 units error.For the number 9664 there are 471 units error.For the number 9665 there are 346 units error.For the number 9666 there are 424 units error.For the number 9667 there are 355 units error.For the number 9668 there are 246 units error.For the number 9669 there are 283 units error.For the number 9670 there are 216 units error.For the number 9671 there are 10 units error.For the number 9672 there are 579 units error.For the number 9673 there are 363 units error.For the number 9674 there are 104 units error.For the number 9675 there are 57 units error.For the number 9676 there are 114 units error.For the number 9677 there are 219 units error.For the number 9678 there are 74 units error.For the number 9679 there are 235 units error.For the number 9680 there are 398 units error.For the number 9681 there are 146 units error.For the number 9682 there are 451 units error.For the number 9683 there are 134 units error.For the number 9684 there are 473 units error.For the number 9685 there are 508 units error.For the number 9686 there are 422 units error.For the number 9687 there are 251 units error.

Page 110: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 9688 there are 1015 units error.For the number 9689 there are 396 units error.For the number 9690 there are 86 units error.For the number 9691 there are 606 units error.For the number 9692 there are 708 units error.For the number 9693 there are 481 units error.For the number 9694 there are 64 units error.For the number 9695 there are 397 units error.For the number 9696 there are 100 units error.For the number 9697 there are 128 units error.For the number 9698 there are 440 units error.For the number 9699 there are 108 units error.For the number 9700 there are 552 units error.For the number 9701 there are 147 units error.For the number 9702 there are 54 units error.For the number 9703 there are 848 units error.For the number 9704 there are 412 units error.For the number 9705 there are 56 units error.For the number 9706 there are 183 units error.For the number 9707 there are 256 units error.For the number 9708 there are 99 units error.For the number 9709 there are 285 units error.For the number 9710 there are 138 units error.For the number 9711 there are 589 units error.For the number 9712 there are 446 units error.For the number 9713 there are 117 units error.For the number 9714 there are 297 units error.For the number 9715 there are 446 units error.For the number 9716 there are 373 units error.For the number 9717 there are 600 units error.For the number 9718 there are 349 units error.For the number 9719 there are 13 units error.For the number 9720 there are 635 units error.For the number 9721 there are 372 units error.For the number 9722 there are 4 units error.For the number 9723 there are 773 units error.For the number 9724 there are 462 units error.For the number 9725 there are 50 units error.For the number 9726 there are 335 units error.For the number 9727 there are 286 units error.For the number 9728 there are 314 units error.For the number 9729 there are 362 units error.For the number 9730 there are 8 units error.For the number 9731 there are 422 units error.For the number 9732 there are 129 units error.For the number 9733 there are 170 units error.For the number 9734 there are 188 units error.For the number 9735 there are 429 units error.For the number 9736 there are 252 units error.For the number 9737 there are 336 units error.For the number 9738 there are 57 units error.For the number 9739 there are 72 units error.

For the number 9740 there are 775 units error.For the number 9741 there are 346 units error.For the number 9742 there are 83 units error.For the number 9743 there are 77 units error.For the number 9744 there are 792 units error.For the number 9745 there are 352 units error.For the number 9746 there are 530 units error.For the number 9747 there are 147 units error.For the number 9748 there are 339 units error.For the number 9749 there are 370 units error.For the number 9750 there are 401 units error.For the number 9751 there are 489 units error.For the number 9752 there are 830 units error.For the number 9753 there are 50 units error.For the number 9754 there are 203 units error.For the number 9755 there are 630 units error.For the number 9756 there are 179 units error.For the number 9757 there are 850 units error.For the number 9758 there are 48 units error.For the number 9759 there are 20 units error.For the number 9760 there are 150 units error.For the number 9761 there are 134 units error.For the number 9762 there are 249 units error.For the number 9763 there are 124 units error.For the number 9764 there are 825 units error.For the number 9765 there are 114 units error.For the number 9766 there are 681 units error.For the number 9767 there are 87 units error.For the number 9768 there are 317 units error.For the number 9769 there are 507 units error.For the number 9770 there are 115 units error.For the number 9771 there are 372 units error.For the number 9772 there are 583 units error.For the number 9773 there are 14 units error.For the number 9774 there are 35 units error.For the number 9775 there are 169 units error.For the number 9776 there are 408 units error.For the number 9777 there are 886 units error.For the number 9778 there are 91 units error.For the number 9779 there are 115 units error.For the number 9780 there are 530 units error.For the number 9781 there are 434 units error.For the number 9782 there are 482 units error.For the number 9783 there are 192 units error.For the number 9784 there are 609 units error.For the number 9785 there are 249 units error.For the number 9786 there are 17 units error.For the number 9787 there are 194 units error.For the number 9788 there are 31 units error.For the number 9789 there are 345 units error.For the number 9790 there are 240 units error.For the number 9791 there are 324 units error.

Page 111: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 9792 there are 629 units error.For the number 9793 there are 450 units error.For the number 9794 there are 24 units error.For the number 9795 there are 312 units error.For the number 9796 there are 628 units error.For the number 9797 there are 70 units error.For the number 9798 there are 45 units error.For the number 9799 there are 521 units error.For the number 9800 there are 561 units error.For the number 9801 there are 101 units error.For the number 9802 there are 518 units error.For the number 9803 there are 458 units error.For the number 9804 there are 400 units error.For the number 9805 there are 249 units error.For the number 9806 there are 82 units error.For the number 9807 there are 273 units error.For the number 9808 there are 530 units error.For the number 9809 there are 178 units error.For the number 9810 there are 148 units error.For the number 9811 there are 222 units error.For the number 9812 there are 259 units error.For the number 9813 there are 236 units error.For the number 9814 there are 21 units error.For the number 9815 there are 391 units error.For the number 9816 there are 442 units error.For the number 9817 there are 215 units error.For the number 9818 there are 98 units error.For the number 9819 there are 526 units error.For the number 9820 there are 44 units error.For the number 9821 there are 320 units error.For the number 9822 there are 311 units error.For the number 9823 there are 28 units error.For the number 9824 there are 28 units error.For the number 9825 there are 319 units error.For the number 9826 there are 168 units error.For the number 9827 there are 710 units error.For the number 9828 there are 1255 units error.For the number 9829 there are 160 units error.For the number 9830 there are 295 units error.For the number 9831 there are 648 units error.For the number 9832 there are 534 units error.For the number 9833 there are 335 units error.For the number 9834 there are 487 units error.For the number 9835 there are 127 units error.For the number 9836 there are 706 units error.For the number 9837 there are 145 units error.For the number 9838 there are 306 units error.For the number 9839 there are 997 units error.For the number 9840 there are 443 units error.For the number 9841 there are 229 units error.For the number 9842 there are 628 units error.For the number 9843 there are 332 units error.

For the number 9844 there are 368 units error.For the number 9845 there are 441 units error.For the number 9846 there are 747 units error.For the number 9847 there are 86 units error.For the number 9848 there are 1022 units error.For the number 9849 there are 551 units error.For the number 9850 there are 246 units error.For the number 9851 there are 146 units error.For the number 9852 there are 141 units error.For the number 9853 there are 744 units error.For the number 9854 there are 366 units error.For the number 9855 there are 124 units error.For the number 9856 there are 532 units error.For the number 9857 there are 532 units error.For the number 9858 there are 217 units error.For the number 9859 there are 395 units error.For the number 9860 there are 163 units error.For the number 9861 there are 50 units error.For the number 9862 there are 276 units error.For the number 9863 there are 451 units error.For the number 9864 there are 387 units error.For the number 9865 there are 41 units error.For the number 9866 there are 189 units error.For the number 9867 there are 106 units error.For the number 9868 there are 377 units error.For the number 9869 there are 219 units error.For the number 9870 there are 269 units error.For the number 9871 there are 573 units error.For the number 9872 there are 117 units error.For the number 9873 there are 329 units error.For the number 9874 there are 314 units error.For the number 9875 there are 171 units error.For the number 9876 there are 297 units error.For the number 9877 there are 82 units error.For the number 9878 there are 79 units error.For the number 9879 there are 390 units error.For the number 9880 there are 140 units error.For the number 9881 there are 352 units error.For the number 9882 there are 603 units error.For the number 9883 there are 114 units error.For the number 9884 there are 396 units error.For the number 9885 there are 118 units error.For the number 9886 there are 465 units error.For the number 9887 there are 539 units error.For the number 9888 there are 552 units error.For the number 9889 there are 8 units error.For the number 9890 there are 469 units error.For the number 9891 there are 215 units error.For the number 9892 there are 374 units error.For the number 9893 there are 92 units error.For the number 9894 there are 59 units error.For the number 9895 there are 7 units error.

Page 112: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 9896 there are 938 units error.For the number 9897 there are 147 units error.For the number 9898 there are 398 units error.For the number 9899 there are 500 units error.For the number 9900 there are 279 units error.For the number 9901 there are 324 units error.For the number 9902 there are 354 units error.For the number 9903 there are 908 units error.For the number 9904 there are 363 units error.For the number 9905 there are 256 units error.For the number 9906 there are 96 units error.For the number 9907 there are 140 units error.For the number 9908 there are 785 units error.For the number 9909 there are 20 units error.For the number 9910 there are 222 units error.For the number 9911 there are 201 units error.For the number 9912 there are 209 units error.For the number 9913 there are 290 units error.For the number 9914 there are 710 units error.For the number 9915 there are 616 units error.For the number 9916 there are 52 units error.For the number 9917 there are 140 units error.For the number 9918 there are 242 units error.For the number 9919 there are 113 units error.For the number 9920 there are 726 units error.For the number 9921 there are 563 units error.For the number 9922 there are 348 units error.For the number 9923 there are 341 units error.For the number 9924 there are 384 units error.For the number 9925 there are 180 units error.For the number 9926 there are 201 units error.For the number 9927 there are 179 units error.For the number 9928 there are 207 units error.For the number 9929 there are 325 units error.For the number 9930 there are 103 units error.For the number 9931 there are 42 units error.For the number 9932 there are 414 units error.For the number 9933 there are 257 units error.For the number 9934 there are 101 units error.For the number 9935 there are 495 units error.For the number 9936 there are 248 units error.For the number 9937 there are 586 units error.For the number 9938 there are 277 units error.For the number 9939 there are 625 units error.For the number 9940 there are 555 units error.For the number 9941 there are 176 units error.For the number 9942 there are 656 units error.For the number 9943 there are 137 units error.For the number 9944 there are 50 units error.For the number 9945 there are 592 units error.For the number 9946 there are 215 units error.For the number 9947 there are 148 units error.

For the number 9948 there are 693 units error.For the number 9949 there are 301 units error.For the number 9950 there are 542 units error.For the number 9951 there are 468 units error.For the number 9952 there are 102 units error.For the number 9953 there are 331 units error.For the number 9954 there are 486 units error.For the number 9955 there are 501 units error.For the number 9956 there are 300 units error.For the number 9957 there are 38 units error.For the number 9958 there are 368 units error.For the number 9959 there are 560 units error.For the number 9960 there are 55 units error.For the number 9961 there are 192 units error.For the number 9962 there are 55 units error.For the number 9963 there are 251 units error.For the number 9964 there are 751 units error.For the number 9965 there are 358 units error.For the number 9966 there are 451 units error.For the number 9967 there are 616 units error.For the number 9968 there are 542 units error.For the number 9969 there are 587 units error.For the number 9970 there are 368 units error.For the number 9971 there are 231 units error.For the number 9972 there are 167 units error.For the number 9973 there are 229 units error.For the number 9974 there are 240 units error.For the number 9975 there are 96 units error.For the number 9976 there are 16 units error.For the number 9977 there are 73 units error.For the number 9978 there are 39 units error.For the number 9979 there are 93 units error.For the number 9980 there are 368 units error.For the number 9981 there are 244 units error.For the number 9982 there are 155 units error.For the number 9983 there are 40 units error.For the number 9984 there are 200 units error.For the number 9985 there are 304 units error.For the number 9986 there are 23 units error.For the number 9987 there are 142 units error.For the number 9988 there are 385 units error.For the number 9989 there are 164 units error.For the number 9990 there are 115 units error.For the number 9991 there are 431 units error.For the number 9992 there are 448 units error.For the number 9993 there are 333 units error.For the number 9994 there are 164 units error.For the number 9995 there are 313 units error.For the number 9996 there are 363 units error.For the number 9997 there are 153 units error.For the number 9998 there are 4 units error.For the number 9999 there are 23 units error.

Page 113: The changing error in calculating pi from 5 to 10000 digits. PI calculation error.pdf · For the number 8024 there are 174 units error. For the number 8025 there are 308 units error

For the number 10000 there are 482 units error.