JXN Simplified Syntax

 verbose
 (Java Syntax)
 ≡ shortcut
 possible in JXN
 verbose
 (Java Syntax)
 ≡ shortcut
 possible in JXN
 a * b a b  a * pow( b, c ) * d a b^c d
 Math.sqrt(a) sqrt a   sqrt(a) * sqrt(b) sqrt a * sqrt b
 sqrt(a) sqrt b
 Math.pow( a, b )  a^b  or  a**b  pow( a, b ) * pow( c, d ) a^b c^d
 pow( sqrt( a * b ), c ) sqrt( a b )^c
 a * b * c a b c  sqrt( pow( a, b ) ) * c sqrt a^b * c
 a * pow( b, c ) a b^c  sqrt( a * pow( b, c ) ) sqrt a b^c
 pow( a, b ) * c a^b c  sqrt( pow( a, b ) * c ) sqrt a^b c
 pow( a * b, c ) ( a b )^c  sqrt( pow( a * b, c ) ) sqrt( ( a b )^c ) 
 pow( a, b * c ) a^( b c )  sqrt( pow( a, b * c ) ) sqrt a^( b c )
 pow( a, pow( b, c ) ) a^(b^c)
 a^b^c
 sqrt( pow( a, pow( b, c ) ) ) sqrt a^b^c
 pow( pow( a, b ), c ) ( a^b )^c  sqrt( a * b ) * c sqrt( a b ) c
 sqrt a b * c
 a * sqrt(b) a sqrt b  sqrt( a * sqrt(b) ) sqrt a sqrt b
 pow( a, sqrt(b) ) a^sqrt b  sqrt( pow( a, sqrt(b) ) ) sqrt a^sqrt b
 sqrt(a) * b sqrt(a) b
 sqrt a * b
 (sqrt a) b
 sqrt( sqrt(a) * b ) sqrt sqrt(a) b
 sqrt( a * b )  sqrt a b  sqrt( sqrt( a * b ) )  sqrt sqrt a b
 pow( sqrt(a), b ) (sqrt a)^b
 sqrt(a)^b
 sqrt( pow( sqrt(a), b ) ) sqrt sqrt(a)^b
 sqrt( pow( a, b ) ) sqrt a^b  sqrt( sqrt( pow( a, b ) ) ) sqrt sqrt a^b
 sqrt( sqrt(a) ) sqrt sqrt a  sqrt( sqrt(a) ) * b sqrt sqrt a * b