Number - Root function

Data System Architecture

About

The root function is the inverse operation of the exponentiation.

<MATH> b^n = a </MATH>

  • the base b can be defined back with the root function as:

<MATH> b = \sqrt[n]{a} = a^{\frac{1}{n}} </MATH>

If you need to get the exponent n (power), the operation is not the root function but the logarithm <MATH> n = log_b(a) </MATH>

Custom

Square Root

square root is the inverse of the square operation

  • If

<MATH> y^2 = x </MATH>

  • then

<MATH> y^{\frac{1}{2}} = \sqrt[2]y = \sqrt{y} = x </MATH>

Every positive number x has two square roots:

  • a positive number known as the principal square root and denoted:
  • a negative number:
    • <math>-\sqrt {x}</math>
    • or <math>-x^{\frac{1}{2}}</math>

For example: The square roots of 9 are:

  • 3 denoted as <math>\sqrt9</math>
  • and −3 denoted as <math>-\sqrt9</math>

Documentation / Reference





Discover More
Data System Architecture
Mathematics - Exponentiation (square, cube) - Power

Exponentiation is a binary operation involving two numbers: the base (b) the exponent (n) (or index or power). In text notation or computer language, generally the exponentiation operator...
Math Domain
Mathematics - Inverse axiom

/ is inverse of - is inverse of + root is the inverse of exponentiation Functions f and g are functional inverses if: and are defined and are functions.
Data System Architecture
Mathematics - Square (Quadratus)

is usually read as b squared. See Quadratus is Latin for square. The inverse function of square is the square root.
Number System - Imaginary Number

An imaginary numberi is one solution to and is a part of the definition of a complex number It was invented because formulas sometimes required the manipulation of square roots of negative numbers....



Share this page:
Follow us:
Task Runner