Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

table 1.3.1: common functions. | function name | description | function…

Question

table 1.3.1: common functions.

function namedescriptionfunction syntax
countreturns a count of the number of numeric values in a dataset.count(value1, value2, ...)
maxreturns the maximum value in a numeric dataset.max(value1, value2, ...)
minreturns the minimum value in a numeric dataset.min(value1, value2, ...)
sumreturns the sum of a series of numbers and/or cells.sum(value1, value2, ...)

above, the function syntax defines how the function is used, and specifies the functions name and accepted arguments. a functions arguments are surrounded by parentheses and specify the data that the function operates on. arguments may be numbers, cells, a range of cells, or a combination thereof. the arguments are optional.

to call a function in a spreadsheet, = is followed by the functions name and then arguments separated by commas. ex: =sum(a1, a2, a3) calculates sum of cells a1, a2, and a3. the range operator (:) defines a reference to a group of cells. ex: =sum(a1:a4, b10) calculates the sum of cells a1, a2, a3, a4, and b10.

participation activity 1.3.8: functions.

complete each formula.

  1. determine the sum of cells a1 and c3.

= sum(□)
check show answer

  1. determine the sum of all rows from a5 to a27 using the range operator.

= sum(□)
check show answer

  1. determine the largest value in cells d2 and d3.

= □
check show answer

  1. determine the number of numeric values from rows f5 to f21, cell g12, and cell h9.

= □

Explanation:

Step1: Fill SUM arguments for A1,C3

=SUM(A1, C3)

Step2: Fill SUM range for A5:A27

=SUM(A5:A27)

Step3: Use MAX for D2,D3

=MAX(D2, D3)

Step4: Use COUNT for range+cells

=COUNT(F5:F21, G12, H9)

Answer:

  1. =SUM(A1, C3)
  2. =SUM(A5:A27)
  3. =MAX(D2, D3)
  4. =COUNT(F5:F21, G12, H9)