Table of Contents
Toggle=SUM(A1:A10)
=AVERAGE(B1:B5)
=IF(C1>10, "Pass", "Fail")
=ROUND(D1, 2)
(rounds to two decimal places)=POWER(E1, 3)
(raises E1 to the power of 3)\frac{a}{b}
a^b
a_b
\sum_{i=1}^{n} x_i
pow(2, 3)
returns .Math.pow(2, 3)
returns .Math.random()
function generates a random double between 0.0 and 1.0.int randomNum = (int) (Math.random() * (max - min + 1)) + min;
$a^2 + b^2 = c^2$
\[ a^2 + b^2 = c^2 \]
Similar to the previous question, math is used in: