How to take nth sqare root in Numbers?

I completely understand how to use SQRT in Numbers to get the sqaure root of any number.


But Im having difficulty figuring out the proper notation to specify the nth square root of a number.


The n value does not matter, only the symbol for its recognition.


For instance, and Im making this up, but it is the kind of problem I would like to automate at some point. For now, just really need the correct way to set up the formula. How do I solve for 6 (6 is superscript in written math notation) SQRT {2.789} Wish I could just write the very simple problem in handwritten script so there would be no confusion.


Ive used a lot of symbols denoting diffrent meanings depending on the program or order in which they or the integer in this case is presented with regards to the automated sqare root function in Numbers. No luck getting the correct answer. Even tried what looked like decent reverse Polish notation, Of course that went no where.


Whatever I’m missing I apologize because it has to be really simple.


I can get the answer from any scientific calculator, but as said, I need to automate it into a larger formula.


This is in iOS 12.

iPad Pro 9.7-inch WiFi, Cellular, iOS 12

Posted on Sep 20, 2018 10:49 PM

Reply
Question marked as ⚠️ Top-ranking reply

Posted on Sep 21, 2018 12:06 AM

Hi Chester,


to find the nth root of a number, raise it to the power of 1/n

Square root (SQRT) is number ^(1/2)

Cube root is number ^(1/3)

User uploaded file

Formula in B2 (and Fill Down) =$A2^(1÷2)

Formula in C2 (and Fill Down) =$A2^(1÷3)


Regards,

Ian.

2 replies
Sort By: 
Question marked as ⚠️ Top-ranking reply

Sep 21, 2018 12:06 AM in response to chester15

Hi Chester,


to find the nth root of a number, raise it to the power of 1/n

Square root (SQRT) is number ^(1/2)

Cube root is number ^(1/3)

User uploaded file

Formula in B2 (and Fill Down) =$A2^(1÷2)

Formula in C2 (and Fill Down) =$A2^(1÷3)


Regards,

Ian.

Reply

Sep 21, 2018 12:16 AM in response to chester15

Hi Chester,


"This is in iOS 12."


Numbers for Mac (the topic in this community) won't run in iOS (any version), but the formula will be the same in th iOS version.


The square root of a number is a specific root—the one that when multiplied by itself results in the number of which it is the square root. There is no "nth square root".


But there is an "nth root", which I suspect is what you are looking for.


The nth root of a number is the same value as the inverse nth power of that number.

Here are two examples showing how to write the formula.

User uploaded file


The formula in B2 uses the SQRT function: SQRT(A2)

Useful, but not scalable to calculate other roots (or powers) of the number.


For a scaleable formula, we can use the POWER function or the 'power' operator ( ^ ).


D2: POWER(A2,1/C2)


or


E2: A2^(1/C2)


The POWER function takes two arguments: the first is the number, the second is the power to which the number is to be 'raised'. Because the function calculates the value of each argument separately, it's not necessary to use 'do me first' brackets to enclose the division in the second argument ( 1/C2).


In the alternate formula, using the power operator, the calculation follows the usual order of operations: Brackets, powers, multiplication and division, addition and subtraction.

Without the brackets (parentheses), this formula would raise the number in A2 to its first power, then divide that result by the number in column C. For the values in the example, the result in E2 would be 6^1 (6) /2 = 3.

With the brackets, the result in E2 is: (1/6=0.1666666...) >> 2^0.1666666...= 2.449489... (as shown above).


Either formula will give the same results, as can be seen above.


Regards,

Barry

Reply

This thread has been closed by the system or the community team. You may vote for any posts you find helpful, or search the Community for additional answers.

How to take nth sqare root in Numbers?

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.