Math.abs( 23.7 ) = 23.7 Math.abs( 0.0 ) = 0 Math.abs( -23.7 ) = 23.7 Math.ceil( 9.2 ) = 10 Math.ceil( -9.8 ) = -9 Math.cos( 0.0 ) = 1 Math.exp( 1.0 ) = 2.71828 Math.exp( 2.0 ) = 7.38906 Math.floor( 9.2 ) = 9 Math.floor( -9.8 ) = -10 Math.log( 2.718282 ) = 1 Math.log( 7.389056 ) = 2 Math.max( 2.3, 12.7 ) = 12.7 Math.max( -2.3, -12.7 ) = -2.3 Math.min( 2.3, 12.7 ) = 2.3 Math.min( -2.3, -12.7 ) = -12.7 Math.pow( 2, 7 ) = 128 Math.pow( 9, .5 ) = 3 Math.sin( 0.0 ) = 0 Math.sqrt( 25.0 ) = 5 Math.tan( 0.0 ) = 0