8
Views
1
Comments
[Formula] Question to answer 10^(1/2)
Question
formula
Service icon
Forge asset by Caio Santana Magalhães
Application Type
Service

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.

UserImage.jpg
Maykell Ribeiro

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)

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.