You can enter mathematical expressions in fields that require a numeric value, such as length, radius, or distance. You can also enter the expression in the user input line. These expressions can include:
+, -, *, /
sin, cos, tan, asin, acos, atan
sqrt (square root)
^ (power: x^y where y is an integer)
exp (e^x)
PI (or lower-case pi)
bracket terms
floor(n) (highest integer less than or equal to n; rounds n down to the next integer)
ceil(n) (smallest integer not less than n; rounds n up to the next integer)
Examples
3*(5.5+17.2) = 68.1
sin(45)+3*11.4 = 34.907106781186549
tan(45) = 1.0
1.5^3 = 3.375
floor(42.17) = 42
ceil(28.17) = 29
floor(-2.3) = -3
ceil(-2.7) = -2 |