Skip to main content

How Do You Type A Cubed Root?

by
Last updated on 2 min read
Type x^(1/3) for the fastest cube root across any platform.

What's Happening

A cube root finds the number that, when multiplied by itself three times, gives your starting value.

Forget special symbols—most digital tools use fractional exponents (like 1/3) to represent roots. This trick works everywhere from spreadsheets to programming languages without hunting for obscure characters.

Step-by-Step Solution

Plug your number into x^(1/3) in these common tools.
  1. In Excel or Google Sheets:

    Type =x^(1/3) in any cell. Swap x for your actual number or cell reference (like =A1^(1/3)). Hit Enter—Excel does the math instantly.

  2. In Google Search:

    Just type either cube root of 27 or 27^(1/3). Google spits out the answer without fussing over formatting.

  3. In Python (any version):

    Use x**(1/3). For example:

    print(27**(1/3))  # Output: 3.0

    (Python’s floating-point math means you’ll sometimes see decimals, like 8**(1/3) giving 2.0.)

  4. In Microsoft Word 2024 or later:

    Type x^(1/3). Highlight the (1/3) part, then go to Home > Font > Subscript to shrink and lower it. Need to toggle subscript quickly? Press Ctrl+Shift+=.

If This Didn't Work

Try these alternatives when the standard method fails.
  • Need a symbol instead?
    • (U+221B): Hit Win + . to open Windows’ emoji panel, type "cube root," and select it.
    • In Word: Type 221B, then press Alt + X.
  • Using a calculator (TI-84 or similar):

    Press MATH > 4:∛(, type your number, close the parenthesis, and you’re done. Example: ∛(27).

  • Mobile keyboard (iOS/Android):

    Open your calculator app, tap 2nd, then ^, and enter (1/3). Close the parenthesis and press Enter—most modern calculator apps handle this syntax just fine.

Prevention Tips

Stick to these syntax rules to avoid errors across platforms.
Platform Recommended Syntax Notes
Excel/Google Sheets =x^(1/3) Handles positive and negative values. Fails on even roots with negatives.
Python x**(1/3) For negative cube roots, use abs(x)**(1/3) (e.g., (-8)**(1/3) gives 2.0 in Python 3.11+).
Word/LaTeX \sqrt[3]{x} or x^{1/3} LaTeX users: \sqrt[3]{x} looks polished. Word users: stick with x^(1/3) and format the exponent.
Web Browsers Math.sqrt(x) or x**(1/3) JavaScript has Math.cbrt(x) built in for cube roots specifically.

Test your expression with a known cube (like 8^(1/3) = 2) before trusting it with real work.

David Okonkwo
Author

David Okonkwo holds a PhD in Computer Science and has been reviewing tech products and research tools for over 8 years. He's the person his entire department calls when their software breaks, and he's surprisingly okay with that.

How Do You Zoom In UT?How Do I Know My Allen Key Size?