
If you are interested in the history of root symbols head to the square root calculator, where we discuss it.
Look up surd in Wiktionary, the free dictionary.
Look up radical in Wiktionary, the free dictionary.
If N is an approximation to , a better approximation can be found by using the Taylor series of the square root function:
The radical or root may be represented by the infinite series:
with <span data-src="https://wikimedia.org/api/rest_v1/media/math/render/svg/2f9498d60b2319a4ae7c5607794b537c559a976d" data-alt="|x| . This expression can be derived from the binomial series.
- J.M. McNamee: «Numerical Methods for Roots of Polynomials — Part I», Elsevier (2007).
- J.M. McNamee and Victor Pan: «Numerical Methods for Roots of Polynomials — Part II», Elsevier (2013).
An unknown Babylonian mathematician somehow correctly calculated the square root of 2 to three sexagesimal «digits» after the 1, but it is not known exactly how. The Babylonians knew how to approximate a hypotenuse using
The denominator in the fraction corresponds to the nth root. In the case above the denominator is 2, hence the equation specifies that the square root is to be found. The same identity is used when computing square roots with logarithm tables or slide rules.
- Lucas sequence method
- A two-variable iterative method
- Combinations of methods
- Iterative methods for reciprocal square roots
- False position (regula falsi)
- Worst case for convergence
- Frequently Asked Question:
- What is the value of zero by 2?
- What is the solution of 0 2?
- What is the value of 0 *?
- Is 0 a perfect square?
- Is 0 a perfect number?
- Is 0 A square number Yes or no?
- Why is not a perfect square?
- Is the square root of 0 undefined?
- Is 0 a square number?
- Is Root 0 defined?
- What is the square of 1?
- What happens when you square a number by 0?
- Can you have 0 in a square root?
- What is the value of a square 0?
- Is 0 considered a perfect square?
- Is zero a square number?
- Is a perfect square Yes or no?
- Roots of unity
- Newton’s method (and similar derivative-based methods)
- Fixed point iteration method
- Continued fraction expansion
- Cube root function and graph
- Nth root calculator
- What is a square root of 0?
- How do I find the cube root on a regular calculator?
- How to use this rational zeros calculator?
- FAQ
- How do I find the cube root of a product?
- What is the cube root of -8/27?
- How do I write the cube root on a computer?
- What is a square root of 1?
- Is the square root of 0 undefined?
- Find the Square Root: √0
- Images related to the topicFind the Square Root: √0
- Rational root test
- Computing principal roots
- Using Newton’s method
- Digit-by-digit calculation of principal roots of decimal (base 10) numbers
- Is zero perfect square?
- Is 0 rational or irrational?
- See some more details on the topic square root of zero here
- What is the square root of 0? [Solved] – Cuemath
- What is the square root of 0 (more specifically, is there a …
- Square Root of 0
- What square root is undefined?
- Proof of irrationality for non-perfect nth power x
- Rational root theorem (rational zero theorem)
- Negative or complex square
- Is square root 0 irrational?
- What is the value of square of zero?
- Simplified form of a radical expression
- What happens when you square 0?
- Examples of cube root questions
- Is zero a rational number?
- What is the square root of zero?
- Images related to the topicWhat is the square root of zero?
- Information related to the topic square root of zero
- Identities and properties
- What is the cube root of
- How to find actual rational zeros?
- How to find all possible rational zeros?
- Is zero perfect square?
- Finding roots in higher dimensions
- Why is 0th power 1?
- How to find possible rational zeros?
- What is a rational zero?
- How to calculate cube root in your head?
- Is zero a real number?
- Does negative zero exist?
- Can you use the rational zero test?
- Can 0 be a root of a quadratic equation?
- What is root4?
- Square Roots – Program Zero
- Images related to the topicSquare Roots – Program Zero
- Most common values — perfect cubes list
- Three solutions of the cube root
- What is to the power of 0?
- Approximations that depend on the floating point representation
- Reciprocal of the square root
- Definition and notation
- Cube root definition
Lucas sequence method
the Lucas sequence of the first kind Un(P,Q) is defined by the recurrence relations:
and the characteristic equation of it is:
it has the discriminant and the roots:
so when we want , we can choose and , and then calculate using and for large value of .
The most effective way to calculate and is:
then when :
A two-variable iterative method
The initialization step of this method is
while the iterative steps read
Then, (while ).
The convergence of , and therefore also of , is quadratic.
The proof of the method is rather easy. First, rewrite the iterative definition of as
- .
Then it is straightforward to prove by induction that
This can be used to construct a rational approximation to the square root by beginning with an integer. If is an integer chosen so is close to , and is the difference whose absolute value is minimized, then the first iteration can be written as:
Using the same example as given with the Babylonian method, let Then, the first iteration gives
Likewise the second iteration gives
It was once conjectured that all polynomial equations could be solved algebraically (that is, that all roots of a polynomial could be expressed in terms of a finite number of radicals and elementary operations). However, while this is true for third degree polynomials (cubics) and fourth degree polynomials (quartics), the Abel–Ruffini theorem (1824) shows that this is not true in general when the degree is 5 or greater. For example, the solutions of the equation
cannot be expressed in terms of radicals. (cf. quintic equation)
- In addition to the principal square root, there is a negative square root equal in magnitude but opposite in sign to the principal square root, except for zero, which has double square roots of zero.
- The factors two and six are used because they approximate the geometric means of the lowest and highest possible values with the given number of digits: and .
- The unrounded estimate has maximum absolute error of 2.65 at 100 and maximum relative error of 26.5% at y=1, 10 and 100
- If the number is exactly half way between two squares, like 30.5, guess the higher number which is 6 in this case
- This is incidentally the equation of the tangent line to y=x2 at y=1.
Combinations of methods
Brent’s method is a combination of the bisection method, the secant method and inverse quadratic interpolation. At every iteration, Brent’s method decides which method out of these three is likely to do best, and proceeds by doing a step according to that method. This gives a robust and fast method, which therefore enjoys considerable popularity.
Ridders’ method is a hybrid method that uses the value of function at the midpoint of the interval to perform an exponential interpolation to the root. This gives a fast convergence with a guaranteed convergence of at most twice the number of iterations as the bisection method.
Many root-finding processes work by interpolation. This consists in using the last computed approximate values of the root for approximating the function by a polynomial of low degree, which takes the same values at these approximate roots. Then the root of the polynomial is computed and used as a new approximate value of the root of the function, and the process is iterated.
Two values allow interpolating a function by a polynomial of degree one (that is approximating the graph of the function by a line). This is the basis of the secant method. Three values define a quadratic function, which approximates the graph of the function by a parabola. This is Muller’s method.
Regula falsi is also an interpolation method, which differs from the secant method by using, for interpolating by a line, two points that are not necessarily the last two computed points.
Welcome to the rational zeros calculator! It helps you perform the rational root test, that is, listing all possible rational zeros of an integer-coefficient polynomial. The calculator does it with help of the rational root theorem to accurately find the rational zeros of your polynomial.
If you aren’t sure what finding rational zeros is all about, don’t worry. Scroll down, we’ll tell you what a rational zero is, what the rational zero theorem says, and how to find all possible rational zeros of a given polynomial. Then, we’ll explain how to decide if a possible rational root is an actual root. In just a few paragraphs you’ll be an expert on the rational zero test!
Are you wondering how to find the rational roots of just a good old quadratic equation? If so, then our quadratic formula calculator will be perfect for you! We also have a dedicated cubic equation calculator!
- Bansal, R.K. (2006). New Approach to CBSE Mathematics IX. Laxmi Publications. p. 25. ISBN 978-81-318-0013-3.
- Silver, Howard A. (1986). Algebra and trigonometry. Englewood Cliffs, NJ: Prentice-Hall. ISBN 978-0-13-021270-2.
- «Definition of RADICATION». www.merriam-webster.com.
- «radication – Definition of radication in English by Oxford Dictionaries». Oxford Dictionaries. Archived from the original on April 3, 2018.
- «Earliest Known Uses of Some of the Words of Mathematics». Mathematics Pages by Jeff Miller. Retrieved .
- McKeague, Charles P. (2011). Elementary algebra. p. 470. ISBN 978-0-8400-6421-9.
- B.F. Caviness, R.J. Fateman, «Simplification of Radical Expressions», Proceedings of the 1976 ACM Symposium on Symbolic and Algebraic Computation, p. 329.
- Richard Zippel, «Simplification of Expressions Involving Radicals», Journal of Symbolic Computation 1:189–210 (1985) doi:10.1016/S0747-7171(85)80014-6.
- Wantzel, M. L. (1837), «Recherches sur les moyens de reconnaître si un Problème de Géométrie peut se résoudre avec la règle et le compas», Journal de Mathématiques Pures et Appliquées, 1 (2): 366–372.
Iterative methods for reciprocal square roots
- Applying Newton’s method to the equation produces a method that converges quadratically using three multiplications per step:
- Another iteration is obtained by Halley’s method, which is the Householder’s method of order two. This converges cubically, but involves five multiplications per iteration:[]
- , and
- .
- If doing fixed-point arithmetic, the multiplication by 3 and division by 8 can implemented using shifts and adds. If using floating-point, Halley’s method can be reduced to four multiplications per iteration by precomputing and adjusting all the other constants to compensate:
- , and
- .
The first way of writing Goldschmidt’s algorithm begins
- (typically using a table lookup)
until is sufficiently close to 1, or a fixed number of iterations. The iterations converge to
- , and
- .
Note that it is possible to omit either and from the computation, and if both are desired then may be used at the end rather than computing it through in each iteration.
A second form, using fused multiply-add operations, begins
- (typically using a table lookup)
until is sufficiently close to 0, or a fixed number of iterations. This converges to
- , and
- .
Bracketing methods determine successively smaller intervals (brackets) that contain a root. When the interval is small enough, then a root has been found. They generally use the intermediate value theorem, which asserts that if a continuous function has values of opposite signs at the end points of an interval, then the function has at least one root in the interval. Therefore, they require to start with an interval such that the function takes opposite signs at the end points of the interval. However, in the case of polynomials there are other methods (Descartes’ rule of signs, Budan’s theorem and Sturm’s theorem) for getting information on the number of roots in an interval. They lead to efficient algorithms for real-root isolation of polynomials, which ensure finding all real roots with a guaranteed accuracy.
False position (regula falsi)
The false position method, also called the regula falsi method, is similar to the bisection method, but instead of using bisection search’s middle of the interval it uses the -intercept of the line that connects the plotted function values at the endpoints of the interval, that is
False position is similar to the secant method, except that, instead of retaining the last two points, it makes sure to keep one point on either side of the root. The false position method can be faster than the bisection method and will never diverge like the secant method; however, it may fail to converge in some naive implementations due to roundoff errors that may lead to a wrong sign for ; typically, this may occur if the rate of variation of is large in the neighborhood of the root.
«Heron’s method» redirects here. For the formula used to find the area of a triangle, see Heron’s formula.
More precisely, if is our initial guess of and is the error in our estimate such that S = (x+ ε)2, then we can expand the binomial
and solve for the error term
- since .
Therefore, we can compensate for the error and update our old estimate as
- Begin with an arbitrary positive starting value (the closer to the actual square root of , the better).
- Let xn + 1 be the average of and (using the arithmetic mean to approximate the geometric mean).
- Repeat step 2 until the desired accuracy is achieved.
It can also be represented as:
This algorithm works equally well in the -adic numbers, but cannot be used to identify real square roots with -adic square roots; one can, for example, construct a sequence of rational numbers by this method that converges to +3 in the reals, but to −3 in the 2-adics.
To calculate , where = 125348, to six significant figures, use the rough estimation method above to get
Therefore, ≈ 354.045.
Semilog graphs comparing the speed of convergence of Heron’s method to find the square root of 100 for different initial guesses. Negative guesses converge to the negative root, positive guesses to the positive root. Note that values closer to the root converge faster, and all approximations are overestimates. In the SVG file, hover over a graph to display its points.
Suppose that x0 > 0 and S > 0. Then for any natural number n, xn > 0. Let the relative error in xn be defined by
- -1}» data-class=»mwe-math-fallback-image-inline»>
Then it can be shown that
And thus that
and consequently that convergence is assured, and quadratic.
Worst case for convergence
- <span data-src="https://wikimedia.org/api/rest_v1/media/math/render/svg/97b965d9c243f4fa62fe825c21a5c171a8e5d8c2" data-alt="{\begin{aligned}S&=1;&x_{0}&=2;&x_{1}&=1.250;&\varepsilon _{1}&=0.250.\\S&=10;&x_{0}&=2;&x_{1}&=3.500;&\varepsilon _{1}&<0.107.\\S&=10;&x_{0}&=6;&x_{1}&=3.833;&\varepsilon _{1}&<0.213.\\S&=100;&x_{0}&=6;&x_{1}&=11.333;&\varepsilon _{1}&
Thus in any case,
- <span data-src="https://wikimedia.org/api/rest_v1/media/math/render/svg/5421d029f479921e0c154a095df9a6314eab837a" data-alt="\varepsilon _{2}<2^{-5}
- <span data-src="https://wikimedia.org/api/rest_v1/media/math/render/svg/edfb1c400b6a50ee05f9788500fdb114d6201ec8" data-alt="\varepsilon _{3}<2^{-11}
- <span data-src="https://wikimedia.org/api/rest_v1/media/math/render/svg/3bc199c55d6ae1f04351b7b7aae217d0fb9a5b21" data-alt="\varepsilon _{4}<2^{-23}
- <span data-src="https://wikimedia.org/api/rest_v1/media/math/render/svg/b3425039f9411fb9109b4174cb04d837dc38fe81" data-alt="\varepsilon _{5}<2^{-47}
- <span data-src="https://wikimedia.org/api/rest_v1/media/math/render/svg/d73f882414b129be7dc41538e4ce0d60c51891d7" data-alt="\varepsilon _{6}<2^{-95}
- <span data-src="https://wikimedia.org/api/rest_v1/media/math/render/svg/bb09dcdf99c0c344075f8f6097c36fa976be0469" data-alt="\varepsilon _{7}<2^{-191}
- <span data-src="https://wikimedia.org/api/rest_v1/media/math/render/svg/ca951a28fe668eb7abc2f3e5af2b968c1689f5c5" data-alt="\varepsilon _{8}<2^{-383}
Rounding errors will slow the convergence. It is recommended to keep at least one extra digit beyond the desired accuracy of the being calculated to minimize round off error.
- Press, W. H.; Teukolsky, S. A.; Vetterling, W. T.; Flannery, B. P. (2007). «Chapter 9. Root Finding and Nonlinear Sets of Equations». Numerical Recipes: The Art of Scientific Computing (3rd ed.). New York: Cambridge University Press. ISBN 978-0-521-88068-8.
- Mourrain, B.; Vrahatis, M. N.; Yakoubsohn, J. C. (2002-06-01). «On the Complexity of Isolating Real Roots and Computing with Certainty the Topological Degree». Journal of Complexity. 18 (2): 612–640. doi:10.1006/jcom.2001.0636. ISSN 0885-064X.
- Vrahatis, Michael N. (2020). Sergeyev, Yaroslav D.; Kvasov, Dmitri E. (eds.). «Generalizations of the Intermediate Value Theorem for Approximating Fixed Points and Zeros of Continuous Functions». Numerical Computations: Theory and Algorithms. Lecture Notes in Computer Science. Cham: Springer International Publishing. 11974: 223–238. doi:10.1007/978-3-030-40616-5_17. ISBN 978-3-030-40616-5. S2CID 211160947.
- «Iterative solution of nonlinear equations in several variables». Guide books. Retrieved .
- Stenger, Frank (1975-03-01). «Computing the topological degree of a mapping inRn». Numerische Mathematik. 25 (1): 23–38. doi:10.1007/BF01419526. ISSN 0945-3245. S2CID 122196773.
- Kearfott, Baker (1979-06-01). «An efficient degree-computation method for a generalized method of bisection». Numerische Mathematik. 32 (2): 109–127. doi:10.1007/BF01404868. ISSN 0029-599X. S2CID 122058552.
- Vrahatis, M. N.; Iordanidis, K. I. (1986-03-01). «A rapid Generalized Method of Bisection for solving Systems of Non-linear Equations». Numerische Mathematik. 49 (2): 123–138. doi:10.1007/BF01389620. ISSN 0945-3245.
- Vrahatis, Michael N. (2020-04-15). «Intermediate value theorem for simplices for simplicial approximation of fixed points and zeros». Topology and its Applications. 275: 107036. doi:10.1016/j.topol.2019.107036. ISSN 0166-8641.
Solving an equation f(x) = g(x) is the same as finding the roots of the function h(x) = f(x) – g(x). Thus root-finding algorithms allow solving any equation defined by continuous functions. However, most root-finding algorithms do not guarantee that they will find all the roots; in particular, if such an algorithm does not find any root, that does not mean that no root exists.
Most numerical root-finding methods use iteration, producing a sequence of numbers that hopefully converges towards the root as its limit. They require one or more initial guesses of the root as starting values, then each iteration of the algorithm produces a successively more accurate approximation to the root. Since the iteration must be stopped at some point, these methods produce an approximation to the root, not an exact solution. Many methods compute subsequent values by evaluating an auxiliary function on the preceding values. The limit is thus a fixed point of the auxiliary function, which is chosen for having the roots of the original equation as fixed points, and for converging rapidly to these fixed points.
The behavior of general root-finding algorithms is studied in numerical analysis. However, for polynomials, root-finding study belongs generally to computer algebra, since algebraic properties of polynomials are fundamental for the most efficient algorithms. The efficiency of an algorithm may depend dramatically on the characteristics of the given functions. For example, many algorithms use the derivative of the input function, while others work on every continuous function. In general, numerical algorithms are not guaranteed to find all the roots of a function, so failing to find a root does not prove that there is no root. However, for polynomials, there are specific algorithms that use algebraic properties for certifying that no root is missed, and locating the roots in separate intervals (or disks for complex roots) that are small enough to ensure the convergence of numerical methods (typically Newton’s method) to the unique root so located.
Furthermore, What is the square of 0?, Squares From 02 to 62
Finally, Why is 0 a perfect square?, 1 Answer. A perfect square is the square of an integer – or nonnegative integer, without loss of generality, since (−x)2=x2. Since 0=02, 0 is a perfect square.
Frequently Asked Question:
What is the value of zero by 2?
Answer: The absolute value of 0/2 is 0.
What is the solution of 0 2?
It was not helpful to have multiplied both sides of the equation by zero. It would have been better to have started by subtracting x from both sides, resulting in 0 = 2, resulting in a false statement telling us that there are no solutions. There is no solution.
What is the value of 0 *?
Since 0 is zero units away from itself, the absolute value of 0 is just 0.
Is 0 a perfect square?
A perfect square is the square of an integer – or nonnegative integer, without loss of generality, since (−x)2=x2. Since 0=02, 0 is a perfect square.
Is 0 a perfect number?
By the wikipedia definition, a perfect number is a positive integer, so 0 is not a perfect number. In terms of divisors, 0 behaves very differently from positive numbers, so to make statements about numbers that generally work similarly, we exclude it.
Is 0 A square number Yes or no?
Why is not a perfect square?
Is the square root of 0 undefined?
When accounting for complex and higher-order arithmetic, unless I’m terribly mistaken (which might be the case), dividing a number by (one of) its square root(s) gives (one of) its square root(s) for all values except zero, because division by zero is undefined.
Is 0 a square number?
1 Answer. A perfect square is the square of an integer – or nonnegative integer, without loss of generality, since (−x)2=x2. Since 0=02, 0 is a perfect square.
Is Root 0 defined?
What is the square of 1?
List of Square Root from 1 to 100
What happens when you square a number by 0?
Can you have 0 in a square root?
What is the value of a square 0?
The √0 will be equal to 0 because 02=0 .
Is 0 considered a perfect square?
1 Answer. A perfect square is the square of an integer – or nonnegative integer, without loss of generality, since (−x)2=x2. Since 0=02, 0 is a perfect square.
Is zero a square number?
Yes. You do. Zero is a whole number.
Is a perfect square Yes or no?
A: Yes, the number 1 is a perfect square.
Methods of computing square roots are numerical analysis algorithms for approximating the principal, or non-negative, square root (usually denoted
,
, or
) of a real number. Arithmetically, it means given
, a procedure for finding a number which when multiplied by itself, yields
; algebraically, it means a procedure for finding the non-negative root of the equation
; geometrically, it means given two line segments, a procedure for constructing their geometric mean.
The continued fraction representation of a real number can be used instead of its decimal or binary expansion and this representation has the property that the square root of any rational number (which is not already a perfect square) has a periodic, repeating expansion, similar to how rational numbers have repeating expansions in the decimal notation system.
The method employed depends on what the result is to be used for (i.e. how accurate it has to be), how much effort one is willing to put into the procedure, and what tools are at hand. The methods may be roughly classified as those suitable for mental calculation, those usually requiring at least paper and pencil, and those which are implemented as programs to be executed on a digital electronic computer or other computing device. Algorithms may take into account convergence (how many iterations are required to achieve a specified precision), computational complexity of individual operations (i.e. division) or iterations, and error propagation (the accuracy of the final result).
Procedures for finding square roots (particularly the square root of 2) have been known since at least the period of ancient Babylon in the 17th century BCE. Heron’s method from first century Egypt was the first ascertainable algorithm for computing square root. Modern analytic methods began to be developed after introduction of the Arabic numeral system to western Europe in the early Renaissance. Today, nearly all computing devices have a fast and accurate square root function, either as a programming language construct, a compiler intrinsic or library function, or as a hardware operator, based on one of the described procedures.
Every complex number other than 0 has n different nth roots.
The two square roots of a complex number are always negatives of each other. For example, the square roots of are and , and the square roots of are
If we express a complex number in polar form, then the square root can be obtained by taking the square root of the radius and halving the angle:
A principal root of a complex number may be chosen in various ways, for example
which introduces a branch cut in the complex plane along the positive real axis with the condition , or along the negative real axis with .
Using the first(last) branch cut the principal square root maps to the half plane with non-negative imaginary(real) part. The last branch cut is presupposed in mathematical software like Matlab or Scilab.
Roots of unity
The number 1 has n different nth roots in the complex plane, namely
These roots are evenly spaced around the unit circle in the complex plane, at angles which are multiples of . For example, the square roots of unity are 1 and −1, and the fourth roots of unity are 1, , −1, and .
Every complex number has n different nth roots in the complex plane. These are
In polar form, a single nth root may be found by the formula
Here r is the magnitude (the modulus, also called the absolute value) of the number whose root is to be taken; if the number can be written as a+bi then . Also, is the angle formed as one pivots on the origin counterclockwise from the positive horizontal axis to a ray going from the origin to the number; it has the properties that and
Thus finding nth roots in the complex plane can be segmented into two steps. First, the magnitude of all the nth roots is the nth root of the magnitude of the original number. Second, the angle between the positive horizontal axis and a ray from the origin to one of the nth roots is , where is the angle defined in the same way for the number whose root is being taken. Furthermore, all n of the nth roots are at equally spaced angles from each other.
If n is even, a complex number’s nth roots, of which there are an even number, come in additive inverse pairs, so that if a number r1 is one of the nth roots then r2 = –r1 is another. This is because raising the latter’s coefficient –1 to the nth power for even n yields 1: that is, (–r1)n = (–1)n × r1n = r1n.
As with square roots, the formula above does not define a continuous function over the entire complex plane, but instead has a branch cut at points where θ / n is discontinuous.
In mathematics, an nth root of a number x is a number r which, when raised to the power n, yields x:
where n is a positive integer, sometimes called the degree of the root. A root of degree 2 is called a square root and a root of degree 3, a cube root. Roots of higher degree are referred by using ordinal numbers, as in fourth root, twentieth root, etc. The computation of an th root is a root extraction.
For example, 3 is a square root of 9, since 32 = 9, and −3 is also a square root of 9, since (−3)2 = 9.
Any non-zero number considered as a complex number has different complex th roots, including the real ones (at most two). The th root of 0 is zero for all positive integers , since 0n = 0. In particular, if is even and is a positive real number, one of its th roots is real and positive, one is negative, and the others (when ) are non-real complex numbers; if is even and is a negative real number, none of the th roots is real. If is odd and is real, one th root is real and has the same sign as , while the other () roots are not real. Finally, if is not real, then none of its th roots are real.
Roots of real numbers are usually written using the radical symbol or radix
, with
denoting the positive square root of if is positive; for higher roots,
denotes the real th root if is odd, and the positive nth root if is even and is positive. In the other cases, the symbol is not commonly used as being ambiguous. In the expression
, the integer n is called the index and is called the radicand.
When complex th roots are considered, it is often useful to choose one of the roots, called principal root, as a principal value. The common choice is to choose the principal th root of as the th root with the greatest real part, and when there are two (for real and negative), the one with a positive imaginary part. This makes the th root a function that is real and positive for real and positive, and is continuous in the whole complex plane, except for values of that are real and negative.
A difficulty with this choice is that, for a negative real number and an odd index, the principal th root is not the real one. For example,
has three cube roots,
,
and
The real cube root is
and the principal cube root is
Roots can also be defined as special cases of exponentiation, where the exponent is a fraction:
Roots are used for determining the radius of convergence of a power series with the root test. The th roots of 1 are called roots of unity and play a fundamental role in various areas of mathematics, such as number theory, theory of equations, and Fourier transform.
Abramowitz, Miltonn; Stegun, Irene A. (1964). Handbook of mathematical functions with formulas, graphs, and mathematical tables. Courier Dover Publications. p. 17. ISBN 978-0-486-61272-0.
Bailey, David; Borwein, Jonathan (2012). «Ancient Indian Square Roots: An Exercise in Forensic Paleo-Mathematics» . American Mathematical Monthly. Vol. 119, no. 8. pp. 646–657. Retrieved .
Campbell-Kelly, Martin (September 2009). «Origin of Computing». Scientific American. 301 (3): 62–69. Bibcode:2009SciAm.301c..62C. doi:10.1038/scientificamerican0909-62. JSTOR 26001527. PMID 19708529.
Cooke, Roger (2008). Classical algebra: its nature, origins, and uses. John Wiley and Sons. p. 59. ISBN 978-0-470-25952-8.
Fowler, David; Robson, Eleanor (1998). «Square Root Approximations in Old Babylonian Mathematics: YBC 7289 in Context» . Historia Mathematica. 25 (4): 376. doi:.
Gower, John C. (1958). «A Note on an Iterative Method for Root Extraction». The Computer Journal. 1 (3): 142–143. doi:.
Guy, Martin; UKC (1985). «Fast integer square root by Mr. Woo’s abacus algorithm (archived)». Archived from the original on 2012-03-06.
Heath, Thomas (1921). A History of Greek Mathematics, Vol. 2. Oxford: Clarendon Press. pp. 323–324.
Lomont, Chris (2003). «Fast Inverse Square Root» .
Markstein, Peter (November 2004). Software Division and Square Root Using Goldschmidt’s Algorithms . 6th Conference on Real Numbers and Computers. Dagstuhl, Germany. CiteSeerX .
Piñeiro, José-Alejandro; Díaz Bruguera, Javier (December 2002). «High-Speed Double-Precision Computationof Reciprocal, Division, Square Root, and Inverse Square Root». IEEE Transactions on Computers. 51 (12): 1377–1388. doi:10.1109/TC.2002.1146704.
Sardina, Manny (2007). «General Method for Extracting Roots using (Folded) Continued Fractions». Surrey (UK).
Simply Curious (5 June 2018). «Bucking down to the Bakhshali manuscript». Simply Curious blog. Retrieved .
Steinarson, Arne; Corbit, Dann; Hendry, Mathew (2003). «Integer Square Root function».
Wilkes, M.V.; Wheeler, D.J.; Gill, S. (1951). The Preparation of Programs for an Electronic Digital Computer. Oxford: Addison-Wesley. pp. 323–324. OCLC 475783493.
Although all root-finding algorithms proceed by iteration, an iterative root-finding method generally uses a specific type of iteration, consisting of defining an auxiliary function, which is applied to the last computed approximations of a root for getting a new approximation. The iteration stops when a fixed point (up to the desired precision) of the auxiliary function is reached, that is when the new computed value is sufficiently close to the preceding ones.
Newton’s method (and similar derivative-based methods)
Newton’s method assumes the function f to have a continuous derivative. Newton’s method may not converge if started too far away from a root. However, when it does converge, it is faster than the bisection method, and is usually quadratic. Newton’s method is also important because it readily generalizes to higher-dimensional problems. Newton-like methods with higher orders of convergence are the Householder’s methods. The first one after Newton’s method is Halley’s method with cubic order of convergence.
Replacing the derivative in Newton’s method with a finite difference, we get the secant method. This method does not require the computation (nor the existence) of a derivative, but the price is slower convergence (the order is approximately 1.6 (golden ratio)). A generalization of the secant method in higher dimensions is Broyden’s method.
If we use a polynomial fit to remove the quadratic part of the finite difference used in the Secant method, so that it better approximates the derivative, we obtain Steffensen’s method, which has quadratic convergence, and whose behavior (both good and bad) is essentially the same as Newton’s method but does not require a derivative.
Fixed point iteration method
We can use the fixed-point iteration to find the root of a function. Given a function which we have set to zero to find the root ( ), we rewrite the equation in terms of so that becomes (note, there are often many functions for each function). Next, we relabel each side of the equation as so that we can perform the iteration. Next, we pick a value for and perform the iteration until it converges towards a root of the function. If the iteration converges, it will converge to a root. The iteration will only converge if <span data-src="https://wikimedia.org/api/rest_v1/media/math/render/svg/e72ed01b48be0f78bea75e50a39c992d0a02b94e" data-alt="{\displaystyle |g'(root)| .
- ,
- ,
- ,
- , or
- .
The appearance of complex values in interpolation methods can be avoided by interpolating the inverse of f, resulting in the inverse quadratic interpolation method. Again, convergence is asymptotically faster than the secant method, but inverse quadratic interpolation often behaves poorly when the iterates are not close to the root.
Continued fraction expansion
Quadratic irrationals (numbers of the form , where a, b and c are integers), and in particular, square roots of integers, have periodic continued fractions. Sometimes what is desired is finding not the numerical value of a square root, but rather its continued fraction expansion, and hence its rational approximation. Let S be the positive number for which we are required to find the square root. Then assuming a to be a number that serves as an initial guess and r to be the remainder term, we can write Since we have , we can express the square root of S as
By applying this expression for to the denominator term of the fraction, we have
For , the value of is 1, so its representation is:
Proceeding this way, we get a generalized continued fraction for the square root as
Step 2 is to reduce the continued fraction from the bottom up, one denominator at a time, to yield a rational fraction whose numerator and denominator are integers. The reduction proceeds thus (taking the first three denominators):
Finally (step 3), divide the numerator by the denominator of the rational fraction to obtain the approximate value of the root:
- rounded to three digits of precision.
The actual value of is 1.41 to three significant digits. The relative error is 0.17%, so the rational fraction is good to almost three digits of precision. Taking more denominators gives successively better approximations: four denominators yields the fraction , good to almost 4 digits of precision, etc.
In general, the larger the denominator of a rational fraction, the better the approximation. It can also be shown that truncating a continued fraction yields a rational fraction that is the best approximation to the root of any fraction with denominator less than or equal to the denominator of that fraction — e.g., no fraction with a denominator less than or equal to 70 is as good an approximation to as 99/70.
Cube root function and graph
You can graph the function y = ∛(x). Unlike e.g. the logarithmic function, the cube root function is an odd function — it means that it is symmetric with respect to the origin and fulfills the condition - f(x) = f(-x). This function also passes through zero.
Thanks to this function, you can draw a cube root graph, which is shown below. We also encourage you to check out the quadratic formula calculator to look at other function formulas!

Nth root calculator
With our root calculator, you can also calculate other roots. Just write the number in the Degree of the root field, and you will receive any chosen nth root calculator. Our calculator will automatically do all necessary calculations, and you can freely use it in your calculations!
So, let’s take some examples. Let’s assume you need to calculate the fourth root of 1296. First, you need to write the appropriate number you want to root — 1296. Then change the degree of the root to 4. And you’ve got the result! The fourth root of 1296 is 6.
Our nth root calculator also enables you to calculate the root of irrational numbers. Let’s try it by calculating π-th root. Symbol π represents the ratio of a circle’s circumference to its diameter. Its value is constant for every circle and is approximately 3.14, but you can use our ratio calculator to find its more precise value!
Let’s say you want to calculate the π-th root of 450. First, write 450 in the number box. Then change the degree of the root — let’s round and write 3.14 instead of π. And now you can see the result. It’s almost 7.
What is a square root of 0?
Answer: The square root of 0 is 0.
The square root of 0 in the radical form is expressed as √0 and in exponent form, it is expressed as 0½. Explanation: We can’t find the prime factorization of 0, since 0 is neither a prime nor a composite number.
How do I find the cube root on a regular calculator?
- First, you need to type the number for which you need to find the cube root
- Press
√(root key) two times - Press
x(multiplication sign) - Press
√(root key) four times - Press
x(multiplication sign) - Press
√(root key) eight times - Press
x(multiplication sign) - One last time, press the
√(root key) two times - And now you can press
=(equal to sign)! Here is your answer!
Don’t you believe it? Check it one more time with another example!
How to use this rational zeros calculator?
As you can see, finding rational zeros can be time-consuming: there might be lots of possible rational roots, and for each of them you have to check whether or not it’s an actual zero. Fortunately, there’s our rational zeros calculator, which can do all this work for you! 😊
Here’s three simple steps which will show you how to find rational zeros with help of this rational zeros calculator:
Choose the degree of your polynomial.
Enter the polynomial’s coefficients. Remember they must be integers!
If your polynomial has some fractions as coefficients, multiply the whole polynomial by the least common denominator of these fractions. This new polynomial will have the same roots as your original polynomial.
Our rational zeros calculator immediately displays the results — we list both possible rational zeros and actual rational zeros! 🎉
FAQ
How do I find the cube root of a product?
The cube root of a product of two numbers is the product of the cube roots of these numbers. That is, the formula is ∛(a × b) = ∛a × ∛b.
What is the cube root of -8/27?
The answer is -2/3. To get this result, take these steps:
- Recall the formula
∛(a / b) = ∛a / ∛b. - Compute the cube root of
-8. Clearly,∛(-8) = -2. - Compute the cube root of
27: we have∛27 = 3. - The final result is
-2/3. Well done!
How do I write the cube root on a computer?
The Alt code for the cube root ∛ symbol is 8731. That is, to produce ∛, take these steps:
- Make sure the Num Lock is on.
- Press down one of the Alt keys.
- Holding down the Alt key, type the code
8731using the numeric keypad. - Let go of the Alt key. The cube root symbol will appear.
- Alternative method: copy the ∛ symbol (Ctrl+C) and paste it wherever you need it (Ctrl+V).
What is a square root of 1?
The square root of 1 is 1.
Related searches to square root of zero
Is the square root of 0 undefined?
Square roots are defined algebraically, not by limits. 0 is a solution to x^2 = 0, so 0 is a square root of 0.
Find the Square Root: √0
Find the Square Root: √0
Find the Square Root: √0
https://youtube.com/watch?v=tdQd4pCEmt4%3F
Images related to the topicFind the Square Root: √0

Rational root test
Let’s see how to find rational zero of the polynomial:
p(x) = 2x4 + 3x3 — 8x2 — 9x + 6
We’ve already determined that its possible rational roots are ±1/2, ±1, ±2, ±3, ±3/2, ±6. Now we’ll check which of them are actual rational zeros of p. Recall that r is a root of p if and only if the remainder from the division of p by x − r is equal to 0.
To check
-1/2, let’s divideqbyx - 1/2.The remainder is8.25. So,-1/2is not a root ofp.For
1, divideqbyx − 1.The remainder is-6. So,1is not a root ofp.For
-1, divideqbyx + 1.The remainder is6. So,-1/2is not a root ofp.For
2, divideqbyx − 2.The remainder is12. So,2is not a root ofp.For
-2, divideqbyx + 2.The remainder is0. So,-2is a root ofp. The quotient is equal to 2x2 — 6.
In the same way we check the remaining six possible rational roots of p. It turns out that none of them are an actual root of p.
In fact, we can easily see that the roots of 2x2 — 6 are ±√3, and so p has two rational roots and two irrational roots.
Computing principal roots
Using Newton’s method
The th root of a number can be computed with Newton’s method, which starts with an initial guess and then iterates using the recurrence relation
until the desired precision is reached. For computational efficiency, the recurrence relation is commonly rewritten
This allows to have only one exponentiation, and to compute once for all the first factor of each term.
The approximation is accurate to 25 decimal places and is good for 51.
Newton’s method can be modified to produce various generalized continued fractions for the nth root. For example,
Digit-by-digit calculation of principal roots of decimal (base 10) numbers
Write the original number in decimal form. The numbers are written similar to the long division algorithm, and, as in long division, the root will be written on the line above. Now separate the digits into groups of digits equating to the root being taken, starting from the decimal point and going both left and right. The decimal point of the root will be above the decimal point of the radicand. One digit of the root will appear above each group of digits of the original number.
- Starting on the left, bring down the most significant (leftmost) group of digits not yet used (if all the digits have been used, write «0» the number of times required to make a group) and write them to the right of the remainder from the previous step (on the first step, there will be no remainder). In other words, multiply the remainder by and add the digits from the next group. This will be the current value c.
- Find p and x, as follows:
- Let be the part of the root found so far, ignoring any decimal point. (For the first step, ).
- Determine the greatest digit such that .
- Place the digit as the next digit of the root, i.e., above the group of digits you just brought down. Thus the next p will be the old p times 10 plus x.
- Subtract from to form a new remainder.
- If the remainder is zero and there are no more digits to bring down, then the algorithm has terminated. Otherwise go back to step 1 for another iteration.
Find the square root of 152.2756.
1 2. 3 4 / \/ 01 52.27 56
01 100·1·00·12 + 101·2·01·11 ≤ 1 < 100·1·00·22 + 101·2·01·21 x = 1 01 y = 100·1·00·12 + 101·2·01·11 = 1 + 0 = 1 00 52 100·1·10·22 + 101·2·11·21 ≤ 52 < 100·1·10·32 + 101·2·11·31 x = 2 00 44 y = 100·1·10·22 + 101·2·11·21 = 4 + 40 = 44 08 27 100·1·120·32 + 101·2·121·31 ≤ 827 < 100·1·120·42 + 101·2·121·41 x = 3 07 29 y = 100·1·120·32 + 101·2·121·31 = 9 + 720 = 729 98 56 100·1·1230·42 + 101·2·1231·41 ≤ 9856 < 100·1·1230·52 + 101·2·1231·51 x = 4 98 56 y = 100·1·1230·42 + 101·2·1231·41 = 16 + 9840 = 9856 00 00 Algorithm terminates: Answer is 12.34
Find the cube root of 4192 to the nearest hundredth.
1 6. 1 2 4 3 / \/ 004 192.000 000 000
004 100·1·00·13 + 101·3·01·12 + 102·3·02·11 ≤ 4 < 100·1·00·23 + 101·3·01·22 + 102·3·02·21 x = 1 001 y = 100·1·00·13 + 101·3·01·12 + 102·3·02·11 = 1 + 0 + 0 = 1 003 192 100·1·10·63 + 101·3·11·62 + 102·3·12·61 ≤ 3192 < 100·1·10·73 + 101·3·11·72 + 102·3·12·71 x = 6 003 096 y = 100·1·10·63 + 101·3·11·62 + 102·3·12·61 = 216 + 1,080 + 1,800 = 3,096 096 000 100·1·160·13 + 101·3·161·12 + 102·3·162·11 ≤ 96000 < 100·1·160·23 + 101·3·161·22 + 102·3·162·21 x = 1 077 281 y = 100·1·160·13 + 101·3·161·12 + 102·3·162·11 = 1 + 480 + 76,800 = 77,281 018 719 000 100·1·1610·23 + 101·3·1611·22 + 102·3·1612·21 ≤ 18719000 < 100·1·1610·33 + 101·3·1611·32 + 102·3·1612·31 x = 2 015 571 928 y = 100·1·1610·23 + 101·3·1611·22 + 102·3·1612·21 = 8 + 19,320 + 15,552,600 = 15,571,928 003 147 072 000 100·1·16120·43 + 101·3·16121·42 + 102·3·16122·41 ≤ 3147072000 < 100·1·16120·53 + 101·3·16121·52 + 102·3·16122·51 x = 4 The desired precision is achieved: The cube root of 4192 is about 16.12
The principal nth root of a positive number can be computed using logarithms. Starting from the equation that defines r as an nth root of x, namely with x positive and therefore its principal root r also positive, one takes logarithms of both sides (any base of the logarithm will do) to obtain
The root r is recovered from this by taking the antilog:
(Note: That formula shows b raised to the power of the result of the division, not b multiplied by the result of the division.)
Is zero perfect square?
Virtually all definitions of “perfect square” would include 0 ; however, for some reason lists of perfect squares seldom (if ever) include 0 . A perfect square is a number whose square root is a rational value. A bit of consideration should convince you that both of these definitions should include the value 0 .
Is 0 rational or irrational?
This rational expression proves that 0 is a rational number because any number can be divided by 0 and equal 0. Fraction r/s shows that when 0 is divided by a whole number, it results in infinity. Infinity is not an integer because it cannot be expressed in fraction form.
See some more details on the topic square root of zero here
What is the square root of 0? [Solved] – Cuemath
Answer: The square root of 0 is 0. The square root of 0 in the radical form is expressed as √0 and in exponent form, it is expressed as 0½. Explanation:.
What is the square root of 0 (more specifically, is there a …
Square Root of 0
What square root is undefined?
Answer: The square root of a negative number is undefined, because anything times itself will give a positive (or zero) result. Note: Zero has only one square root (itself). Zero is considered neither positive nor negative.
Proof of irrationality for non-perfect nth power x
Assume that is rational. That is, it can be reduced to a fraction , where and are integers without a common factor.
This means that .
Since and , .
This means that and thus, . This implies that is an integer. Since x is not a perfect nth power, this is impossible. Thus is irrational.
Rational root theorem (rational zero theorem)
- a0 is called the constant term of
p(or the trailing coefficient); and - an is called the leading coefficient of
p.
± factor of a0 / factor of an
⚠️ The rational root theorem does not confirm that any of these numbers are actually zeros of our polynomial! It may happen that none of them are! What this theorem says is that IF there are any rational roots, THEN they must be of the form given above.
If an = 1, then we say that p is a monic polynomial. Note that in such case all possible rational roots of p are the factors of the trailing coefficient a0.
To summarize, the rational root theorem gives you the list of all possible rational zeros. A further rational root test allows you to determine all actual rational zeros. However, finding all roots of your polynomial may require additional work: remember that it may have irrational or even complex zeros as well!
Negative or complex square
If S < 0, then its principal square root is
If S = a+bi where a and b are real and b ≠ 0, then its principal square root is
is the modulus of S. The principal square root of a complex number is defined to be the root with the non-negative real part.
Is square root 0 irrational?
Yes, the square root of 0 is a real number.
What is the value of square of zero?
The square root of 0 is the number, which multiplied by itself, is 0.
Simplified form of a radical expression
- There is no factor of the radicand that can be written as a power greater than or equal to the index.
- There are no fractions under the radical sign.
- There are no radicals in the denominator.
Simplifying radical expressions involving nested radicals can be quite difficult. It is not obvious for instance that:
The above can be derived through:
Let , with and coprime and positive integers. Then is rational if and only if both and are integers, which means that both and are nth powers of some integer.
What happens when you square 0?
The square root of zero is zero. No doubt about that. If you get a formula with zero in the denominator you have a problem.
Examples of cube root questions
V = (4/3) * π * r³
So the equation for the radius looks like this:
r = ∛(3V/4π)
You know that the volume is 33.5 ml. At first, you need to switch to different volume units. The simplest conversion is into cm³: 33.5 ml = 33.5 cm³. Now you can solve the radius:
r = ∛(100.5/12.56)
r = ∛(8)
For a ball to have a volume of 33.5 ml, its radius should be 2 centimeters.
Is zero a rational number?
Yes, 0 is a rational number. Since we know, a rational number can be expressed as p/q, where p and q are integers and q is not equal to zero. Thus, we can express 0 as p/q, where p is equal to zero and q is an integer.
What is the square root of zero?
What is the square root of zero?
What is the square root of zero?
https://youtube.com/watch?v=jisCY1ymdsM%3F
Images related to the topicWhat is the square root of zero?

Information related to the topic square root of zero
Identities and properties
Expressing the degree of an nth root in its exponent form, as in , makes it easier to manipulate powers and roots. If is a non-negative real number,
Every non-negative number has exactly one non-negative real nth root, and so the rules for operations with surds involving non-negative radicands and are straightforward within the real numbers:
Subtleties can occur when taking the nth roots of negative or complex numbers. For instance:
- but, rather,
Since the rule strictly holds for non-negative real radicands only, its application leads to the inequality in the first step above.
What is the cube root of
It is really easy to find the cube root of any positive number with our cube root calculator! Simply type in any number to find its cube root. For example, the cube root of 216 is 6. For the list of perfect cubes, head to the next section.
Note that it is possible to find a cube root of a negative number as well. After all, a negative number raised to the third power is still negative — for instance, (-6)³ = -216.
How to find actual rational zeros?
In this section, we learn a bit about actually finding rational zeros. As we’ve learned above, the rational root theorem gives you all the potential rational roots, but doesn’t guarantee that any of them are actually a root.
So, how to find rational roots given the list of all the potential rational roots? The simplest and most obvious answer is to take a possible rational root, substitute it for x in the polynomial, and check if the result is equal to zero. If so, then we have an actual root. If not, we discard the candidate and proceed to the next one, until we run out of possible rational roots. This straightforward, brute-force method leads to correct results, but can lure you into lengthy and complicated computations. 😩😰
Fear not! There is a better way and we’ll explain it to you right now.
This better way is called polynomial division. What does it mean to divide polynomials? We can divide polynomials analogously to integers: we calculate quotients and remainders. Namely, let’s divide a polynomial P(x) (dividend) by a non-zero polynomial D(x) (divisor). There exists a unique pair of polynomials Q(x) and R(x) which satisfy
P(x) = D(x) ⋅ Q(x) + R(x)
and deg(R) < deg(D). We call Q(x) the quotient and R(x) the remainder.
Maybe you’ve already learned how to divide polynomials using polynomial long division, but maybe you didn’t know that there is a shortcut way — polynomial synthetic division. These methods only differ in the way things are written down: synthetic division is faster and more compact.
So, how to use polynomial division to verify if a candidate for a rational root actually nullifies the polynomial? Let r be our potential root. You just need to divide p(x) by x - r and look at the remainder of this division:
- If the remainder is zero, then
ris a root ofp; and - If the remainder is non-zero,
ris not a root ofp.
💡 Tip. If a given candidate, r, is actually a root of p(x), you can use the quotient produced by the division p(x)/(x - r) to verify the remaining roots. This quotient is just the original polynomial from which the binomial, x - r, corresponding to the root has been factored out.
How to find all possible rational zeros?
You can do it using the rational zero theorem which we described above:
List all factors of the constant term. You can use Omni’s factor calculator.
List all factors of the leading coefficient.
To list all possible rational zeros, write down all possible fractions with the numerator taken from step 1 and denominator from step 2.
Simplify the fractions and remove any duplicates.
❗ Remember: this is a list of all the possible rational roots of our polynomial. Each number from the list can (but doesn’t have to) be a root. Any rational number not included in the list cannot be a root.
Is zero perfect square?
Virtually all definitions of “perfect square” would include 0 ; however, for some reason lists of perfect squares seldom (if ever) include 0 . A perfect square is a number whose square root is a rational value. A bit of consideration should convince you that both of these definitions should include the value 0 .
Finding roots in higher dimensions
The Poincaré–Miranda theorem gives a criterion for the existence of a root in a rectangle, but it is hard to verify, since it requires to evaluate the function on the entire boundary of the triangle.
Why is 0th power 1?
In short, the multiplicative identity is the number 1, because for any other number x, 1*x = x. So, the reason that any number to the zero power is one is because any number to the zero power is just the product of no numbers at all, which is the multiplicative identity, 1.
How to find possible rational zeros?
Suppose we have a polynomial:
p(x) = 2x4 + 3x3 — 8x2 — 9x + 6
The factors of the constant term,
6:1, 2, 3, 6The factors of the leading coefficient,
2:1and2List of all possible rational zeros of
p:±1/1, ±1/2, ±2/1, ±2/2, ±3/1, ±3/2, ±6/1, ±6/2Possible rational zeros of
pafter simplification and duplication removal:±1, ±1/2, ±2, ±3, ±3/2, ±6
These twelve numbers (positive and negative) are all possible rational roots of p: no other rational number can be a root of p.
What is a rational zero?
Let us consider a polynomial in standard form with real coefficients (we assume an ≠ 0):
We say that a real number,
r, is a zero (or a root) ofpifpevaluated atbgives zero:p(b) = 0; andIf
ris a rational number (i.e., you can write it asp/q, wherepandqare integers), then we call it a rational zero (or a rational root).
We now know what a rational zero is, so it’s time to learn how to find rational roots! The first step is to find all possible rational roots, which we can do with help of the rational root theorem.
How to calculate cube root in your head?
First of all, it is essential to memorize the cubes of the numbers from 1 to 10 and the last digit of their cubes. It is presented in the table below.
When you have a number you want to find the cube root of look first at the thousands (skip the last three digits). For example, for the number 185,193, The thousands are 185. The cube of 5 is 125 and of 6 is 216. Therefore it is obvious that the number you are searching for is between 50 and 60. The next step is to ignore all the other figures except the last digit. We can see that it’s 3, so check your memory or in our table. You will find that the number you are searching for is 7. So the answer is 57! Easy?
Let’s take another example and do it step by step!
- Think of the number that you want to know as a cube root. Let’s take 17576.
- Skip the three last digits.
- Find the two closest cube roots that you know. The cube root of 8 is 2, and the cube root of 27 is 3. So your number is between 20 and 30.
- Look at the last digit. The last digit of 17576 is 6.
- Check your memory (or on our table) — the last digit 6 corresponds with the number 6. This is the last digit of your number.
- Combine the two: 26. This is the cube root of 17576!
We remind you that this algorithm works only for perfect cubes! And the probability that a random number is a perfect cube is, alas, really low. You’ve got only a 0.0091 percent chance of finding one between 1,000 and 1,000,000. If you’re not sure about your number, just forget about that rule and use our cube root calculator 🙂
Is zero a real number?
Real numbers can be positive or negative, and include the number zero. They are called real numbers because they are not imaginary, which is a different system of numbers. Imaginary numbers are numbers that cannot be quantified, like the square root of -1.
Does negative zero exist?
There is a negative 0, it just happens to be equal to the normal zero. For each real number a, we have a number −a such that a+(−a)=0. So for 0, we have 0+(−0)=0.
Can you use the rational zero test?
Suppose we have the polynomial:
s(x) = (1/3)x3 + (3/4)x2 — 5x + 1/2
As you can see, s has non-integer coefficients. This means we can’t use the rational root theorem to determine possible rational zeros of s! 😭
❗ Remember: rational root theorem applies only if all coefficients of the polynomial are integers.
So, what can we do? How to find rational zeros of a rational-coefficient polynomial?
What we need to do is to look at the fractions appearing in the polynomial and determine their least common denominator (LCD). In other words, we need to find the least common multiple (LCM) of the denominators of these fractions, provided that the fractions are in the simplest form. To that end, you can use our LCD calculator. Then we multiply our polynomial by this LCD to get a polynomial with integer coefficients:
Fractional coefficients of
s:1/3, 3/4, 1/2.Their LCD (the LCM of
3, 4, 2) is equal to12.Multiplying
sby12gives the polynomial
4x3 + 9x2 — 60x + 6.
Surely, (1/3)x3 + (3/4)x2 — 5x + 1/2 and 4x3 + 9x2 — 60x + 6 are different polynomials, but they only differ by a constant factor, and so their roots coincide. The latter polynomial has integer coefficients, so we can apply the rational zero test!
The factors of the constant term, which is equal to
6:1, 2, 3, 6.The factors of the leading coefficient, which is equal to
4:1, 2and4.The list of all possible rational zeroes of
s:±1/1, ±1/2, ±1/4, ±2/1, ±2/2, ±2/4, ±3/1, ±3/2, ±3/4, ±6/1, ±6/2, ±6/4.Possible rational zeroes of
safter simplification:
±1, ±1/2, ±1/4, ±2, ±3, ±3/2, ±3/4, ±6.
Can 0 be a root of a quadratic equation?
Roots are also called x-intercepts or zeros. A quadratic function is graphically represented by a parabola with vertex located at the origin, below the x-axis, or above the x-axis. Therefore, a quadratic function may have one, two, or zero roots.
What is root4?
The value of root 4 is equal to exactly 2. But the roots could be positive or negative or we can say there are always two roots for any given number. Hence, root 4 is equal to ±2 or +2 and -2 (positive 2 and negative 2). You can also find square root on a calculator.
Square Roots – Program Zero
Square Roots – Program Zero
Square Roots – Program Zero
https://youtube.com/watch?v=pJ0yIX7GcxM%3F
Images related to the topicSquare Roots – Program Zero

Most common values — perfect cubes list
You can find the most common cube root values below. Those numbers are also very often called perfect cubes because their cube roots are integers. Here is the list of the ten first perfect cubes:
- cube root of 1:
∛1 = 1, since1 * 1 * 1 = 1; - cube root of 8:
∛8 = 2, since2 * 2 * 2 = 8; - cube root of 27:
∛27 = 3, since3 * 3 * 3 = 27; - cube root of 64:
∛64 = 4, since4 * 4 * 4 = 64; - cube root of 125:
∛125 = 5, since5 * 5 * 5 = 125; - cube root of 216:
∛216 = 6, since6 * 6 * 6 = 216; - cube root of 343:
∛343 = 7, since7 * 7 * 7 = 343; - cube root of 512:
∛512 = 8, since8 * 8 * 8 = 512; - cube root of 729:
∛729 = 9, since9 * 9 * 9 = 729; - cube root of 1000:
∛1000 = 10, since10 * 10 * 10 = 1000;
As you can see, numbers become very large quickly, but sometimes you’ll have to deal with even bigger numbers, such as factorials. In this case, we recommend using scientific notation, which is a much more convenient way of writing down really big or really small numbers.
- cube root of 2:
∛2 ≈ 1.26; - cube root of 3:
∛3 ≈ 1.44; - cube root of 4:
∛4 ≈ 1.59; - cube root of 5:
∛5 ≈ 1.71; - cube root of 10:
∛10 ≈ 2.15;
Don’t hesitate to use our cube root calculator if the number you want and need is not on this list!
Three solutions of the cube root
x = a + b*i
where x is the complex number with the real a and imaginary b parts (for real numbers b = 0). The mysterious imaginary number i is defined as the square root of -1:
i = √(-1)
Alright, but how does this knowledge influence the number of cube root solutions? As an example, consider the cube roots of 8, which are 2, -1 + i√3, and -1 - i√3. If you don’t believe us, let’s check it by raising them to the power of 3, remembering that i² = -1 and using the short multiplication formula (a + b)³ = a³ + 3a²b + 3ab² + b³:
2³ = 8— the obvious one,(-1 + i√3)³ = -1 + 3i√3 + 9 - 3i√3 = 8,(-1 - i√3)³ = -1 - 3i√3 + 9 + 3i√3 = 8.
Do you see it now? All of them equal 8!
What is to the power of 0?
Therefore, it is proven that any number or expression raised to the power of zero is always equal to 1. In other words, if the exponent is zero then the result is 1. The general form of zero exponent rule is given by: a 0 = 1 and (a/b) 0 = 1.
Approximations that depend on the floating point representation
A number is represented in a floating point format as which is also called scientific notation. Its square root is and similar formulae would apply for cube roots and logarithms. On the face of it, this is no improvement in simplicity, but suppose that only an approximation is required: then just is good to an order of magnitude. Next, recognise that some powers, , will be odd, thus for 3141.59 = 3.1415910 rather than deal with fractional powers of the base, multiply the mantissa by the base and subtract one from the power to make it even. The adjusted representation will become the equivalent of 31.415910 so that the square root will be 10.
A table with only three entries could be enlarged by incorporating additional bits of the mantissa. However, with computers, rather than calculate an interpolation into a table, it is often better to find some simpler calculation giving equivalent results. Everything now depends on the exact details of the format of the representation, plus what operations are available to access and manipulate the parts of the number. For example, Fortran offers an EXPONENT(x) function to obtain the power. Effort expended in devising a good initial approximation is to be recouped by thereby avoiding the additional iterations of the refinement process that would have been needed for a poor approximation. Since these are few (one iteration requires a divide, an add, and a halving) the constraint is severe.
So for a 32-bit single precision floating point number in IEEE format (where notably, the power has a bias of 127 added for the represented form) you can get the approximate logarithm by interpreting its binary representation as a 32-bit integer, scaling it by , and removing a bias of 127, i.e.
For example, 1.0 is represented by a hexadecimal number 0x3F800000, which would represent if taken as an integer. Using the formula above you get , as expected from . In a similar fashion you get 0.5 from 1.5 (0x3FC00000).
/* Assumes that float is in the IEEE 754 single precision floating point format */ /* Convert type, preserving bit pattern */ * ((((val.i / 2^m) - b) / 2) + b) * 2^m = ((val.i - 2^m) / 2) + ((b + 1) / 2) * 2^m) * b = exponent bias * m = number of mantissa bits /* Subtract 2^m. */ /* Divide by 2. */ /* Add ((b + 1) / 2) * 2^m. */ /* Interpret again as float */
The three mathematical operations forming the core of the above function can be expressed in a single line. An additional adjustment can be added to reduce the maximum relative error. So, the three operations, not including the cast, can be rewritten as
Reciprocal of the square root
/* The next line can be repeated any number of times to increase accuracy */
Definition and notation
The four 4th roots of −1,
none of which are real
The three 3rd roots of −1,
one of which is a negative real
An nth root of a number x, where n is a positive integer, is any of the n real or complex numbers r whose nth power is x:
Every positive real number x has a single positive nth root, called the principal nth root, which is written . For n equal to 2 this is called the principal square root and the n is omitted. The nth root can also be represented using exponentiation as x1/n.
For even values of n, positive numbers also have a negative nth root, while negative numbers do not have a real nth root. For odd values of n, every negative number x has a real negative nth root. For example, −2 has a real 5th root, but −2 does not have any real 6th roots.
Every non-zero number x, real or complex, has n different complex number nth roots. (In the case x is real, this count includes any real nth roots.) The only complex root of 0 is 0.
The nth roots of almost all numbers (all integers except the nth powers, and all rationals except the quotients of two nth powers) are irrational. For example,
All nth roots of rational numbers are algebraic numbers, and all nth roots of integers are algebraic integers.
A square root of a number x is a number r which, when squared, becomes x:
Every positive real number has two square roots, one positive and one negative. For example, the two square roots of 25 are 5 and −5. The positive square root is also known as the principal square root, and is denoted with a radical sign:
Since the square of every real number is nonnegative, negative numbers do not have real square roots. However, for every negative real number there are two imaginary square roots. For example, the square roots of −25 are 5i and −5i, where i represents a number whose square is .
A cube root of a number x is a number r whose cube is x:
Every real number x has exactly one real cube root, written . For example,
- and
Every real number has two additional complex cube roots.
Cube root definition
Let’s assume you want to find the cube root of a number, x. The cube root, y, is such a number that, if raised to the third power, will give x as a result. If you formulate this mathematically,
∛x = y ⟺ y^3 = x
where ⟺ is a mathematical symbol that means if and only if.
It is also possible to write the cube root in a different way, which is sometimes much more convenient. It is because a cube root is a special case of an exponent. It can be written down as
∛(x) = x^(1/3)
A geometric example may help you understand this. The best example we can give would be that of the cube. Well, the cube root of a cube’s volume is its edge length. So, for example, if a cube has a volume of 27 cm³, then the length of its edges is equal to the cube root of 27 cm³, which is 3 cm. Easy?
You should remember that in most cases, the cube root will not be a rational number. These numbers can be expressed as a quotient of two natural numbers, i.e., a fraction. Fractions can cause some difficulties, especially when it comes to adding them. If you are having trouble working with fractions, try our adding fractions calculator, which will help you immensely.






