add
Adds two numbers.15
subtract
Subtracts the second number from the first.7
multiply
Multiplies two numbers.50
divide
Divides the first number by the second.5
Division by zero returns
0 to prevent errors.modulo
Returns the remainder of division.2
Use cases:
- Alternating row colors
- Checking even/odd
power
Raises a number to a power.8
sqrt
Returns the square root of a number.4
round
Rounds a number to specified decimal places.
Examples:
ceil
Rounds up to the nearest integer.4
Use cases:
- Page counts
- Minimum quantities
floor
Rounds down to the nearest integer.3
abs
Returns the absolute value.42
Use cases:
- Displaying differences
- Ensuring positive values

