E1.07: Section 4
Section 4. Formulas and functions
We have similar issues about order of operations when we enter formulas into a spreadsheet as when we enter them into a calculator. In these two types of problems below, it is necessary to insert parentheses. When we write these by hand, the order of operations is implied by the placement of the expressions, so that when we type them in, we must use parentheses to compensate for that.Evaluate each expression | In a spreadsheet, if the x-value is in cell A2 | |
[latex]{{3}^{2x}}[/latex], where [latex]x=3[/latex] | =3^(2*A2) | |
[latex]\frac{{{x}^{2}}-6x}{4x+2}[/latex], where [latex]x=3[/latex] | =(A2^2-6*A2)/(4*A2+2) | |
[latex]\sqrt{4x+9}[/latex] | =SQRT(4*A2+9) or =(4*A2+9)^0.5 |
Named function | Example (usual notation) | Example (spreadsheet notation) |
Square Root | [latex]\sqrt{4x-5}[/latex] | =SQRT(4*A2-5) |
Average (of a set of five numbers, in cells A2 through A6) | [latex]\frac{{{x}_{1}}+{{x}_{2}}+{{x}_{3}}+{{x}_{4}}+{{x}_{5}}}{5}[/latex] | =AVERAGE(A2:A6) |
Maximum (of a set of seven numbers, in B2 through B8) | [latex]\max({{x}_{1}},{{x}_{2}},{{x}_{3}},{{x}_{4}},{{x}_{5}},{{x}_{6}},{{x}_{7}})[/latex] | =MAX(B2:B8) |
Pi (the value 3.14…) | [latex]\pi[/latex] | =PI() |
|
The formula in cell B2 is =SQRT(12*A2+3) Then that formula was copied to cells B3 through B8. |
Solution:
|
First, type the scores into a blank spreadsheet. (In this case, copying and pasting doesn’t work because the scores above are not in separate cells of a table in the original document.) If you put them in the upper left corner, they will be in cells A1 through A6. Next choose another cell to put the formula in. If you choose cell C4, then in C4, put this formula =AVERAGE(A1:A6) As soon as you enter that formula, the average of the six numbers, which is 78, will appear in the cell. To “play” with this, go back to the cells with the data and replace the first value of 72 with 102. Notice that the average in cell C4 changes to 83. |
Solution:
|
First, copy and paste these data values into a blank spreadsheet. If you paste the whole set into the upper left corner, the output data will be in cells B2 through C6 Next choose another cell to put the formula in. If you choose cell F3 then, in cell F3, put this formula =MAX(B2:C6) As soon as you enter this formula, that cell should show 68, which is the maximum of these numbers. Now, to “play” with this, go back to the cells with the data and replace the first value in the “Men” column, 67, with the number 85. Notice that the maximum, over in cell F3, changes to the new maximum 85. |
Licenses & Attributions
CC licensed content, Shared previously
- Mathematics for Modeling. Authored by: Mary Parker and Hunter Ellinger. License: CC BY: Attribution.