Math and Trig Functions Flashcards

1
Q

CONVERT(Expression, Datatype)

A

Converts an expression of one data type to another.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

RADIANS(angle)

A

Converts degrees to radians.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

DEGREES(angle)

A

Converts radians into degrees.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

SIGN(number)

A

Determines the sign of a number, the result of a calculation, or a value in a column. The function returns 1 if the number is positive, 0 (zero) if the number is zero, or -1 if the number is negative.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

CURRENCY(value)

A

Evaluates the argument and returns the result as currency data type.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

DIVIDE(numerator, denominator[,alternateresult])

A

Performs division and returns alternate result or BLANK() on division by 0.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

QUOTIENT(numerator, denominator)

A

Performs division and returns only the integer portion of the division result. Use this function when you want to discard the remainder of division.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

MROUND(number, multiple)

A

Returns a number rounded to the desired multiple.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

RAND()

A

Returns a random number greater than or equal to 0 and less than 1, evenly distributed. The number that is returned changes each time the cell containing this function is recalculated.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

RANDBETWEEN(bottom,top)

A

Returns a random number in the range between two numbers you specify.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

EXP(number)

A

Returns e raised to the power of a given number. The constant e equals 2.71828182845904, the base of the natural logarithm.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

EVEN(number)

A

Returns number rounded up to the nearest even integer. You can use this function for processing items that come in twos. For example, a packing crate accepts rows of one or two items. The crate is full when the number of items, rounded up to the nearest two, matches the crate’s capacity.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

ODD(number)

A

Returns number rounded up to the nearest odd integer.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

ABS(number)

A

Returns the absolute value of a number.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

ACOS(number)

A

Returns the arccosine, or inverse cosine, of a number. The arccosine is the angle whose cosine is number. The returned angle is given in radians in the range 0 (zero) to pi.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

ASIN(number)

A

Returns the arcsine, or inverse sine, of a number. The arcsine is the angle whose sine is number. The returned angle is given in radians in the range -pi/2 to pi/2.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

ATAN(number)

A

Returns the arctangent, or inverse tangent, of a number. The arctangent is the angle whose tangent is number. The returned angle is given in radians in the range -pi/2 to pi/2.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

LOG10(number)

A

Returns the base-10 logarithm of a number.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

COS(number)

A

Returns the cosine of the given angle.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

COT (number)

A

Returns the cotangent of an angle specified in radians.

21
Q

FACT(number)

A

Returns the factorial of a number, equal to the series 123 , ending in the given number.

22
Q

GCD(number1, [number2], …)

A

Returns the greatest common divisor of two or more integers. The greatest common divisor is the largest integer that divides both number1 and number2 without a remainder.

23
Q

COSH(number)

A

Returns the hyperbolic cosine of a number.

24
Q

COTH (number)

A

Returns the hyperbolic cotangent of a hyperbolic angle.

25
Q

SINH(number)

A

Returns the hyperbolic sine of a number.

26
Q

TANH(number)

A

Returns the hyperbolic tangent of a number.

27
Q

ACOSH(number)

A

Returns the inverse hyperbolic cosine of a number. The number must be greater than or equal to 1. The inverse hyperbolic cosine is the value whose hyperbolic cosine is number, so ACOSH(COSH(number)) equals number.

28
Q

ACOTH(number)

A

Returns the inverse hyperbolic cotangent of a number.

29
Q

ASINH(number)

A

Returns the inverse hyperbolic sine of a number. The inverse hyperbolic sine is the value whose hyperbolic sine is number, so ASINH(SINH(number)) equals number.

30
Q

ATANH(number)

A

Returns the inverse hyperbolic tangent of a number. Number must be between -1 and 1 (excluding -1 and 1). The inverse hyperbolic tangent is the value whose hyperbolic tangent is number, so ATANH(TANH(number)) equals number.

31
Q

LCM(number1, [number2], …)

A

Returns the least common multiple of integers. The least common multiple is the smallest positive integer that is a multiple of all integer arguments number1, number2, and so on. Use LCM to add fractions with different denominators.

32
Q

LOG(number,base)

A

Returns the logarithm of a number to the base you specify.

33
Q

LN(number)

A

Returns the natural logarithm of a number. Natural logarithms are based on the constant e (2.71828182845904).

34
Q

ACOT(number)

A

Returns the principal value of the arccotangent, or inverse cotangent of a number.

35
Q

MOD(number, divisor)

A

Returns the remainder after a number is divided by a divisor. The result always has the same sign as the divisor.

36
Q

POWER(number, power)

A

Returns the result of a number raised to a power.

37
Q

SIN(number)

A

Returns the sine of the given angle.

38
Q

SQRTPI(number)

A

Returns the square root of (number * pi).

39
Q

SQRT(number)

A

Returns the square root of a number.

40
Q

TAN(number)

A

Returns the tangent of the given angle.

41
Q

PI()

A

Returns the value of Pi, 3.14159265358979, accurate to 15 digits.

42
Q

INT(number)

A

Rounds a number down to the nearest integer.

43
Q

FLOOR(number, significance)

A

Rounds a number down, toward zero, to the nearest multiple of significance.

44
Q

ROUNDDOWN(number, num_digits)

A

Rounds a number down, toward zero.

45
Q

ROUND(number, num_digits)

A

Rounds a number to the specified number of digits.

46
Q

ROUNDUP(number, num_digits)

A

Rounds a number up, away from 0 (zero).

47
Q

CEILING(number, significance)

A

Rounds a number up, to the nearest integer or to the nearest multiple of significance.

48
Q

ISO.CEILING(number[, significance])

A

Rounds a number up, to the nearest integer or to the nearest multiple of significance.

49
Q

TRUNC(number,num_digits)

A

Truncates a number to an integer by removing the decimal, or fractional, part of the number.