You are on page 1of 85

354444447.

xls Simulation Inputs

Ch 14 Simulation 1/29/2001

Chapter 14. Tool Kit for Monte Carlo Simulation

If an error box like the one displayed at the right appeared when you opened this file, then you have not
correctly installed the Excel Add-In, Simtools.xla. You should close Excel without saving and read the
instructions in the file "Explanation of Simulation.doc," which explains how to install Simtools.xla. Only
open this Excel file, Ch 14 Simulation, after you have correctly installed Simtools.xla.

This worksheet contains the model used to analyze RIC's new project decision as described in the text.
It is the same model as in "Ch 14 Tool Kit.xls," but with a Monte Carlo simulation added. There are
many available simulation software packages, such as @Risk, but they are not free. For the analysis in
this spreadsheet, we have used a free package that works very well for simple simulations. If your model
is very complicated, then you would be better off using one of the commercial packages. But for simple
models, the approach we show in this spreadsheet will work fine.

We assume that you have correctly installed an Excel Add-In, Simtools.xla, developed by Professor
Roger Myerson at Northwestern University. If not, then close Excel and read the instructions in the file
"Explanation of Simulation.doc." For more information on Simtools, go to the web site
http://www.kellogg.nwu.edu/faculty/myerson/ftp/addins.htm.

Simulation Analysis

Step 1: Load Simtools.xla


Make sure Simtools is available, using the procedure described in the file "Explanation of Simulation.doc."

Step 2: Decide on distributions for risky variables

We assumed that sales price can be represented by a continuous normal distribution with an
expected value of $3.00 and a standard deviation of $0.35. Recall from statistics that there is
about a 68 percent chance that the actual price will be within one standard deviation of the
expected price, which is a range of $2.65 to $3.35. Put another way, there is a 32 percent
chance that the price will fall outside this range. The standard deviation also provides insight
into the maximum likely dispersion of sales prices. There is less than a one percent chance
that the actual price will be more than three standard deviations of the expected price, which
is a range of $1.95 to $4.05. In other words, the sales price is very unlikely to be less than
$1.95 or more than $4.05.

Sales Price: Normal distribution


Mean= 3.00
Standard deviation= 0.35

Page 1
Michael C. Ehrhardt 05/10/2017
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
354444447.xls Simulation Inputs

RIC has existing labor contracts and strong relationships with some of its suppliers, which
makes the variable cost less uncertain. We assumed that the variable cost can be described by
a triangular distribution, with a lower bound of $1.40, a most likely value of $2.10, and an
upper bound of $2.50. Notice that this is not a symmetric distribution. The lower bound is
$0.70 less than the most likely value, and the upper bound is only $0.40 higher than the most
likely value. This is because RIC has an active risk management program in place to hedge
against increases in the prices of commodities it uses in its production processes.

Variable costs: Triangular distribution


Lower bound= 1.40
Most likely= 2.10
Upper bound= 2.50

Based on preliminary purchase agreements with major customers, RIC is certain that sales in
the first year will be at least 15,000 units. RICs marketing department believes the most
likely demand will be for 20,000 units. However, it is possible that demand may be much
higher. The new production facility can produce a maximum of only 30,000 units in the first
year, although it will be able to produce more in subsequent years if there is higher than
expected demand. Therefore, we represented Year 1 unit sales with a triangular distribution,
having a lower bound of 15,000 units, a most likely value of 20,000 units, and an upper bound
of 30,000 units.

Unit sales: Triangular distribution


Lower bound= 15,000
Most likely= 20,000
Upper bound= 30,000

The marketing department anticipates no growth in unit sales after the first year. However,
actual sales growth could be either positive or negative, and it is likely to be positively
correlated with the number of units sold in the first year. In other words, if demand is higher
than expected in the first year, then growth will probably be higher than expected in
subsequent years. We represented growth with a normal distribution having an expected
value of zero percent and a standard deviation of 15 percent. We also specified that the
correlation between Year 1 unit sales and growth should be 65 percent.

Growth Rate: Normal distribution


Mean= 0%
Standard deviation= 15%
Correlation with unit sales= 65%

Notice that the growth rate in sales is positively correlated with the level of unit
sales. If demand is higher than expected, then unit sales will be higher than
expected and growth in sales will be higher than expected.

Page 2
Michael C. Ehrhardt 05/10/2017
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
354444447.xls Simulation Inputs

Step 3: Replace model input values with risky variables

You can use the Function Wizard to create random variables for the inputs. Here is how
the random variable functions work. The first argument in the function is itself a random
variable with a uniform distribution between 0 and 1. This is given by the Excel function
=RAND(); notice that RAND needs no argument. Calling =RAND() will generate a random
variable uniformly distibuted between 0 and 1.
The other arguments for the random variable functions define the probability
distribution. For example, the normal probability distribution is defined by its mean and
standard deviation. For example, to create a normally distributed random variable with
mean of 100 and a standard deviation of 10 (which corresponds to the distribution from IQ
tests), you would enter =NORMINV(RAND(),100,10). The function takes the value of
RAND() and converts this uniformly distributed variable into a normally distributed variable
with a mean of 100 and a standard deviation of 10. The output would be a normally
distributed random variable with a mean of 100 and a standard deviation of 10.

As stated above, the first argment in the random variable functions will be a random
variable with a uniform distribution. The other arguments will be the parameters that define
the distribution, and they are obtained from Step 2.

Because we want Growth to be correlated with Unit Sales, we must add another random
variable. We call this a Demand Indicator. It is uniformly distributed, and it will be the first
argument of the random variable function for Unit Sales. The other arguments for the
triangular distribution of Unit Sales are the lower bound, the most likely value, and the upper
bound. So the function would be =TRIANINV(Demand Indicator,lower bound,most likely,
upper bound), where Demand Indicator is itself a uniform random variable created by
RAND(). TRIANINV takes the uniformly distributed variable Demand Indicator and coverts
it into a variable that has a triangular distribution with the specified lower bound, most
likely, and upper bound.

To create the correlated Growth, we must create another uniformly distributed random
variable that has the desired correlation with Unit Sales (which itself is driven by the Demand
Indicator variable). The CORAND function does this. CORAND's first argument is the
correlation and its second argument a uniformly distributed random variable. For example,
=CORAND(0.9,Demand Indicator) would create a uniformly distributed random variable
that has a 0.9 correlation with Demand Indicator. To get a normally distributed random
variable for Growth that is correlated with Unit Sales, we use the function
=NORMINV(CORAND(Correlation,Demand Indicator),Mean,Standard Deviation). (Note:
CORAND can also create more than two random variables that have a desired correlation
matrix, but this is beyond the scope of this model. See the Simtools web site listed above for
more details on this feature.)

Input Function Resulting Random Variable


Sales Price NORMINV $2.42
Variable Cost TRIANINV Err:511
Demand Indicator RAND 0.26
Unit Sales TRIANINV Err:511

Page 3
Michael C. Ehrhardt 05/10/2017
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
354444447.xls Simulation Inputs

Correlate
d with
Demand
Indicator CORAND Err:511
Growth Rate NORMINV Err:511

Notice that the resulting random variables change each time the spreadsheet peforms a
calculation. To see this, hit the F9 key.

We have replaced the input values for Sales Price, Variable Costs, Unit Sales, and Growth in
Part 1 of Table 14-3, shown below, with links to the random variables shown above.
Therefore, every time the spreadsheet peforms a calcualtion, it also is finding a new NPV,
based on the new set of inputs. To see this, try hitting F9.

Original New, based on current simulation


Sales Price = $3.00 $2.42
Variable Cost = $2.10 Err:511
Unit Sales = 20,000 Err:511
Growth = 0.0% Err:511

NPV = $5,809 Err:511

Step 4: Run the Simulation and Analyze the Results


The full model for the capital budgeting project is shown below. We include it because it is
required for all the calculations, but you won't need to modify it (or even look at it) to do the
simulation. The simulation will automatically pull seleced inputs and outputs from this
model. To run the simulation, click on the Tab named Run Simulation and follow the
directions on that sheet.

Model for Evaluating A New Capital Budgeting Project:

Table 14-3. Analysis of a New (Expansion) Project

Part 1. Input Data (in thousands of dollars)


Key Output: NPV Err:511
Building cost (= Depreciable basis) $12,000
Equipment cost (= Depreciable basi $8,000 Market value of building in 2006 $7,500
Net Operating WC / Sales 10% Market value of equip. in 2006 $2,000
First year sales (in units) Err:511 Tax rate 40%
Growth rate in units sold Err:511 WACC 12%
Sales price per unit $2.42 Inflation: growth in sales price 2.0%
Variable cost per unit Err:511 Inflation: growth in VC per unit 2.0%
Fixed costs $8,000 Inflation: growth in fixed costs 1.0%

Part 2. Depreciation Schedule a Years Cumulative


1 2 3 4 Depr'n
Building Depr'n Rate 1.3% 2.6% 2.6% 2.6%
Building Depr'n $156 $312 $312 $312 $1,092

Page 4
Michael C. Ehrhardt 05/10/2017
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
354444447.xls Simulation Inputs

Ending Book Val: Cost - Cum. Depr'n 11,844 11,532 11,220 $10,908

Equipment Depr'n Rate 20.0% 32.0% 19.0% 12.0%


Equipment Depr'n $1,600 $2,560 $1,520 $960 $6,640
Ending Book Val: Cost - Cum. Depr'n 6,400 3,840 2,320 $1,360
to determine the depreciation expense for the year. The correct depreciation percentages for the building depend
upon
a
the month that the building is put in service. Because this analysis assumes that all cash flows occur at the end
ofThe
the indicated percentages
year, and to are multiplied
prevent unnecessary by the depreciable
complexity, basis ($12,000
we have rounded for the building
the depreciation and $8,000
percentages for thefor the equipment)
building.
See the Tab named Depreciation for more details.

Part 3 of Table 14-3. Net Salvage Values in 2006


Building Equipment Total
Estimated Market Value in 2006 $7,500 $2,000
Book Value in 2006b 10,908 1,360
Expected Gain or Loss c
-3,408 640
Taxes paid or tax credit -1,363 256
Net cash flow from salvaged $8,863 $1,744 $10,607

b
Book value equals depreciable basis (initial cost in this case) minus accumulated MACRS depreciation. For the
building, accumulated depreciation equals $1,092, so book value equals $12,000 - $1,092 = $10,908. For the equipment,
accumulated depreciation equals $6,640, so book value equals $8,000 - $6,640 = $1,360.

c
Building: $7,500 market value - $10,908 book value = -$3,408, a loss. This represents a shortfall in depreciation
taken versus "true" depreciation, and it is treated as an operating expense for 2005. Equipment: $2,000 market value -
"depreciation recapture". It is taxed as ordinary income in 2006. The actual book value at the time of disposition
$1,360 book
depends value
on the = $640
month profit. HereWe
of disposition. thehave
depreciation charge
simplified exceedsand
the analysis theassumed
"true" depreciation, and
that there will bethe difference
a full year of is called
depreciation in 2006.

d
Net cash flow from salvage equals salvage (market) value minus taxes. For the building, the loss results in a tax credit, so
net salvage value = $7,500 - (-$1,363) = $8,863.

Part 4 of Table 14-3. Projected Net Cas Years


Flows (Time line of annual cash flows) 0 1 2 3 4
2002 2003 2004 2005 2006
Investment Outlays: Long-Term Assets
Building ($12,000)
Equipment (8,000)

Operating Cash Flows over the Project's Life


Units sold Err:511 Err:511 Err:511 Err:511
Sales price $2.42 $2.46 $2.51 $2.56
Sales revenue Err:511 Err:511 Err:511 Err:511
Variable costs Err:511 Err:511 Err:511 Err:511
Fixed operating costs 8,000 8,080 8,161 8,242
Depreciation (building) 156 312 312 312
Depreciation (equipment) 1,600 2,560 1,520 960
Oper. income before taxes (EBIT) Err:511 Err:511 Err:511 Err:511
Taxes on operating income (40%) Err:511 Err:511 Err:511 Err:511
Net Operating Profit After Taxes (NOPAT) Err:511 Err:511 Err:511 Err:511
Add back depreciation 1,756 2,872 1,832 1,272

Page 5
Michael C. Ehrhardt 05/10/2017
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
354444447.xls Simulation Inputs

Operating cash flow Err:511 Err:511 Err:511 Err:511

Cash Flows Due to Net Operating Working Capital


Net Operating Working Capital (based on sales Err:511 Err:511 Err:511 Err:511 $0
Cash flow due to investment in NOWC Err:511 Err:511 Err:511 Err:511 Err:511

Salvage Cash Flows: Long-Term Assets


Net salvage cash flow: Building $8,863
Net salvage cash flow: Equipment 1,744
Total salvage cash flows $10,607

Net Cash Flow (Time line of cash flows) Err:511 Err:511 Err:511 Err:511 Err:511

Part 5 of Table 14-3. Key Output and Appraisal of the Proposed Project

Net Present Value (at 12%) Err:511


IRR Err:511
MIRR #NUM!

Simulation Analysis
Step 1: Load Simtools.xla
Step 2: Decide on distributions for risky variables
Unit Sales: Normal distribution
Mean= 20,000
Standard deviation= 3,000

Sales Price: Normal distribution


Mean= 3.00
Standard deviation= 0.35
Correlation with unit sales= 0.40

Growth Rate: Normal distribution


Mean= 0%
Standard deviation= 15%
Correlation with unit sales= 0.40

Page 6
Michael C. Ehrhardt 05/10/2017
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
354444447.xls Simulation Inputs

If you get an error box like this, then you have not correcly installed Simtools.xla.

nation of Simulation.doc."

Page 7
Michael C. Ehrhardt 05/10/2017
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
354444447.xls Simulation Inputs

Page 8
Michael C. Ehrhardt 05/10/2017
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
354444447.xls Simulation Inputs

Page 9
Michael C. Ehrhardt 05/10/2017
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
354444447.xls Simulation Inputs

Cumulative

Page 10
Michael C. Ehrhardt 05/10/2017
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
354444447.xls Simulation Inputs

0 for the equipment)

the equipment,

0 market value -
difference is called

s in a tax credit, so

Page 11
Michael C. Ehrhardt 05/10/2017
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
354444447.xls Simulation Inputs

Page 12
Michael C. Ehrhardt 05/10/2017
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
354444447.xls Simulation Inputs

Page 13
Michael C. Ehrhardt 05/10/2017
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
354444447.xls Simulation Inputs

Page 14
Michael C. Ehrhardt 05/10/2017
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
354444447.xls Simulation Inputs

Page 15
Michael C. Ehrhardt 05/10/2017
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
354444447.xls Simulation Inputs

Page 16
Michael C. Ehrhardt 05/10/2017
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
354444447.xls Simulation Inputs

Page 17
Michael C. Ehrhardt 05/10/2017
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
354444447.xls Simulation Inputs

Page 18
Michael C. Ehrhardt 05/10/2017
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Running a Simulation

To run or re-run the simulation, you must first select the range for the simulation. To do this, click Edit
in the menu bar, then select Go To. In the resulting dialog box, select Sim1000 and click OK. This should
highlight and take you to the selected range where you will also find directions for the next step. This is
similar to a data table, with 1000 rows. The difference is that the table will have four input variables
(Sales Price, Variable Cost, Unit Sales, and Growth) and one output, NPV. The table will repeat the
calculation 1000 times, with new inputs each time, based on the random variables for the inputs.

Output of Simulation
Trial Variable
Number Index Sales Price Cost Unit Sales Growth NPV
SimTable 2.415403 Err:511 Err:511 Err:511 Err:511
1 0 2.930626 2.10772 20970.82 -0.084157 1053.777 While the table is still highlighted,
2 0.001001 3.388372 1.762423 21581.34 0.016062 38734.06 click Tools on the menu bar, then
3 0.002002 2.1964 1.910295 21451.84 0.03158 -15487.79 select the submenu SimTools. Then
4 0.003003 2.54181 2.108719 26658.35 0.037615 -5550.556 click on Simulation Table. See
5 0.004004 2.696082 2.102677 22143.79 0.106636 251.5039 picture to the right for details.
6 0.005005 2.870537 2.189647 19961.27 0.114949 1641.504
If you do this correctly, a new
7 0.006006 3.261762 2.234068 23423.86 0.222858 31539.32 simulation analysis will run. This
8 0.007007 2.708907 1.848597 26631.28 0.369295 40381.57 may take 10 or 15 seconds,
9 0.008008 2.744309 2.218471 18053.62 -0.183902 -13323.41 depending on your computer. All the
10 0.009009 2.718321 2.262482 15676.9 -0.433502 -19178 numbers in the Simulation Table will
11 0.01001 2.837629 1.815028 18462.72 0.090332 12161.75 change, reflecting the output of the
12 0.011011 2.933361 1.815343 21301.66 0.168826 27586.11 1000 new simulations.
13 0.012012 2.859318 1.811222 16971.82 -0.125474 801.6075
Click on the Tab Simulation
14 0.013013 3.549916 1.85427 19383.14 -0.029722 30940.1 Summary to see a summary of the
15 0.014014 3.04449 2.303989 22807.93 0.080573 6781.582 Simulation results.
16 0.015015 3.218808 1.961344 19384.7 0.083529 22935.83
17 0.016016 2.401065 2.020361 24054.82 0.170416 -6729.92
18 0.017017 3.161502 2.082369 17316.14 0.061524 10207.44
19 0.018018 2.40252 1.993057 18846.9 -0.263179 -16806.35
20 0.019019 3.322484 1.944297 25553.68 0.124607 48827.51
21 0.02002 3.153108 2.288474 21490.94 -0.020106 5722.444
22 0.021021 2.932266 2.034025 20384.29 0.034071 7942.24
23 0.022022 2.762838 1.770682 23953.19 0.03387 18386.07
24 0.023023 3.649863 2.165339 20271.03 -0.160351 17217.12
25 0.024024 3.267118 1.735898 19545.5 -0.128894 19199.83
26 0.025025 3.039732 1.908956 17836.19 -0.074951 6556.303
27 0.026026 2.911875 2.042648 24540.08 0.016621 12483.77
28 0.027027 3.902039 2.044562 18986.27 -0.088044 30334.26
29 0.028028 2.997901 1.885522 25349.97 0.083655 30405.69
30 0.029029 1.928753 1.805724 23989.61 0.231783 -20448.59

Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
31 0.03003 3.106873 1.604612 18801.55 -0.096159 18713.75
32 0.031031 3.522543 2.17001 22925.03 -0.037011 26636.67
33 0.032032 2.732102 1.7078 22111.8 -0.007585 14080.71
34 0.033033 3.234659 2.065998 21592.13 -0.041084 16515.94
35 0.034034 3.034943 1.92274 21147.73 -0.005095 15697.97
36 0.035035 3.063466 1.81573 22195.85 0.032017 25893.09
37 0.036036 3.377418 1.879693 17695.82 -0.11022 15011.69
38 0.037037 2.75415 2.331406 24171.83 -0.095264 -11070.56
39 0.038038 2.702301 1.66953 24329.84 0.258778 37714.3
40 0.039039 3.06958 2.294706 21349.33 0.00689 3147.075
41 0.04004 2.151962 2.027591 25352.45 0.229895 -20369.73
42 0.041041 3.161641 2.208902 24857.39 0.101421 21949.95
43 0.042042 3.481223 2.248875 22212.84 0.055206 26539.76
44 0.043043 2.942033 2.063223 21203.02 0.017173 7688.454
45 0.044044 2.732288 2.178006 16162.66 -0.094245 -12383.16
46 0.045045 3.126817 1.709116 27094.9 0.164574 60476.6
47 0.046046 3.159273 2.265575 22119.02 -0.084978 4921.196
48 0.047047 2.61948 2.437835 27398.61 0.151545 -17488
49 0.048048 3.121172 1.757358 16352.19 -0.129801 7619.878
50 0.049049 2.742998 2.038626 17348.16 -0.105246 -7420.255
51 0.05005 3.492136 2.107625 24568.85 -0.168318 22205.66
52 0.051051 2.993181 1.553802 26549.06 0.263673 72443.2
53 0.052052 2.407728 1.943595 18000.4 0.0588 -10444.22
54 0.053053 2.971629 1.722263 24767.29 0.177584 44703.27
55 0.054054 2.4847 2.001849 18741.26 -0.160839 -13496.07
56 0.055055 2.950799 1.894972 16862.48 -0.252027 -3486.55
57 0.056056 3.119988 2.165931 18894.83 0.043034 7829.248
58 0.057057 3.195257 1.569743 23316.66 -0.01186 41423.16
59 0.058058 3.905642 1.800851 22532.31 -0.091613 49646.47
60 0.059059 2.534101 2.164182 17043.61 -0.115543 -16972.62
61 0.06006 3.006089 2.040457 26871.79 0.20223 34393.81
62 0.061061 3.19263 2.258394 19696.66 0.070181 9712.118
63 0.062062 2.692312 2.419567 24668.57 0.103145 -13997.46
64 0.063063 3.077885 2.391669 19474.22 -0.149722 -7152.808
65 0.064064 2.732847 1.979428 20360.33 0.016168 1593.488
66 0.065065 3.308044 2.205105 18400.96 -0.287038 -1686.917
67 0.066066 2.815336 1.742915 16373.66 -0.025979 4404.026
68 0.067067 2.337859 2.055761 27175.91 0.17575 -10420
69 0.068068 2.641593 2.046924 17968.55 -0.104663 -9885.651
70 0.069069 2.838683 2.378914 27264.63 0.297451 5120.686
71 0.07007 2.867105 2.227676 26615.79 0.050893 5471.34
72 0.071071 2.90397 1.542659 24346.29 0.088563 41465.65
73 0.072072 3.305535 1.612002 21003.34 -0.067269 32653.05
74 0.073073 3.115033 1.55421 21536.79 0.084799 42266.74
75 0.074074 2.91912 2.086161 19497.9 -0.110227 -1385.269
76 0.075075 3.012992 1.893012 20046.41 -0.106017 8681.87
77 0.076076 1.949279 1.693791 17731.2 -0.272168 -20727.5
78 0.077077 2.645181 1.942628 23559.24 0.074949 6127.188
79 0.078078 3.358277 2.263073 19475.3 -0.021806 10726.43
80 0.079079 2.866339 2.077885 19649.79 -0.059994 -895.669

Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
81 0.08008 3.08165 1.600606 21231.85 -0.025507 28824.47
82 0.081081 3.3177 2.022109 21116.96 -0.16253 13120.96
83 0.082082 2.843439 2.105209 20068.54 0.064867 2350.349
84 0.083083 3.029198 2.242798 22749.75 0.170279 13380.9
85 0.084084 4.007073 1.777756 19550.72 -0.027633 50076.85
86 0.085085 2.913286 2.030201 23492.3 0.10344 16179.57
87 0.086086 2.545027 2.237113 22810.64 0.254856 -10130.25
88 0.087087 2.997034 1.530219 21251.82 -0.196379 16948.1
89 0.088088 3.139544 2.027461 24117.59 0.071911 26673.24
90 0.089089 2.483562 1.949396 28584.73 0.016748 891.178
91 0.09009 3.043477 1.517193 20400.29 0.108977 39374.29
92 0.091091 3.230094 1.742348 17340.85 -0.173356 10657.9
93 0.092092 2.979958 1.921369 19133.44 -0.090334 5922.892
94 0.093093 2.738426 2.006723 19915.55 -0.032208 -1506.398
95 0.094094 2.403867 2.168342 16358.97 -0.143597 -20947
96 0.095095 3.60999 2.297046 24911.56 0.072979 38350.45
97 0.096096 3.57294 2.122891 28892.81 0.214294 74240.46
98 0.097097 2.012281 1.710508 27028.27 0.139273 -9627.79
99 0.098098 3.394035 2.103657 27230.08 0.167447 52736.27
100 0.099099 3.073613 1.864051 24697.87 0.030883 29761.38
101 0.1001 3.014742 2.147892 26502.95 0.171453 24958.27
102 0.101101 2.610444 2.132004 21870.48 0.057054 -6765.062
103 0.102102 2.700615 2.337104 26824.99 0.298193 -2376.489
104 0.103103 2.596686 2.197157 17917.92 -0.102071 -15528.85
105 0.104104 2.963778 2.241898 19701.33 0.232211 7881.215
106 0.105105 3.111571 2.362548 21422.96 -0.001483 1845.152
107 0.106106 2.582338 2.230961 22347.57 0.109963 -11060.79
108 0.107107 3.286429 1.678448 17904.37 -0.271065 9810.038
109 0.108108 3.189701 1.989872 18352.22 -0.15515 5812.381
110 0.109109 3.378022 2.162178 26479.76 0.358441 66566.24
111 0.11011 3.068988 2.145058 18807.53 -0.192739 -2419.342
112 0.111111 3.123232 1.490416 21180.65 0.000568 36682.92
113 0.112112 3.484711 1.822788 17410.24 -0.179835 14767.3
114 0.113113 3.253002 2.101412 17901.7 -0.248107 137.1901
115 0.114114 3.146894 1.980908 19628.65 -0.182066 5819.621
116 0.115115 3.393564 1.629695 18215.19 -0.070943 26775.48
117 0.116116 3.354166 2.011112 21370.78 -0.049631 22016.6
118 0.117117 3.334232 1.769276 21176.49 0.031279 36386.18
119 0.118118 2.209164 2.073188 20128.46 0.015223 -22116.26
120 0.119119 3.364421 1.904036 21597.67 -0.11817 22157.8
121 0.12012 1.888467 2.363997 20142.39 -0.011684 -44699.7
122 0.121121 3.784367 2.051096 18854.78 -0.025019 30881.1
123 0.122122 2.701702 1.907532 22686.48 -0.069571 2899.097
124 0.123123 2.103691 1.826228 19975.6 0.037511 -16376.79
125 0.124124 3.25841 2.009293 18733.8 -0.058428 12650.37
126 0.125125 3.013032 2.200826 20655.02 -0.093464 -106.5514
127 0.126126 3.347782 2.055687 23522.22 0.221028 47274.75
128 0.127127 2.796013 2.358012 19066.2 -0.096807 -13724.68
129 0.128128 3.263624 1.753749 19704.02 -0.179918 15846.36
130 0.129129 3.232586 2.453366 22963.8 -0.007383 4765.313

Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
131 0.13013 3.294659 2.188515 22442.65 0.236568 34665.97
132 0.131131 3.281745 2.156277 18312.21 -0.002976 10543.62
133 0.132132 3.148635 2.161427 22054.35 0.083678 17179.61
134 0.133133 3.456028 2.275224 21248.69 0.03561 20812.92
135 0.134134 2.814875 2.000617 19753.7 -0.158566 -3162.62
136 0.135135 3.032587 1.625584 19495.46 -0.203615 11371.26
137 0.136136 3.226772 2.400098 20875.17 -0.06259 1664.661
138 0.137137 2.823534 1.880556 22956.81 0.045221 14913.52
139 0.138138 3.167646 2.283875 22455.68 0.05197 11412.53
140 0.139139 2.988029 1.559816 28184.83 -0.021236 44481.46
141 0.14014 2.340941 2.15443 23665.49 0.030548 -19192.43
142 0.141141 3.176886 1.918832 21955.05 -0.159293 13698.41
143 0.142142 3.0453 2.119077 20967.54 0.171707 17319.95
144 0.143143 2.063824 1.953166 15686.94 -0.392432 -24466.7
145 0.144144 2.534473 2.327578 22641.6 0.199011 -16960
146 0.145145 2.670822 1.841445 23672.9 0.069952 12228.25
147 0.146146 2.7525 2.338717 22352.69 0.058468 -9373.622
148 0.147147 2.588148 2.126268 22181.72 -0.106463 -10957.09
149 0.148148 3.492677 1.903647 21589.56 -0.243462 18114.44
150 0.149149 2.945268 1.869393 20669.68 0.171105 24092.81
151 0.15015 3.093665 2.025239 19455.42 -0.051051 8514.498
152 0.151151 3.134084 2.236694 23740.22 -0.160852 4017.24
153 0.152152 3.144503 2.185395 16273.74 -0.188165 -4630.816
154 0.153153 3.56612 2.031396 27305.77 -0.052657 43907.51
155 0.154154 2.879652 2.213201 19476.59 -0.010219 -3755.738
156 0.155155 2.837233 2.066462 20722.94 0.067749 4769.524
157 0.156156 2.966487 1.829195 23374.9 -0.112877 14683.84
158 0.157157 3.144009 1.71206 19464.03 -0.124891 16296.78
159 0.158158 2.912355 1.97811 26624.94 0.140055 27271.52
160 0.159159 2.603355 2.166935 18444.82 -0.030722 -12927.64
161 0.16016 3.302857 2.139887 22868.99 -0.070548 16943.32
162 0.161161 3.011435 2.007128 22156.75 0.010335 14083.9
163 0.162162 2.987832 2.132233 19860.29 0.094404 8051.77
164 0.163163 3.020672 2.039611 18157.26 -0.265782 -4025.124
165 0.164164 3.217555 2.43051 20752.96 0.048888 4394.706
166 0.165165 3.779166 2.349116 17179.06 -0.280514 3842.132
167 0.166166 2.36908 2.040966 19403.21 -0.174718 -17651
168 0.167167 2.931591 1.593652 21513.18 0.07005 31109.07
169 0.168168 3.271039 2.176339 29484.03 0.354758 65948.3
170 0.169169 2.782808 2.442465 19931.87 -0.014221 -15231.22
171 0.17017 2.334686 2.218345 21667.19 -0.014928 -22881.66
172 0.171171 2.948486 2.111351 23898.11 -0.063474 6238.406
173 0.172172 3.482742 1.70884 24132.23 -0.007983 50517.85
174 0.173173 3.176523 1.754521 19453.78 -0.207559 11420.43
175 0.174174 3.71044 1.661431 26880.27 0.009334 75043.44
176 0.175175 3.955326 1.720492 19700.95 0.022269 56363.15
177 0.176176 3.014136 1.622032 28659.25 0.227814 71817.3
178 0.177177 3.349947 2.308252 21740.66 -0.148281 6636.078
179 0.178178 2.923033 2.133833 21601.82 0.154329 10867.01
180 0.179179 3.325933 1.498581 18496.2 -0.116108 26249.06

Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
181 0.18018 3.246053 1.560875 19817.1 -0.029392 32077.17
182 0.181181 2.570092 1.679015 18271.98 0.064071 5732.835
183 0.182182 3.081386 1.826602 20495.46 0.03472 22391.46
184 0.183183 2.995244 2.097007 22402.03 -0.050577 7135.888
185 0.184184 3.640036 2.002952 18338.82 -0.02958 25912.06
186 0.185185 2.650414 1.48531 16632.42 -0.067104 5907.472
187 0.186186 3.322432 1.766504 21083.5 -0.238097 16566.89
188 0.187187 2.921642 2.030027 26682.01 0.131787 24229.67
189 0.188188 2.960253 2.22019 22897.58 0.123503 8937.616
190 0.189189 3.011648 2.150822 24362.68 0.229438 24264.59
191 0.19019 2.814932 1.649646 17911.6 -0.104189 6533.819
192 0.191191 2.824268 2.089741 17564.36 -0.011232 -3692.611
193 0.192192 2.98324 1.71328 29576.72 0.47026 99622.73
194 0.193193 2.935787 1.761339 21554.68 0.04147 22036.99
195 0.194194 3.711513 2.297941 26447.62 0.343232 79676.17
196 0.195195 2.769673 2.112814 17564.28 -0.241596 -11516.7
197 0.196196 3.096498 2.373534 19097.38 -0.061102 -3931.504
198 0.197197 2.773948 1.960362 18950.92 -0.106518 -2447.789
199 0.198198 3.366661 2.112037 22751.14 -0.161195 14771.13
200 0.199199 3.197431 2.013363 22828.31 0.202689 37486.92
201 0.2002 2.861368 1.419851 19220.17 -0.04215 21344.88
202 0.201201 2.484845 1.998811 22995.69 0.05942 -5256.493
203 0.202202 2.410583 2.257318 22840.39 0.219236 -19592.31
204 0.203203 3.192459 2.220306 17840.45 -0.144036 -813.9184
205 0.204204 2.458403 1.911434 20129.27 0.042178 -5761.126
206 0.205205 3.483719 1.70935 24416.32 0.042192 56964.41
207 0.206206 3.356391 1.941489 28116.12 0.301503 81039.11
208 0.207207 2.792443 1.609072 23622.54 0.364607 55776.93
209 0.208208 3.041886 2.045875 24881.01 0.111399 25127.84
210 0.209209 2.679992 2.006007 19334.29 -0.04993 -4691.207
211 0.21021 3.678038 2.146514 19048.97 -0.025635 24542.41
212 0.211211 3.309853 1.924784 24348.21 0.093534 42739.82
213 0.212212 3.04946 2.269588 19098.26 0.067578 2568.766
214 0.213213 3.692187 2.049206 25387.04 0.215984 74477.63
215 0.214214 3.143327 2.122942 25371.64 0.053492 23325.3
216 0.215215 3.253559 1.97224 24568.63 0.030903 32745.37
217 0.216216 2.999567 1.8217 20258.89 -0.001265 16684.1
218 0.217217 2.258692 2.256863 23600.71 0.190565 -28134.72
219 0.218218 3.356644 1.516447 18486.38 0.041388 39336.8
220 0.219219 2.617495 2.165753 21704.03 0.136433 -6077.311
221 0.22022 2.993741 2.287822 20166.81 -0.012441 -1669.167
222 0.221221 3.163379 2.106543 24715.32 0.05887 24221.86
223 0.222222 3.672852 1.903239 19738.15 -0.138328 26071.76
224 0.223223 2.935851 1.910741 19822.38 -0.089789 6016.477
225 0.224224 3.88024 2.081277 17637.3 -0.0094 30466.83
226 0.225225 3.155756 2.173072 21817.61 0.042428 14184.85
227 0.226226 2.726755 1.962497 24343.35 0.19254 16432.01
228 0.227227 3.346711 1.764667 20008.37 -0.191655 17826.54
229 0.228228 2.965404 2.092794 26564.52 -0.009463 14280.75
230 0.229229 3.299772 1.621003 18622.76 -0.011929 29670.51

Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
231 0.23023 2.887096 2.103109 19281.27 0.130359 5707.576
232 0.231231 3.131289 1.959038 19834.42 -0.122024 9133.545
233 0.232232 3.128909 2.110911 18016.39 -0.163996 7.569282
234 0.233233 2.973043 2.191322 21116.66 -0.128862 -1774.24
235 0.234234 3.522133 1.832519 19193.47 0.029495 34964.77
236 0.235235 3.196925 2.085557 23344.14 0.225285 36577.89
237 0.236236 2.621729 1.758552 26767.65 0.263558 32465.32
238 0.237237 3.104628 1.747359 18435.37 -0.211647 7652.773
239 0.238238 2.857219 2.159559 19506.33 -0.136387 -6295.319
240 0.239239 3.077585 2.090597 18512.28 -0.129352 1150.768
241 0.24024 2.855408 1.756511 19849.95 -0.058399 10060.91
242 0.241241 2.511613 2.43641 27349.01 0.234905 -23889.2
243 0.242242 3.455177 1.70486 22416.53 0.04887 49843.84
244 0.243243 3.024308 1.940674 23552.57 0.068659 23952.62
245 0.244244 2.814861 2.080836 20731.98 0.12764 5698.316
246 0.245245 3.298963 2.326876 19129.12 0.116934 12462.31
247 0.246246 3.005354 1.926868 23800.11 0.085633 25414.26
248 0.247247 2.855599 2.106698 21740.2 0.104684 6871.806
249 0.248248 2.611213 2.352635 21256.74 0.014169 -17273.37
250 0.249249 3.516896 2.063949 24287.88 0.261844 64072.12
251 0.25025 3.001092 1.717259 29731.79 0.48292 103734.2
252 0.251251 2.992315 2.3328 19121.43 -0.361748 -12654.47
253 0.252252 2.717468 2.1297 22173.02 0.002896 -3413
254 0.253253 2.774337 1.891923 22905.98 -0.143077 3419.825
255 0.254254 2.969711 1.781309 23019.06 0.097709 30015.28
256 0.255255 2.989483 1.624547 19839.03 0.032829 25085.1
257 0.256256 2.940099 2.45195 23060.72 -0.00779 -7308.107
258 0.257257 3.074114 1.965491 25542.98 0.003241 24661.12
259 0.258258 3.39817 1.797774 19689.47 -0.157493 19734.34
260 0.259259 2.713668 2.122488 18881.64 0.059401 -5046.058
261 0.26026 2.664085 2.162819 22066.38 -0.045269 -8264.641
262 0.261261 2.628768 2.311999 19813.44 -0.060631 -16638.27
263 0.262262 3.362211 2.066585 21440.99 -0.161878 13724.32
264 0.263263 2.73962 2.033194 27315.08 0.085009 11818.41
265 0.264264 2.617325 2.268231 19114.61 -0.119595 -16654.75
266 0.265265 2.858234 2.247311 16070.75 -0.331497 -15136.73
267 0.266266 3.453144 1.659003 24806.01 0.141387 71622.47
268 0.267267 2.80423 2.067597 23608.2 0.120892 9868.364
269 0.268268 2.894713 1.880549 22129.4 0.001979 14085.64
270 0.269269 2.82714 2.096742 26049.32 0.197059 17365.71
271 0.27027 2.272113 2.038417 22851.03 0.049504 -17024.92
272 0.271271 3.241531 2.093582 25389.98 0.08546 32274.75
273 0.272272 3.10201 1.945278 21301.83 0.029791 19850.78
274 0.273273 2.760742 2.124793 26779.74 0.116291 8516.004
275 0.274274 2.751947 1.720737 19767.29 -0.12489 4724.956
276 0.275275 2.256735 2.254815 20560.3 -0.049337 -27203.48
277 0.276276 3.304903 2.140172 19344.52 -0.06769 10579.34
278 0.277277 3.098842 1.788814 20512.36 -0.007609 21786.8
279 0.278278 3.374136 2.106194 23099.81 0.074783 31911.27
280 0.279279 3.376338 1.867597 27377.33 0.063726 55018.9

Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
281 0.28028 3.053005 1.748714 18705.87 0.163084 28789.47
282 0.281281 3.426785 2.206844 28440.06 0.31668 68399.41
283 0.282282 3.367783 2.111145 18659.51 -0.000856 15856.13
284 0.283283 4.147084 2.159482 17794.77 0.034427 40907.11
285 0.284284 2.97304 1.627489 19526.72 -0.147513 12653.5
286 0.285285 3.649812 1.803428 17275.04 -0.267914 13863.48
287 0.286286 2.042178 1.58842 16350.4 -0.354086 -17917.64
288 0.287287 3.117714 2.132146 25954.43 0.146916 29227.55
289 0.288288 2.378966 1.505534 19445.5 0.01356 4991.164
290 0.289289 2.909626 1.960669 22182.97 -0.104652 6344.775
291 0.29029 3.092088 1.760556 19833.6 -0.009665 20879.71
292 0.291291 3.149968 2.20604 20830.03 0.01218 9295.053
293 0.292292 2.721324 2.030611 19809.53 -0.316436 -10447.67
294 0.293293 2.983004 2.091769 24837.83 0.182811 24004.39
295 0.294294 2.242353 2.035394 21746.37 0.02369 -18828.58
296 0.295295 3.057902 2.04395 18488.26 -0.116446 2407.671
297 0.296296 3.050749 2.335257 20751.16 -0.218173 -6878.776
298 0.297297 2.576478 2.228427 16680.72 -0.21823 -18813.95
299 0.298298 3.072723 1.826758 17701.09 -0.223755 3105.221
300 0.299299 3.047691 2.397361 17322.53 -0.060663 -8074.739
301 0.3003 3.011425 2.325435 16791.57 -0.195692 -10664.85
302 0.301301 2.861788 2.071639 24161.49 0.045098 9639.469
303 0.302302 3.275306 2.211403 18643.76 0.02024 10194.71
304 0.303303 3.346363 1.810855 18917.51 -0.026815 24476.88
305 0.304304 2.756011 1.825885 22358.68 0.002199 11096.81
306 0.305305 3.143261 1.956222 19299.33 -0.114334 9008.533
307 0.306306 3.194537 2.164806 20452.26 -0.059415 8413.944
308 0.307307 3.382185 1.881033 21507.28 -0.09149 25194.64
309 0.308308 2.933231 2.051503 27701.88 0.198331 30319.01
310 0.309309 2.506002 2.189585 21106.02 0.170535 -12359.69
311 0.31031 2.915796 2.112897 21534.79 0.02075 5249.292
312 0.311311 2.986618 1.698106 22964.6 -0.160626 16609.65
313 0.312312 3.312511 2.348616 23188.88 -0.010647 12758.34
314 0.313313 2.699318 2.303787 25904.83 0.058204 -7697.456
315 0.314314 2.597235 2.155034 16867.97 -0.294163 -17462.35
316 0.315315 2.806858 1.504366 18221.63 -0.068754 13007.67
317 0.316316 2.758314 2.032937 24545.46 0.200289 14838.39
318 0.317317 3.731042 2.117901 20789.57 0.165706 49489.96
319 0.318318 3.292736 2.221939 20836.8 0.005807 13877.68
320 0.319319 2.923234 2.076985 23739.93 0.030018 10853.44
321 0.32032 3.283277 1.798959 19990 -0.032723 25100.29
322 0.321321 2.814906 1.706237 20131 -0.115947 8116.982
323 0.322322 3.191015 1.936212 20856.75 0.106481 28195.97
324 0.323323 2.949905 1.972872 16455.04 -0.270137 -6225.714
325 0.324324 2.718119 2.233088 17073.51 -0.258025 -16034.76
326 0.325325 2.725709 2.073266 23162.47 -0.152938 -4685.331
327 0.326326 2.751769 2.049418 20229.72 -0.027486 -2044.448
328 0.327327 2.998315 1.893128 24558.43 0.032516 24624.72
329 0.328328 3.524706 2.241031 19718.74 0.054697 22656.5
330 0.329329 3.273458 1.550252 18394.19 -0.091288 24651.17

Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
331 0.33033 2.945447 1.464788 23851.98 -0.152487 25715.4
332 0.331331 2.735263 2.014461 25294.02 -0.021817 4960.854
333 0.332332 2.609006 1.605394 19611.68 -0.005545 9023.848
334 0.333333 3.462492 1.874264 16747.1 -0.19205 10812.95
335 0.334334 3.584193 1.617823 20296.95 -0.088595 38026.34
336 0.335335 2.664715 1.846543 21112.97 0.039446 6282.38
337 0.336336 3.153898 1.936769 17096.33 -0.21756 1643.031
338 0.337337 3.046418 2.051975 24554.29 0.031095 19156.38
339 0.338338 3.134287 2.210693 16363.47 -0.157443 -4458.737
340 0.339339 3.269153 2.26765 18914.53 0.096609 12218.32
341 0.34034 3.129932 1.898821 24896.1 -0.085802 22707.6
342 0.341341 3.858912 2.010656 20503.02 -0.061569 36781.1
343 0.342342 2.763691 2.236251 21538.26 0.033332 -5709.347
344 0.343343 2.316751 1.917133 17938.65 0.012126 -13581.79
345 0.344344 2.548322 1.847334 21291.72 0.151866 6260.504
346 0.345345 3.328211 2.371224 17235.87 -0.27073 -5932.181
347 0.346346 2.301602 2.031905 18326.28 -0.070499 -18689.47
348 0.347347 3.152792 1.648116 20535.78 -0.131079 20551.34
349 0.348348 3.308508 1.884454 22755.31 -0.04662 28589.43
350 0.349349 3.059007 2.123093 20409.06 0.048407 10089.22
351 0.35035 3.373194 1.728103 19373.47 -0.118548 22889.34
352 0.351351 3.350923 1.901484 24533.7 0.134676 50746.19
353 0.352352 2.851397 1.895022 22923.31 -0.109781 7493.359
354 0.353353 2.891946 2.253951 26620.36 0.079699 6624.57
355 0.354354 3.366071 1.61242 23566 0.05978 55159.32
356 0.355355 3.933387 2.118221 25966.46 0.230347 89882.19
357 0.356356 2.645499 2.085096 22673.91 0.096282 -1051.231
358 0.357357 2.817479 1.440184 24621.67 0.079082 42260.12
359 0.358358 3.124889 1.997292 21319.42 -0.110069 10840.71
360 0.359359 2.542466 2.109549 20618.79 -0.027012 -11439.76
361 0.36036 3.188097 2.177342 21133.21 -0.146871 4901.994
362 0.361361 3.337433 1.809175 22571.1 0.024815 38276.83
363 0.362362 2.803048 1.794219 20325.59 0.076415 14638.13
364 0.363363 2.781165 2.448449 26016.51 0.246221 -6783.982
365 0.364364 2.555654 2.117406 28801.1 0.105905 -1499.039
366 0.365365 3.012457 1.72606 19012.54 -0.235478 5803.941
367 0.366366 3.294372 1.718421 20679.8 -0.156703 21373.03
368 0.367367 3.186001 2.003885 21304.54 0.139443 28369.1
369 0.368368 2.846008 2.264523 21850.96 0.051912 -2592.557
370 0.369369 2.89766 2.308518 24818.5 -0.032232 -2041.225
371 0.37037 2.898486 1.795707 20276.85 -0.002435 13888.12
372 0.371371 3.494151 1.629402 20683.18 0.028332 46641.06
373 0.372372 3.015663 1.949472 17169.46 -0.032099 5283.485
374 0.373373 2.732658 2.437165 17525.22 -0.255025 -20107.51
375 0.374374 3.065807 1.804763 24854.27 0.226554 50365.45
376 0.375375 3.37859 1.611307 23379.98 -0.033797 45360.24
377 0.376376 2.991751 1.841805 24441.78 -0.008486 23660.98
378 0.377377 3.372755 1.943077 27127.19 0.026834 46161
379 0.378378 3.421598 2.043778 19973.97 0.095215 30178.1
380 0.379379 2.899354 2.20028 18043.79 -0.088751 -6500.142

Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
381 0.38038 3.191973 1.946978 18740.89 -0.157534 7643.856
382 0.381381 2.689297 2.112729 22472.41 0.140732 1031.585
383 0.382382 2.946716 1.705524 24332.86 0.06892 33586.29
384 0.383383 2.672321 2.039068 19534.06 0.207453 2494.768
385 0.384384 3.228336 2.163282 21715.65 0.117285 22144.93
386 0.385385 2.912692 2.006213 20799.05 -0.179104 98.748
387 0.386386 2.424252 1.95169 18949.75 -0.159132 -13589.8
388 0.387387 3.025721 1.705586 19500.55 -0.079134 15561.56
389 0.388388 3.034896 1.939301 24783.47 0.084076 28271.56
390 0.389389 3.406996 2.139647 24507.27 0.052287 33499.61
391 0.39039 3.166461 2.117521 27316.38 0.202066 40771.87
392 0.391391 2.862606 1.792394 17217.9 -0.171968 59.6739
393 0.392392 2.792877 1.871535 18022.25 -0.175641 -2774.641
394 0.393393 2.482929 2.088131 24577.51 0.278952 -2466.526
395 0.394394 2.604063 2.09664 17571.53 -0.209344 -14454.38
396 0.395395 3.441327 2.264918 23343.2 0.261154 43366.04
397 0.396396 3.350808 1.686038 23952.67 0.134771 60566.05
398 0.397397 2.849657 2.044799 17842.63 -0.072896 -3066.631
399 0.398398 3.017884 1.645184 27417.41 0.13879 55851.89
400 0.399399 2.962517 2.22528 22875.04 0.197658 12386.24
401 0.4004 3.041255 2.306297 23595.38 0.179123 12400.31
402 0.401401 3.556968 1.999625 17973.42 -0.094699 18205.86
403 0.402402 3.087528 2.036488 19676.2 -0.372247 -3903.218
404 0.403403 2.562928 1.957595 23959.33 0.038172 554.2182
405 0.404404 2.631208 2.451579 25731.26 0.230931 -17269.88
406 0.405405 3.236285 1.787701 20306.24 -0.02296 25324.39
407 0.406406 3.068994 2.256324 25505.44 0.12824 17137.02
408 0.407407 3.078248 1.642337 19328.48 -0.03057 22030.53
409 0.408408 2.543304 1.958164 25269.54 0.140052 4983.905
410 0.409409 3.484279 2.17555 22134.78 -0.162568 15311.72
411 0.41041 3.179219 2.195781 21140.96 0.02815 12209.21
412 0.411411 3.483772 2.090344 23424.02 0.193965 50020.4
413 0.412412 3.32644 2.081693 19892.66 0.08139 23443.54
414 0.413413 3.370694 2.141937 21524.38 -0.00055 21123.69
415 0.414414 2.918754 1.964201 19551.91 -0.158135 682.2082
416 0.415415 2.676091 1.900326 15771.62 -0.112331 -7402.188
417 0.416416 3.363556 1.693773 27716.64 0.054919 64066.78
418 0.417417 3.054727 1.89379 18148.83 -0.151067 4644.537
419 0.418418 3.152186 2.248274 25348.61 0.169243 24662.93
420 0.419419 3.370004 1.726217 21493.8 -0.172195 24279.81
421 0.42042 2.96572 1.457385 18996.28 -0.098094 19328.7
422 0.421421 2.940413 2.067108 20509 -0.190605 -1657.734
423 0.422422 2.871211 2.274352 23498.11 -0.101381 -5031.822
424 0.423423 3.016405 2.278849 21977.69 0.064854 4827.451
425 0.424424 2.994819 1.87163 19464.74 0.029967 14744.09
426 0.425425 3.131002 2.148696 21694.38 0.092323 16771.98
427 0.426426 3.110322 2.111783 19188.63 0.116177 13815.42
428 0.427427 3.137767 2.044547 27722.68 0.172007 42033.87
429 0.428428 2.928676 2.482731 21829.51 -0.040348 -10676.23
430 0.429429 3.055859 2.19044 19744.26 -0.066697 1458.841

Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
431 0.43043 2.291817 1.928956 25423.68 0.058746 -9283.532
432 0.431431 3.122114 2.037501 23905.87 -0.006074 19725.21
433 0.432432 3.182578 1.998875 22712.1 -0.003032 21786.65
434 0.433433 2.182591 2.030295 19214.43 -0.099706 -22246.24
435 0.434434 2.828324 1.620166 21034.38 -0.017356 18632.52
436 0.435435 3.161302 1.856459 23159.64 -0.057992 24035.03
437 0.436436 3.424232 1.984152 21310.85 0.205543 46799.27
438 0.437437 3.255607 1.442006 23477.49 0.157245 69688.55
439 0.438438 3.067184 2.227085 23544.34 0.160209 17104.78
440 0.439439 3.010499 1.784324 17998.45 -0.08577 9235.217
441 0.44044 2.325499 1.820205 19823.65 -0.03146 -9345.466
442 0.441441 2.900498 1.780834 17158.64 -0.092902 4332.838
443 0.442442 3.591815 2.124321 16206.92 -0.214651 5766.837
444 0.443443 2.205319 1.622967 19687.95 -0.185733 -10326
445 0.444444 2.953479 1.523554 26491.9 0.310122 77761.32
446 0.445445 2.981922 2.005433 20362.12 0.184029 19304.84
447 0.446446 2.714441 1.980332 23979.72 0.105981 9663.783
448 0.447447 3.053137 2.343754 19771.55 0.052342 150.4983
449 0.448448 2.959327 1.856292 23807.44 0.04886 24131.2
450 0.449449 2.505985 1.975749 18656.62 0.069752 -7184.443
451 0.45045 3.159727 2.074242 20942.32 0.01467 15261.66
452 0.451451 3.541383 2.066822 21772.25 0.088428 38986.38
453 0.452452 2.801231 2.06712 22353.73 0.011351 3183.225
454 0.453453 2.810897 2.114434 16204.83 -0.11125 -9004.495
455 0.454454 3.145832 1.998231 24685.03 0.134816 34673.83
456 0.455455 2.92453 1.765464 24000.31 0.147077 34857.89
457 0.456456 2.460985 1.934326 23234.16 0.36052 8083.603
458 0.457457 3.063249 2.29511 18859.31 -0.029651 -1690.809
459 0.458458 3.136915 2.299402 16862.91 -0.139077 -5486.804
460 0.459459 2.844731 1.76348 19850.73 -0.064577 9164.303
461 0.46046 3.619126 2.345595 17370.38 -0.02845 11910.44
462 0.461461 3.330499 2.061612 19391.74 0.000188 18019.19
463 0.462462 2.986856 2.376475 22633.71 -0.129913 -6168.195
464 0.463463 2.800266 2.082748 22968.72 0.031918 4084.482
465 0.464464 3.019455 2.005962 21840.84 0.032686 15130.56
466 0.465465 3.440168 1.941522 20720.12 -0.048336 26231.78
467 0.466466 3.350687 1.823106 21447.23 0.050749 37262.33
468 0.467467 3.60751 2.149224 24868.22 -0.121114 28897.9
469 0.468468 2.700931 2.056913 19274.87 -0.210238 -9757.235
470 0.469469 2.548061 1.827603 19792.74 -0.117216 -4566.326
471 0.47047 3.180565 2.131906 26951.38 0.235836 42872.65
472 0.471471 2.823171 2.216831 20904.15 0.043554 -2791.623
473 0.472472 4.311186 1.888831 28174.4 0.16791 129433.6
474 0.473473 3.042911 1.901874 24450.11 0.186754 38179.78
475 0.474474 2.915255 2.257968 23139.27 -0.135049 -4139.292
476 0.475475 2.717877 1.830537 20714.62 -0.073837 3514.106
477 0.476476 3.716911 2.096631 26685.62 0.107223 63867.89
478 0.477477 3.121098 1.786509 22324.18 0.050505 31368.68
479 0.478478 2.390806 2.168431 20126.94 0.14591 -17614.33
480 0.479479 3.253972 2.139465 25570.8 0.077737 30278.04

Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
481 0.48048 2.680541 2.192761 19421.51 -0.182301 -13397.82
482 0.481481 2.776702 2.180221 23940.59 0.081372 1476.101
483 0.482482 2.528427 2.167536 17343.04 -0.136865 -17318.17
484 0.483483 2.842111 2.094732 19162.76 -0.063655 -2965.221
485 0.484484 2.978748 1.9629 21918.85 -0.002268 13477.13
486 0.485485 3.0738 2.352075 24474.98 0.184504 13287.06
487 0.486486 3.205616 2.178833 26128.22 0.135928 31103.77
488 0.487487 3.560671 2.095878 21789.91 -0.074752 25608.73
489 0.488488 3.072668 1.691136 19656.55 -0.10518 16333.87
490 0.489489 3.273015 1.93561 19043.13 -0.082255 14812.43
491 0.49049 3.102333 1.920337 21460.43 0.105849 26405.14
492 0.491491 3.009745 1.738239 20566.36 0.106304 28339.49
493 0.492492 2.884243 2.193534 25196.29 -0.003171 4086.738
494 0.493493 2.904513 1.713123 23798.74 0.138368 35408.23
495 0.494494 2.591876 2.300806 22046.15 0.101117 -14300.35
496 0.495495 3.016289 1.913555 17475.27 -0.329855 -4081.635
497 0.496496 2.738926 2.464154 21608.93 0.133361 -14960.72
498 0.497497 2.73802 2.427098 22116.65 -0.022462 -15365.69
499 0.498498 3.159152 1.894566 26547.26 0.05524 38801.42
500 0.499499 3.488281 2.179904 19157.79 0.207737 33338.3
501 0.500501 2.516002 2.24656 21541.72 -0.100341 -17960.69
502 0.501502 3.049767 2.240755 17774.96 -0.219958 -7318.583
503 0.502503 3.09107 2.348348 25739.24 0.14341 14298.2
504 0.503504 3.239276 2.197868 23459.93 0.032295 19210.39
505 0.504505 3.614467 1.984354 21395.7 0.022077 38697.68
506 0.505506 3.131032 2.038944 19262.75 -0.150407 4474.242
507 0.506507 2.771472 2.382646 24761.15 -0.075111 -11721.56
508 0.507508 3.032668 1.802539 26696.14 0.140151 45199.42
509 0.508509 2.970152 2.271585 23005.95 -0.097376 -1597.862
510 0.50951 2.911054 2.409642 28094.17 0.222071 5901.966
511 0.510511 2.668832 2.101457 26160.8 0.065014 1890.418
512 0.511512 2.663051 2.115276 21421.66 -0.134663 -9200.287
513 0.512513 3.215689 2.095793 16949.21 -0.116639 2839.262
514 0.513514 2.64956 2.14122 17093.58 -0.375641 -16994.2
515 0.514515 2.512797 1.94373 29310.47 0.148798 9265.792
516 0.515516 3.278726 1.729729 26202.03 0.106915 58655.65
517 0.516517 3.626129 1.802561 18400.01 -0.15513 22972.56
518 0.517518 1.718151 2.125592 19780.69 -0.063615 -40632
519 0.518519 2.464323 1.981361 29073.95 0.369148 13124.04
520 0.51952 3.394573 1.954164 17758.84 -0.095754 14308.84
521 0.520521 2.896429 2.002094 27287.23 0.05931 20729.98
522 0.521522 3.178932 1.461056 23985.41 0.250179 78736.94
523 0.522523 2.610492 2.203973 19157.99 -0.133945 -15098.88
524 0.523524 2.916646 1.816268 19779.42 0.049673 15683.44
525 0.524525 3.267345 1.930772 20535.87 -0.095374 17169.94
526 0.525526 2.988828 1.826174 23879.43 0.170599 36629.17
527 0.526527 2.787058 2.122549 19230.94 -0.050814 -5218.734
528 0.527528 2.919087 1.803712 28575.8 0.227827 51480.63
529 0.528529 3.319429 2.356105 16933.65 -0.110744 -1265.088
530 0.52953 3.09452 1.97674 23747.49 -0.131859 13439.22

Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
531 0.530531 3.023388 1.633452 19971.39 0.073396 29359.17
532 0.531532 3.811609 1.903196 23711.42 -0.089578 46185.89
533 0.532533 3.083682 1.561182 21953.05 -0.141044 23707.13
534 0.533534 3.007081 2.09548 21286.82 0.123155 14542.34
535 0.534535 2.879041 2.403315 21882.91 0.00189 -8470.381
536 0.535536 3.300569 1.720327 27127.05 0.103727 63057.96
537 0.536537 2.867322 2.213544 22911.47 0.033167 1138.396
538 0.537538 2.861714 1.869966 19568.6 0.003566 8763.541
539 0.538539 3.36727 1.587418 19062.98 -0.182383 21778.14
540 0.53954 3.259344 1.970419 19372.52 -0.006075 18371.49
541 0.540541 3.651732 2.167893 20338.77 -0.261548 11687.9
542 0.541542 3.010563 2.25404 26149.56 0.068642 11828.9
543 0.542543 3.267352 2.337646 25633.33 0.222933 30560.42
544 0.543544 2.852426 1.877727 17659.42 -0.122452 -53.87637
545 0.544545 3.445614 1.949507 21799.18 -0.029631 30265.95
546 0.545546 3.023345 2.084872 23657.66 -0.068116 9738.497
547 0.546547 3.013697 2.248237 20794.16 -0.133054 -2828.457
548 0.547548 2.445433 1.42089 24221.59 0.070085 23087.94
549 0.548549 2.376319 2.031067 22722.95 0.264313 -7514.94
550 0.54955 3.282888 1.88933 18987.99 0.13199 30938.56
551 0.550551 3.615962 2.408343 23253.26 0.139429 34200.21
552 0.551552 2.759898 1.672386 21550.9 -0.019146 14919.94
553 0.552553 2.676432 2.113788 26107.48 0.352998 14377.42
554 0.553554 3.334184 2.079499 19053.55 0.047311 19596.28
555 0.554555 3.431476 1.832419 18253 -0.053144 22943.7
556 0.555556 2.675155 1.968421 19208.23 -0.135824 -6197.449
557 0.556557 2.596389 1.875664 15579.09 0.002401 -6073.982
558 0.557558 3.127344 1.72486 19311.73 -0.152197 13560.77
559 0.558559 3.249882 1.959979 23656.74 0.098948 36521.62
560 0.55956 3.089174 1.992907 26636.72 0.136589 36580.19
561 0.560561 2.720176 1.844645 26145 0.091464 19942.47
562 0.561562 2.800283 1.862647 19123.09 -0.147943 49.41815
563 0.562563 3.194724 2.100913 19060.97 -0.193089 2448.266
564 0.563564 3.242507 1.673432 24613.8 0.0438 48001.57
565 0.564565 2.752695 2.416554 24390.83 0.149384 -9895.433
566 0.565566 3.516734 1.944052 21045.99 0.005847 34038.63
567 0.566567 3.403031 2.03259 18817.84 -0.087075 15016.62
568 0.567568 3.082867 2.337388 15160.71 -0.160762 -10126.9
569 0.568569 3.363479 2.170143 22401.39 0.030508 23619.51
570 0.56957 3.358528 2.215008 19989.27 -0.305055 710.1806
571 0.570571 3.170292 1.844753 18138.05 -0.412077 -1420.945
572 0.571572 3.392635 1.952396 18354.68 0.084735 27355.19
573 0.572573 3.057883 2.349622 21045.68 -0.224532 -6992.767
574 0.573574 3.023689 2.159269 25363.18 0.344823 35106.03
575 0.574575 3.45619 2.131428 17584.52 -0.063978 12184.44
576 0.575576 2.931987 1.835413 19554.44 -0.182252 3842.344
577 0.576577 2.173531 1.695365 26570.19 0.190334 2399.244
578 0.577578 3.00291 2.095386 24947.02 0.135046 21996.22
579 0.578579 2.893518 1.873731 22212.31 -0.083194 9995.885
580 0.57958 3.01403 2.245287 17516.57 -0.066106 -4448.029

Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
581 0.580581 3.006631 2.155643 20649.3 -0.068245 2167.472
582 0.581582 3.083017 2.326038 23697.6 0.103986 9946.861
583 0.582583 3.296874 1.949639 20539.92 -0.033117 21421.82
584 0.583584 3.416925 1.642651 18812.84 -0.18105 21063
585 0.584585 3.535774 1.857151 23856.33 -0.074771 39099.05
586 0.585586 2.990809 1.925912 26274.51 -0.170569 13353.65
587 0.586587 2.990075 2.229598 18847.34 -0.048858 -2540.517
588 0.587588 2.691983 2.089571 17656.34 -0.180648 -11544
589 0.588589 3.085152 1.999682 28483.29 0.136536 40200.19
590 0.58959 2.998385 2.084288 21662.13 -0.071786 5711.714
591 0.590591 2.980593 2.095273 24650.4 -0.045613 10129.09
592 0.591592 2.852509 2.062412 24216.68 0.048538 9894.326
593 0.592593 2.99526 1.833879 19509 -0.084395 10140.01
594 0.593594 3.473801 2.109621 22979.19 0.126557 40629.86
595 0.594595 3.101462 2.213766 21289.54 0.096559 11941.51
596 0.595596 2.66796 2.198394 24534.16 0.191101 -826.0903
597 0.596597 3.503003 1.977595 19970.93 -0.256885 12415.85
598 0.597598 2.808729 1.898079 20449.53 -0.015072 6395.21
599 0.598599 3.32411 2.036619 20640.57 0.103687 28773.44
600 0.5996 2.414101 2.186913 19595.02 0.030181 -18805.66
601 0.600601 2.862013 1.983572 25397.6 -0.050587 10759.87
602 0.601602 2.713671 1.730062 23289.86 0.226592 29529.83
603 0.602603 3.635214 2.181722 18104.13 -0.197345 9917.984
604 0.603604 2.902966 2.16043 21299 -0.065922 -736.3648
605 0.604605 2.976977 1.826738 25811.31 -0.087632 21027.58
606 0.605606 2.884048 1.767257 21434.32 0.152773 26755.61
607 0.606607 2.866699 1.62008 28324.24 0.063528 43201.42
608 0.607608 2.81635 2.205982 23111.38 0.04613 -96.22855
609 0.608609 3.014654 1.982797 19928.19 -0.283419 -1208.283
610 0.60961 3.159731 2.143335 24994.35 0.049884 22141.84
611 0.610611 3.120428 2.090895 20602.15 0.109025 17691.47
612 0.611612 2.877527 2.127395 20268.98 -0.136737 -3914.44
613 0.612613 3.023653 1.774593 26632.02 0.07999 40527.12
614 0.613614 3.406701 1.871787 18425.65 -0.014404 23959.85
615 0.614615 2.586143 2.422435 26610.75 -0.030458 -20300
616 0.615616 3.116354 1.719805 23168.52 0.043401 35808.08
617 0.616617 3.244622 2.08836 24780.86 0.346174 55075.31
618 0.617618 3.250946 2.062779 27915.66 0.071527 39141.9
619 0.618619 2.947263 2.12257 22071.46 0.106946 11010.18
620 0.61962 3.219024 2.065605 25449.97 0.309791 53236.96
621 0.620621 2.703187 2.013742 22157.41 0.257499 11749.25
622 0.621622 3.30412 2.214843 19142.97 -0.194098 2345.575
623 0.622623 3.087699 1.778151 17604.68 -0.227105 4336.33
624 0.623624 3.165419 1.848374 20306.19 0.083015 27794.97
625 0.624625 2.850615 2.18476 17604.29 -0.240675 -11292.38
626 0.625626 3.389129 2.257795 24791.28 0.048236 27121.51
627 0.626627 2.479976 2.298809 23578.14 0.048368 -19439.86
628 0.627628 3.321682 2.081986 20654.45 -0.011467 19013.88
629 0.628629 3.39337 1.530775 20055.9 0.095771 51243.57
630 0.62963 2.61826 1.902658 25137.46 -0.037808 3976.205

Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
631 0.630631 3.055041 2.088642 24144.8 0.142267 24096.07
632 0.631632 3.132949 1.901613 20948.2 -0.044057 17477.83
633 0.632633 2.718255 2.361923 22907.01 0.074875 -11289.64
634 0.633634 2.499209 2.130016 24618.51 0.013738 -10652.06
635 0.634635 3.182701 2.365916 26594.07 0.135196 19497.31
636 0.635636 3.016116 2.145715 22204.61 0.095341 12753.07
637 0.636637 2.926428 1.60484 20403.36 0.160873 34496.66
638 0.637638 2.911778 1.736736 21057.48 -0.048987 15495.93
639 0.638639 3.02892 2.012776 21053.33 -0.122822 6109.7
640 0.63964 3.175588 1.653756 21362.69 -0.12568 23335.88
641 0.640641 2.793889 2.260593 26028.05 0.212224 5427.037
642 0.641642 3.327648 1.72566 25909.74 -0.103718 38849.12
643 0.642643 2.862693 1.988359 20554.91 0.128796 11880.18
644 0.643644 3.449235 1.778539 25063.83 0.232213 77466.67
645 0.644645 2.969046 2.028862 19098.17 0.01011 6293.578
646 0.645646 2.812209 2.109157 22046.31 0.053637 3102.879
647 0.646647 3.756839 1.762357 26383.72 0.20626 99985.88
648 0.647648 2.563193 1.5013 17660.53 -0.031294 6354.271
649 0.648649 2.576468 1.922606 23200.44 -0.187488 -5491.484
650 0.64965 2.520081 1.771915 20738.4 -0.158705 -3920.803
651 0.650651 3.190321 2.042565 20788.52 0.084142 21727.85
652 0.651652 2.896931 2.150113 23617.88 -0.02382 3828.043
653 0.652653 3.499357 1.946962 27580.47 -0.002544 50642.22
654 0.653654 2.960974 2.123251 16856.34 -0.253345 -8378.36
655 0.654655 3.250698 2.160664 16453.25 -0.462358 -8964.499
656 0.655656 3.28518 2.03428 21454.33 -0.051892 18659.26
657 0.656657 2.981189 1.980766 18720.18 -0.275683 -3177.373
658 0.657658 2.420794 1.830031 25487.58 0.209901 8812.949
659 0.658659 3.771329 1.784545 19675.7 0.037582 48522.73
660 0.65966 2.629746 2.412223 19212.74 -0.071533 -20276.8
661 0.660661 2.969194 2.219587 18082.53 -0.208412 -8163.235
662 0.661662 2.939874 1.881312 27131.38 0.173001 38702.97
663 0.662663 2.553733 2.327719 23540.23 -0.020346 -18152.45
664 0.663664 2.957999 2.060945 16027.47 -0.275157 -8501.752
665 0.664665 2.773434 2.114019 25742.21 0.114146 8405.363
666 0.665666 2.061634 2.42908 27186.68 0.24562 -54702.58
667 0.666667 3.164704 1.842115 19614.62 -0.069067 16376.6
668 0.667668 2.839046 2.086296 22597.35 -0.01571 3166.699
669 0.668669 3.495976 2.008279 20849.42 0.038607 32733.16
670 0.66967 3.19359 2.299155 25035.76 0.131745 21002.34
671 0.670671 2.131309 1.80002 18269.53 -0.341497 -19504.72
672 0.671672 3.089734 1.932736 16950.91 -0.138024 3042.919
673 0.672673 3.167947 1.899701 16554.61 -0.21364 2093.458
674 0.673674 2.583501 1.587576 28081.06 0.179059 37773.41
675 0.674675 2.435817 2.022385 25364.05 0.275586 -479.7561
676 0.675676 2.259746 2.021613 22337.5 0.153045 -15697.09
677 0.676677 2.682718 1.857809 20680.94 0.025793 5301.725
678 0.677678 2.575241 2.26419 17045.52 -0.162339 -19040.07
679 0.678679 3.190165 2.074888 21931.36 0.058069 21131.87
680 0.67968 3.307684 1.809602 17668.7 -0.073089 17156.76

Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
681 0.680681 3.367308 1.967917 26826.57 0.177524 59646.55
682 0.681682 2.988384 2.116074 18895.67 -0.043587 1415.094
683 0.682683 2.730921 2.133106 22600.34 -0.003267 -2764.912
684 0.683684 2.926419 2.151889 20488.89 -0.136821 -2938.277
685 0.684685 2.523958 1.601468 26327.36 0.105272 24033.73
686 0.685686 2.952651 2.089365 21123.52 0.068714 9321.178
687 0.686687 2.459583 1.867899 21906.18 0.07859 -852.7631
688 0.687688 2.667857 1.707103 17991.64 -0.156359 -1054.902
689 0.688689 3.106353 2.134872 21132.28 -0.015228 9584.279
690 0.68969 3.640157 1.775564 19058.38 0.081411 45880.51
691 0.690691 3.716845 1.849744 17258.22 -0.165699 20358.5
692 0.691692 3.496565 1.678408 24920.51 0.169949 77285.36
693 0.692693 3.355909 1.896749 21491.99 0.1375 41999.23
694 0.693694 2.946585 2.23455 20738.69 -0.135919 -4654.44
695 0.694695 2.808918 1.636162 21914.9 0.036627 22548.14
696 0.695696 3.163286 1.921035 24227.7 -0.133252 18792.38
697 0.696697 3.012241 1.94699 20124.98 -0.157403 4776.425
698 0.697698 2.898835 2.143391 23590.42 -0.016279 4474.054
699 0.698699 3.145127 2.211804 20044.22 0.046352 9178.645
700 0.6997 3.092159 2.320359 26330.51 -0.011056 8823.624
701 0.700701 2.924193 2.061008 17262.33 -0.27638 -7942.254
702 0.701702 3.1293 2.13387 18152.56 0.136348 12579.89
703 0.702703 2.690094 2.263603 25470.92 0.225382 -1487.96
704 0.703704 2.626269 1.735832 23435.91 0.012011 11738.07
705 0.704705 3.39985 2.134588 25233.8 0.013574 31995.16
706 0.705706 3.218403 2.023082 26780.89 0.12142 41355.6
707 0.706707 3.603015 2.183231 21468.79 0.03416 31148.1
708 0.707708 2.682907 1.863352 21778.05 -0.102448 1440.729
709 0.708709 3.418047 1.86588 21472.3 0.126481 45322.07
710 0.70971 2.72129 1.979425 20046.95 -0.005684 -45.89656
711 0.710711 3.265417 1.911574 18631.15 0.077598 24374.88
712 0.711712 3.286535 1.645767 22299.5 0.073373 47114.67
713 0.712713 2.737303 1.882369 26885.78 0.036331 16708.46
714 0.713714 2.262149 1.840531 20981.48 -0.008733 -11039.84
715 0.714715 3.727588 1.760331 19236.09 -0.202224 25801.73
716 0.715716 2.977881 1.96375 24359.92 0.169201 29235.53
717 0.716717 3.024588 1.859342 20222.92 0.135743 24747.44
718 0.717718 3.351858 2.16071 23618.43 -0.233946 10248.6
719 0.718719 2.680403 2.103305 23431.3 0.043545 -1258.054
720 0.71972 2.907728 2.166052 15945.99 -0.219032 -10603.28
721 0.720721 3.430016 2.101059 24779.59 0.196126 50787.55
722 0.721722 2.704462 2.173803 19021.74 -0.093933 -10750.72
723 0.722723 2.953414 2.202592 26818.39 -0.04714 6891.854
724 0.723724 3.258757 2.169384 20794.38 -0.064355 10824.88
725 0.724725 2.90464 2.166153 21482.61 0.114558 6385.603
726 0.725726 2.488483 1.862161 21224.43 -0.112509 -6051.729
727 0.726727 2.941378 2.172531 22763.35 0.161274 12092.38
728 0.727728 3.275754 2.039965 26312.2 0.00351 32291.96
729 0.728729 3.391042 2.289219 21707.47 0.211687 30443.83
730 0.72973 2.943416 1.967868 19046.58 -0.082377 3511.36

Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
731 0.730731 2.846063 1.57224 22191.7 -0.114277 17493.39
732 0.731732 3.300007 2.000314 22761.63 -0.116062 19100.5
733 0.732733 3.337333 1.994837 18561.13 -0.190826 8349.399
734 0.733734 2.824036 2.015674 25719.04 0.17897 20598.69
735 0.734735 3.336615 2.234082 25843.08 0.217187 41740.87
736 0.735736 2.539323 1.982689 23573.41 -0.298521 -10907.74
737 0.736737 2.420512 2.267388 21233.12 0.058674 -21135.39
738 0.737738 3.691388 1.949123 18564.5 -0.033642 29709.09
739 0.738739 2.654956 1.962639 24949.52 0.116105 9377.661
740 0.73974 3.509253 1.840421 19076.18 0.017235 32833.02
741 0.740741 3.441163 2.304984 20016.83 -0.104102 8970.533
742 0.741742 2.577787 1.860807 21758.5 -0.037463 90.85514
743 0.742743 3.019851 1.879179 24664.75 0.165607 36935.8
744 0.743744 3.205998 2.217565 23516.19 -0.014883 14222.98
745 0.744745 3.069045 1.814515 23651.7 -0.092586 20817.98
746 0.745746 3.043926 2.100412 19652.42 -0.049267 4686.977
747 0.746747 3.273265 1.735026 24693.83 0.150119 58004.53
748 0.747748 3.358944 1.96621 19296.83 -0.192033 11015.21
749 0.748749 3.051013 1.460867 21038 0.000181 34605.49
750 0.74975 3.344984 2.17164 22459.89 -0.036213 18607.13
751 0.750751 2.640139 2.176134 16792.93 -0.191159 -15739.59
752 0.751752 2.71868 1.922331 16438.59 -0.251769 -9561.513
753 0.752753 2.886691 1.713298 18255.91 -0.094796 7784.598
754 0.753754 3.376081 1.694792 22347.32 -0.081301 34673.71
755 0.754755 2.789044 2.052352 17331.91 -0.204335 -9021.014
756 0.755756 3.341924 2.151399 24141.24 0.004453 25461.64
757 0.756757 2.395531 2.07476 20338.03 0.182452 -12315.11
758 0.757758 2.915617 2.001061 17670.98 0.017338 3370.718
759 0.758759 2.76538 1.770852 20222.7 -0.104778 5098.715
760 0.75976 3.169346 1.970259 26701.11 0.010177 31939.66
761 0.760761 3.190233 2.434902 22490.2 -0.012878 2958.966
762 0.761762 3.016575 2.266358 24130.41 -0.013866 4930.726
763 0.762763 3.065921 1.782602 19587.14 -0.189669 8772.685
764 0.763764 3.010855 1.885867 18145.13 -0.165429 3090.951
765 0.764765 3.333103 1.799906 28198.95 0.292712 89443.1
766 0.765766 2.606371 2.058429 23080.22 -0.096741 -6915.333
767 0.766767 2.937799 2.054581 19246.4 -0.252625 -4744.401
768 0.767768 3.633132 1.612932 21377.09 -0.189237 34259.55
769 0.768769 3.357576 1.816604 25656.24 0.031177 48272.5
770 0.76977 3.096229 2.343204 21010.81 -0.172464 -4260.075
771 0.770771 2.773857 2.029278 26014.58 0.125785 14245.36
772 0.771772 3.259584 2.227888 21333.63 0.093861 18282.38
773 0.772773 2.778445 2.191168 20134.07 0.083858 -3150.058
774 0.773774 3.179009 2.127685 18729.63 0.057933 11873.75
775 0.774775 2.644653 2.051255 25050.31 0.030578 798.2594
776 0.775776 2.753444 1.911614 23295.59 -0.17087 1408.587
777 0.776777 3.126319 2.314526 20319.56 0.062522 5425.732
778 0.777778 3.341091 2.109794 23103.11 0.031262 26950.68
779 0.778779 3.363632 2.202177 20651.21 0.075812 21320.23
780 0.77978 2.558592 2.213776 22502.82 -0.049646 -14099.19

Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
781 0.780781 3.278982 2.303461 16321.2 -0.331186 -8097.986
782 0.781782 2.840667 1.876356 20592.15 0.097035 14339.67
783 0.782783 3.020532 2.219823 17340.49 -0.069723 -3828.132
784 0.783784 3.264789 1.966947 25865.08 0.033508 36874.71
785 0.784785 2.289041 2.200983 21452.75 0.310709 -23065.11
786 0.785786 3.543968 2.050147 20810.29 0.123774 40070.08
787 0.786787 3.251893 1.858401 20038.17 0.066829 29006.49
788 0.787788 3.315648 2.253927 22863.65 0.070243 21298.14
789 0.788789 2.865364 1.94938 24168.04 -0.026835 11792.81
790 0.78979 2.915317 2.29756 21148.47 0.029148 -2584.183
791 0.790791 2.884507 2.303319 24202.22 0.262653 8238.269
792 0.791792 2.947635 2.329463 17238.62 -0.135535 -10698.53
793 0.792793 3.679785 2.134368 19471.99 0.005952 28460.37
794 0.793794 3.395053 1.909981 20701.19 -0.084807 23183.65
795 0.794795 2.637302 1.897826 18638.9 -0.10325 -4883.978
796 0.795796 2.76217 2.144021 23750.72 0.159556 5497.749
797 0.796797 2.957186 2.203716 24980.3 0.207149 17432.88
798 0.797798 3.032306 2.096207 20476.15 -0.045777 5853.677
799 0.798799 2.978636 2.238729 21871.74 0.086526 5738.23
800 0.7998 2.955625 2.136677 24981.81 -0.129409 4042.657
801 0.800801 2.087113 1.868577 22798.87 -0.045186 -18560.23
802 0.801802 3.795413 2.29051 22780.84 -0.011457 34350.27
803 0.802803 3.178622 1.542972 26712.73 -0.031554 49624
804 0.803804 2.797379 2.168841 20627.9 -0.115431 -6810.343
805 0.804805 2.949474 1.653526 16102.72 -0.219934 1812.676
806 0.805806 3.302612 1.619593 19333.96 -0.038025 29886.05
807 0.806807 3.128326 2.073788 22724.63 0.084935 21797.19
808 0.807808 3.192004 2.129527 23473.91 0.048609 21291.68
809 0.808809 2.694248 2.364446 17391.6 -0.085627 -17671.18
810 0.80981 2.89015 2.159647 22283.24 -0.138538 -2498.631
811 0.810811 2.558277 2.297542 19831.62 -0.242711 -20098.22
812 0.811812 2.958647 1.894002 24512.25 -0.047341 17570.38
813 0.812813 3.648179 2.258412 21175.74 0.020944 28098.81
814 0.813814 2.617215 2.180896 20309.7 -0.375472 -16975.66
815 0.814815 3.108181 1.765097 20061.08 -0.019077 21214.59
816 0.815816 3.014924 2.144139 22439.34 0.159376 16710.74
817 0.816817 3.168444 2.152098 22607.01 0.068231 18669.86
818 0.817818 2.954455 2.462309 21369.55 -0.035139 -9144.111
819 0.818819 3.550061 1.881264 20217.78 -0.092469 27551.23
820 0.81982 3.467411 1.943572 24655.3 0.04169 45479.62
821 0.820821 2.755432 2.240087 20167.4 -0.063811 -9741.5
822 0.821822 2.616378 1.902018 22678.06 0.068323 5239.739
823 0.822823 3.430313 1.561495 25388.55 -0.067133 52323.32
824 0.823824 3.25265 1.894624 22721.61 0.18649 45327.55
825 0.824825 3.101353 1.952979 20250.36 -0.039684 13340.22
826 0.825826 3.11329 2.095062 17441.27 -0.158501 -606.1485
827 0.826827 2.741778 1.693185 21881.85 0.09993 21067.75
828 0.827828 2.458106 1.820589 20712.03 0.009454 -2530.272
829 0.828829 2.942694 1.702655 21617.31 -0.078532 17226.17
830 0.82983 3.02349 1.623683 20287.18 0.189336 40247.17

Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
831 0.830831 2.593829 2.000241 21706.78 -0.238691 -9855
832 0.831832 2.855777 1.995129 22206.39 0.013386 8387.646
833 0.832833 2.910697 2.185413 19505.53 -0.215551 -7600.262
834 0.833834 3.112568 2.181853 28637.28 0.140529 30818.09
835 0.834835 2.495693 1.984681 20372.9 0.10732 -5263.21
836 0.835836 2.913074 2.311718 27335.56 -0.027545 1109.327
837 0.836837 2.538236 2.051204 28383.35 -0.059204 -4290.327
838 0.837838 2.664753 2.179909 19742.34 0.010612 -9460
839 0.838839 2.715742 2.104988 20989.26 -0.194362 -8962.943
840 0.83984 3.514886 1.953465 19190.73 -0.191454 15401.21
841 0.840841 2.530272 2.045286 18048.43 -0.226265 -14935.34
842 0.841842 3.340934 2.435958 22927.09 -0.061204 7405.442
843 0.842843 3.108666 2.141667 18942.56 -0.227056 -2251.554
844 0.843844 3.56976 2.275664 26178.3 0.23777 57177.89
845 0.844845 2.979541 2.157412 21714.48 0.133732 11599.86
846 0.845846 2.951834 2.217005 22727.57 -0.232957 -4853.781
847 0.846847 3.321537 1.812569 18905.78 -0.239259 10954.11
848 0.847848 3.044058 2.366236 25012.5 0.168945 10760.29
849 0.848849 3.230435 2.082933 26114.48 0.223594 46157.23
850 0.84985 3.101621 1.976007 27617.66 0.148218 41741.5
851 0.850851 3.492188 2.027563 20570.74 -0.056707 24013.59
852 0.851852 2.535574 1.839464 21188.84 0.009488 296.3475
853 0.852853 2.488818 1.923257 20354.67 -0.025128 -6662.762
854 0.853854 2.847788 1.580387 19239.11 -0.182148 8194.398
855 0.854855 3.273448 1.536122 21711.08 0.094145 51718.54
856 0.855856 2.923768 2.318444 21078.87 0.072756 -1789.154
857 0.856857 3.402982 1.592216 20947.55 -0.229365 24025.44
858 0.857858 2.426299 2.113662 23628.26 0.042884 -13251.48
859 0.858859 3.033168 1.632663 22667.02 0.104422 39999.01
860 0.85986 2.140909 1.991256 29098.55 0.316324 -16725.28
861 0.860861 3.562904 2.006982 19990.88 0.080601 36450.71
862 0.861862 3.146191 1.438695 19811.47 -0.291923 14998.82
863 0.862863 3.00646 2.246812 20366.9 -0.222369 -6073.199
864 0.863864 2.673329 1.528929 19115.57 0.071362 17434.74
865 0.864865 2.473323 1.562568 19674.13 -0.145495 268.3053
866 0.865866 3.326798 1.842054 22199.03 0.052443 37726.6
867 0.866867 3.071926 1.887465 28098.91 0.231544 55331.92
868 0.867868 3.334272 1.834944 17293.2 -0.18563 10181.16
869 0.868869 2.597413 2.262579 16572.78 -0.204726 -19047.46
870 0.86987 2.135714 1.574893 20070.61 -0.036329 -7133.42
871 0.870871 3.185961 2.11948 19800.38 -0.017646 10632.88
872 0.871872 2.748989 2.010407 21513.01 0.023635 2803.03
873 0.872873 2.496819 1.776159 26711.29 0.181309 17333.56
874 0.873874 2.820853 1.949193 18304.72 -0.088183 -926.3528
875 0.874875 2.583968 2.023542 19218.15 -0.035233 -8213.685
876 0.875876 3.030294 1.639994 25057.08 0.064433 42535.27
877 0.876877 2.844736 1.964858 23772.85 0.174361 20851.73
878 0.877878 3.450952 2.469263 18036.9 -0.228115 -3210.171
879 0.878879 3.585285 2.317337 21075.91 -0.029764 19654.19
880 0.87988 3.253179 1.869501 23359.13 0.015524 33279.67

Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
881 0.880881 3.178609 2.368646 17695.59 0.086257 2200.517
882 0.881882 2.579184 2.093279 21315.45 0.088 -6082.021
883 0.882883 2.844677 2.262853 27044.57 0.218627 10159.68
884 0.883884 2.76405 1.951112 17479.48 -0.220923 -7415.505
885 0.884885 3.406717 2.046788 25915.44 0.099958 46275.85
886 0.885886 2.69026 1.647383 24131.28 0.084524 24558.6
887 0.886887 2.862172 1.959012 26820.55 0.056438 20273.62
888 0.887888 2.942204 2.195938 22259.58 0.062617 5586.937
889 0.888889 3.085505 2.112062 17412.9 -0.051489 2030.435
890 0.88989 3.120664 1.985614 19818.59 -0.188913 4954.55
891 0.890891 3.533073 1.769312 24798.71 0.319656 95410.07
892 0.891892 2.445721 2.333433 27002.81 0.062247 -22158.09
893 0.892893 2.760145 1.980808 24627.27 0.128948 14208.91
894 0.893894 3.43803 2.238531 19363.01 0.048497 18186.31
895 0.894895 3.145368 1.911178 15679.44 0.001759 8823.912
896 0.895896 3.38525 1.960157 19553.13 0.063096 28566.57
897 0.896897 2.537213 1.927973 22362.53 -0.235476 -8798.516
898 0.897898 3.173487 2.415569 17733.56 -0.23034 -8914.593
899 0.898899 3.727184 1.67748 19346.43 0.144172 61540.25
900 0.8999 2.869761 2.282554 25151.95 -0.013367 -1153.699
901 0.900901 2.865208 2.160815 19868.82 -0.026194 -2432.137
902 0.901902 3.194594 1.868803 20181.75 -0.098091 15964.95
903 0.902903 2.923677 2.239931 21800.59 0.008966 194.3142
904 0.903904 2.873631 1.608427 19681.71 -0.123629 11833.41
905 0.904905 3.126513 1.831219 26372.45 0.135063 47620.14
906 0.905906 3.122435 2.130691 26938.73 0.352185 49659.07
907 0.906907 2.924195 2.23466 23691.33 -0.011047 1921.236
908 0.907908 3.512 2.147229 21239.11 0.104822 33815.73
909 0.908909 2.708165 2.035114 15949.24 -0.243087 -12471.85
910 0.90991 2.231485 2.343125 26296.15 0.198086 -35733.51
911 0.910911 2.527397 1.834051 18543.13 -0.017223 -3855.557
912 0.911912 3.399874 2.416347 16124.77 -0.269727 -6656.708
913 0.912913 2.898818 2.101229 25356.36 0.106552 15006.96
914 0.913914 3.290579 2.097574 23315.61 -0.020658 22175.75
915 0.914915 2.696059 2.03744 23974.62 0.273195 13671.5
916 0.915916 2.719129 2.081445 15980.93 -0.240697 -13163.48
917 0.916917 3.052798 2.182373 20313.97 -0.206208 -2543.521
918 0.917918 3.139293 2.030469 16349.41 -0.388787 -6969
919 0.918919 2.551585 2.20414 20766.49 0.00174 -14095.39
920 0.91992 2.979855 2.337947 16950.67 -0.348894 -14264.59
921 0.920921 3.020023 1.903248 20568.8 -0.149783 7386.206
922 0.921922 2.91086 2.158766 18841.29 -0.175561 -6474.664
923 0.922923 3.032867 2.041786 23032.28 -0.0595 11299.98
924 0.923924 3.018032 1.6675 25776.9 -0.028327 34229.17
925 0.924925 3.0239 2.007434 19994.38 -0.040724 8178.906
926 0.925926 2.78604 1.593464 22174.06 0.090479 27813.61
927 0.926927 2.970086 2.16617 24020.78 0.328065 26484.76
928 0.927928 2.514826 1.839501 25951.5 0.248034 16901.23
929 0.928929 2.507301 2.1984 25874.89 0.259645 -7813.196
930 0.92993 3.520568 1.583293 23489.4 0.13597 73300.01

Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
931 0.930931 2.773579 2.231173 18468.16 -0.085182 -10688.48
932 0.931932 3.321366 1.884284 21780.5 0.011874 31178.41
933 0.932933 2.934171 2.137915 25800.3 0.085464 14432.8
934 0.933934 2.565487 1.702278 22413.71 -0.021364 7433.368
935 0.934935 3.169858 1.783242 21611.17 0.122767 37729.35
936 0.935936 3.036014 1.652251 24376.29 0.168535 50404.15
937 0.936937 2.767773 1.741725 22597.28 -0.064045 11932.83
938 0.937938 3.089596 2.256067 17289.49 -0.241305 -7792.206
939 0.938939 2.480969 2.224605 20327 0.024869 -17505.13
940 0.93994 3.081842 1.880026 18588.65 -0.198918 4440.134
941 0.940941 3.024652 2.074398 18230.19 -0.099937 787.2083
942 0.941942 2.805998 1.986873 18221.63 0.200226 8565.794
943 0.942943 3.493119 1.844366 23750.32 -0.025542 42129.21
944 0.943944 2.610423 1.707685 23112.3 -0.164567 3627.845
945 0.944945 2.721809 2.209442 25024.24 0.206556 2792.074
946 0.945946 2.406566 2.06945 20037.62 -0.000557 -14814.82
947 0.946947 2.352938 1.569611 18173.55 -0.020229 -1285.716
948 0.947948 3.038298 2.301133 21161.54 -0.120361 -2975.503
949 0.948949 2.67941 2.06979 18236.87 -0.162539 -10504.27
950 0.94995 3.239976 1.974777 26398.04 0.309424 64499.41
951 0.950951 2.431987 2.105014 26381.75 0.346018 -3736.724
952 0.951952 2.872233 2.302149 21123.45 0.007124 -5171.414
953 0.952953 2.973704 2.072819 15737.69 -0.238264 -7852.372
954 0.953954 3.324433 2.090091 19379.55 -0.05745 13485.06
955 0.954955 2.793926 1.724408 21434.23 0.269247 32972.1
956 0.955956 3.301228 2.010913 20497.24 -0.048528 18283.77
957 0.956957 3.091983 2.30241 24318.28 0.026198 8710.842
958 0.957958 2.979249 2.113395 17911.83 0.071712 4201.676
959 0.958959 3.234604 2.056148 20700.27 -0.109484 11430.03
960 0.95996 2.61179 2.253677 26506.49 0.127593 -7561.892
961 0.960961 3.977278 1.621114 24522.76 0.010321 80396.45
962 0.961962 3.426104 2.024473 17098.55 -0.284912 3065.619
963 0.962963 3.092822 1.532604 21224.9 -0.263924 15596.66
964 0.963964 2.718945 2.160938 18776.95 -0.116111 -10580.53
965 0.964965 3.177738 1.859134 26659.72 0.232609 60339
966 0.965966 3.59132 1.607699 20719.34 0.131856 63233.61
967 0.966967 3.354632 2.158127 21061.28 0.103478 25702.15
968 0.967968 3.008038 1.87821 28462.85 0.25284 54730.1
969 0.968969 3.230616 2.12304 21290.53 -0.149737 8113.415
970 0.96997 3.316654 1.615474 20477.98 -0.231395 19777.83
971 0.970971 3.420204 2.275384 17685.92 -0.113662 4790.362
972 0.971972 3.071116 1.812471 18613.02 -0.101494 10590.87
973 0.972973 3.200844 1.927555 28615.54 0.021647 41116.11
974 0.973974 2.742004 2.015141 21467.24 -0.072899 -1234.583
975 0.974975 1.905223 1.750534 20646.43 0.238957 -19411.11
976 0.975976 3.310827 2.249189 17917.51 -0.248589 -2020.071
977 0.976977 2.547617 1.825546 26523.94 0.093973 12283.34
978 0.977978 2.987523 2.040292 19249.15 -0.01297 5770.621
979 0.978979 3.162368 1.622449 20152.99 0.067258 35488.62
980 0.97998 2.696492 1.762828 19513.82 -0.068484 3582.399

Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
981 0.980981 2.878276 2.325041 27782.86 0.017778 779.1188
982 0.981982 2.904625 1.628087 23888.05 0.070394 34404.73
983 0.982983 3.061096 1.70749 18375.9 -0.07499 14425.46
984 0.983984 2.543357 1.777 15714.69 -0.195056 -9600.765
985 0.984985 2.597364 1.502284 22759.86 -0.026791 17188.37
986 0.985986 3.225314 2.173341 21164.3 0.104836 19551.54
987 0.986987 2.718528 1.61066 19119.31 -0.246726 1105.109
988 0.987988 2.858228 2.28389 24037.24 -0.029428 -3300.908
989 0.988989 2.980157 1.542165 28924.49 0.016016 50679.31
990 0.98999 2.737467 2.140939 21793.9 0.110108 72.256
991 0.990991 2.874043 2.103074 22514.29 0.133739 10487.84
992 0.991992 3.357619 2.054862 26565.38 0.037604 39091.25
993 0.992993 3.491894 1.819461 20035.99 -0.031954 31873.75
994 0.993994 2.505816 1.546315 19433.49 -0.246055 -2153.406
995 0.994995 2.734375 2.281299 22482.6 -0.176559 -12531
996 0.995996 2.904197 2.081807 19804.91 0.085256 6224.696
997 0.996997 2.472701 2.022323 25425.42 0.152896 -2113.977
998 0.997998 2.860773 1.48941 18607.49 -0.150853 11473.22
999 0.998999 2.7959 1.884496 18610.59 -0.056988 1897.835
1000 1 2.765693 1.666928 28388.83 0.172859 44614.4

Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
s still highlighted,
e menu bar, then
nu SimTools. Then
on Table. See
ht for details.

rectly, a new
sis will run. This
5 seconds,
ur computer. All the
imulation Table will
g the output of the
tions.

Simulation
a summary of the
s.

Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Analyzing the Output of a Simulation

You don't need to change anything in this section. It will be updated automatically if you do a
simulation. The summary of the simulation results is based on the simulation output, and is updated
automatically when you do a simulation.

Part 1: Summary of Simulation Results


Variable Sales
Sales Price Cost Unit Sales Growth NPV
Mean $3.00 $2.00 21,696 $0.00 $13,651
Standard deviation $0.35 $0.23 3,088 $0.15 $22,009
Maximum $4.31 $2.48 29,732 $0.48 $129,434
Minimum $1.72 $1.42 15,161 -$0.46 -$54,703
Correlation with Unit Sales 63.4%
Median $10,743
Probability of NPV > 0 71.9%
Coefficient of Variation 1.61

Part 2: Histogram
You don't need to change anything in this section. The chart below shows the frequency with which the
NPV fell in the specified ranges. This approximates the probability that the NPV will fall in these same
ranges in the future.

Number
greater Probabili ty
than Prob. of
Bottom of bottom of Top of NPV in
range range range Interval
-Infinity 1000 -$70,000 0
-$70,000 1000 -$60,000 0.0%
-$60,000 1000 -$50,000 0.1%
-$50,000 999 -$40,000 0.2%
-$40,000 997 -$30,000 0.1%
-$30,000 996 -$20,000 1.8%
-$20,000 978 -$10,000 9.4%
-$10,000 884 $0 16.5%
$0 719 $10,000 20.3%
$10,000 516 $20,000 18.4%
$20,000 332 $30,000 12.9%
$30,000 203 $40,000 8.8% NPV ($)
$40,000 115 $50,000 5.2%
$50,000 63 $60,000 2.8%
$60,000 35 $70,000 1.4%
$70,000 21 $80,000 1.2%
$80,000 9 $90,000 0.4%
$90,000 5 $100,000 0.3%
$100,000 2 $110,000 0.1%
$110,000 1 $120,000 0.0%

Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
$120,000 1 $130,000 0.1%
$130,000 0 $140,000 0.0%
$140,000 0 $150,000 0.0%
$150,000 0 $160,000 0.0%
$160,000 0 $170,000 0.0%
$170,000 0 $180,000 0.0%
$180,000 0 $190,000 0.0%
$190,000 0 $200,000 0.0%
$200,000 0 $210,000 0.0%
$210,000 0 $220,000 0.0%
$220,000 0 +Infinity
Sum 100%

Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
NPV ($)

Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.
Harcourt, Inc. items and derived items copyright 2002 by Harcourt, Inc.

You might also like