I'm trying to calculate a formula using the value 10^(1/2), but the component is not considering the value of 10^(1/2) which would be 3.16227766and yes 1.Could anyone tell me how I should put together this formula?For example: 10*10^(1/2), should return 31.6227766 and using the component is returning 10.
I managed to find 2 solutions to the above problem.We can use the floor() function on the first number of the division, which would be the smallest, or write it as a decimal.Examples:
10^(Floor(1)/2)
10^(1.0/2)