You are on page 1of 1

Errata

As applies to the first printing, as of June 3, 2009 Pages 61 - 69: Page 109: Page 164: Page 201: Page 219, line 6: Page 220, bottom: Page 232, mid code: Page 232, mid code: Pages 241 - 242: In Figure 17.17, there will be an undefined result if a string of wins or losses is equal to or greater than N. Modify the code as follows: Replace x = 2 * Win[i] * Lose[i]; Num = N * (Runs[i] - 0.5) - x; Denom = sqrt( (X * (X - N)) / (N - 1) ); Z[i] = Num / Denom; With If (Win[i]>= N) Z[i]= -5.0; Else
If (Lose[i]>= N) Z[i]= 5.0; Else { x = 2 * Win[i] * Lose[i]; Num = N * (Runs[i] - 0.5) - x; Denom = sqrt( (X * (X - N)) / (N - 1) ); Z[i] = Num / Denom; }

Change all occurrences of Figure 6. to Figure 5. The caption to Figure 7.19 should read: Testing for a Future Leak The caption to Figure 11.18 should read: Moon Phase Summary Change Figure 17.1 to Figure 15.1 Change The external data is ^FVN. to ... is ^FVX. Change // for ^FVN that ... to // for ^FVX that ... Delete the single / Change / Scan mode ... to // Scan mode ...

Page 243, line 4: Page 291, midpage:

Change as to an Change If it could, $1000 to If it could, $10,000

You might also like