Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the rocket domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/practical-tips.com/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the soledad domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/practical-tips.com/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the soledad domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/practical-tips.com/wp-includes/functions.php on line 6114
Excel: Calculate nth root and co-tangent - Practical Tips

Excel: Calculate nth root and co-tangent

by Pramith

Using Excel, you can calculate nth roots and the co-tangent. However, there is no direct function input for root extraction.

Excel: calculate nth root and co-tangent

Excel does not offer any special functions for the task described. However, the task can be easily rewritten mathematically and reduced to another function:

  • The nth root means nothing other than the 1/nth power of a value. To calculate the nth root of the value x, you can therefore type the following function into any cell in Excel: “=POTENCE(x;1/n)”. Alternatively, this also works with “=x^(1/n) ”
  • The calculation of the co-tangent can be traced back to the tangent. The co-tangent of a value is the same as 1 divided by the tangent of this value. When calculating, however, you must always bear in mind that Excel expects the angle arguments in radians.
  • To calculate the co-tangent of an angle “a” in degrees, enter the function “=1/TAN(BOGENMASS(a))”. Alternatively, you can also calculate the co-tangent with “=1/TAN(a*PI()/180)”.

Related Articles

Leave a Comment