Enter formulas :
//Basic tests 1+2 // = 3 5-4 // = 1 3*2 // = 6 112/7 // = 16 //Priorities 5+3 * 4 // = 17 6*3/2 // = 9 6*3+2 // = 20 6*3^3 // = 162 //Associativity 3^3*2 // = 54 2^2^3 // = 256 (2^3 goes first so 2^8) 2^8 // = 256 //Parenthesis 3+4*2 // = 11 (3+4)*2 // = 14 ((3+4)*2+5)*3 // = 57 ((3+4)*2+5)*((3+2)*2-1) // = 171 //Constants 3*pi/6 // = same as pi/2 pi/2 // = 1.57... e^2 // = 7.389... //Functions sin(pi/4) // same as below sqrt(2)/2 // same as above cos(pi/3) // = 1/2 tan(pi/4) // = 1 max(6*4-3, (2*6+8)/5 + 18) min(6*4-3, (2*6+8)/5 + 18) //Bool (if enabled) (4*3+12) < 23 // 24 not less than 23 (4*3+12) < 23 + 2 // 24 less than 25 (4*3+12) > 23 // 24 greater than 23 6! = 720 // 6! and 720 are equal 6! ~ 5! // 6! and 5! are different 6! ~ 5!*6 // 6! and 5! * 6 are not different not(true) // true : constant. Not: function
Show RPN steps only
Include boolean features to library
Results :