Using Excel
Excel is a program that is useful for mathematical operations, especially the kind that involve working with tables of numbers. It is available on almost any computer running Windows.

Excel is started in one of several ways:

The Excel worksheet is a giant table, with rows labelled by numbers and columns labelled by letters. The elements of the table are called cells. Cells then have names, like A1 (the first cell on the first row) or C11 or W53 (which is not visible on the screen when Excel first starts -- you have to go look for it).

A cell may contain any kind of data or text, or a formula telling Excel how to compute what is displayed in the cell using data to be found in other cells. For example, we could fill in the cells as follows:
 ABCD
1 Grocery Bill   
2ItemNumberPrice per itemCost
3Apples7$0.35=B3*C3
4Canned Peas3$0.85=B4*C4
5Bars of Soap4$1.10=B5*C5
6Watermelon1$3.50=B6*C6
7Total=SUM(B3:B6) =SUM(D3:D6)
8Average cost per item   =D7/B7
What you would see, however, would be the results of the multiplication (to find the cost), column sums (to find the number of items and total cost), and division (to determine the average cost per item). Once the table is set up, you can decrease the number of apples and change the price of a bar of soap and the calculations will be redone immediately. (This example is the file xlexampl.xls. You could go play with it for a minute, now). You surely can find uses for a program like this, in calculating student grades, figuring your taxes, or keeping track of the current value of your collection of catsup bottle labels.

Across the top row of the Excel display screen are a set of pull-down menus, labelled X, File, Edit, View, Insert, Format, Tools, Data, ... . The most useful subcommands are:

There are two different ways to refer to a cell that needs to be explained here.