SQRT, Cube Root, and Nth Root in Google Sheets

Published on

Want to calculate the square root, cube root, or any nth root in Google Sheets? This guide covers the built-in SQRT function, shows alternatives using POW, POWER, and ^, and explains how to compute cube and nth roots step-by-step.

SQRT Function in Google Sheets – Syntax and Usage

The SQRT function in Google Sheets is used to return the square root of a number. It’s categorized under the Math functions.

Syntax

SQRT(value)

Argument

  • value: A positive number for which to calculate the square root.

Example

=SQRT(36)

This returns 6, since 6 × 6 = 36.

Can I Use SQRT with a Negative Number?

No. If you try =SQRT(-36), it will return a #NUM! error. If you still want a result, you can wrap the value in ABS to return the square root of its absolute value:

=SQRT(ABS(-36))  → 6

Array Formula – Square Root of a Range

You can use SQRT with ARRAYFORMULA to calculate square roots of multiple numbers in a range.

If your values are in C1:C10, use:

=ARRAYFORMULA(SQRT(C1:C10))

This will return square roots in D1:D10. Blank or zero values will return 0.

Alternative Formulas for Square Root in Google Sheets

Although the SQRT function is straightforward, you can also use the following custom formulas which come in handy when calculating cube or nth roots:

=36^(1/2)
=POW(36, 1/2)
=POWER(36, 1/2)

These all return the same result as =SQRT(36).

These methods use the exponent of 1/2 to represent the square root and can be adapted to compute other roots.

Using the SQRT function and alternatives in Google Sheets to calculate the square root of a number

Cube Root Formula in Google Sheets

There’s no specific CUBEROOT function in Google Sheets. But you can calculate it using the same pattern used in the SQRT alternatives.

Cube Root Syntax in Google Sheets

=value^(1/3)
=POW(value, 1/3)
=POWER(value, 1/3)

Example – Cube Root of 216

To find the cube root of 216, use:

=216^(1/3)       → 6
=POW(216, 1/3)   → 6
=POWER(216, 1/3) → 6
Cube root calculation in Google Sheets using exponentiation, POW, and POWER functions

Nth Root Formula in Google Sheets

To find the nth root in Google Sheets, just replace 1/3 with 1/n in the cube root formulas.

Example: 5th Root of 3125

=3125^(1/5)       → 5
=POW(3125, 1/5)   → 5
=POWER(3125, 1/5) → 5
Calculate the nth root in Google Sheets, including 5th root examples using ^, POW, and POWER

This works because:

5^5 = 3125 → 5 × 5 × 5 × 5 × 5 = 3125

You can also reference a cell like B2 instead of typing the value directly:

=B2^(1/5)

Conclusion

  • Use SQRT(value) to return the square root of a positive number.
  • Use value^(1/3) or POW(value, 1/3) for cube roots.
  • For nth roots, use value^(1/n), adapting the exponent as needed.

These formulas make it easy to calculate square, cube, and nth roots dynamically in Google Sheets.

Prashanth KV
Prashanth KV
Your Trusted Google Sheets and Excel Expert Prashanth KV is a Diamond Product Expert in Google Sheets, officially recognized by Google for his contributions to the Docs Editors Help Community and featured in the Google Product Experts Directory. Explore his blog to learn advanced formulas, automation tips, and problem-solving techniques to elevate your spreadsheet skills.

Top Discussions

More like this

Pivot Table Formatting, Output & Special Behavior in Google Sheets

Pivot Tables in Google Sheets are powerful—but they can get tricky once you move...

Pivot Table Calculations & Advanced Metrics in Google Sheets

When it comes to built-in tools for data analysis and visualization in Google Sheets,...

Google Sheets Pivot Table Tutorial: Basics, Setup, and Date Grouping

The easiest way to summarize, analyze, and report data in Google Sheets is by...

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.