The nth root is unstoppable. You must sit back and wait. Hopefully you will survive it as it takes its deadly course.
1 answer
Write an algorithm to find the root of quadratic equation
2 answers
You seem to be unaware of the fact that you can obtain the answer easily by using the scientific calculator that comes as part of your computer. In general the nth root is extremely difficult to find.
1 answer
The radical symbol, otherwise known as the "square root sign", lets you take the nth root of any number.
Any number can be placed above, and slightly to the left, of the square root sign, to indicate the nth root. For example, the cube root of 27 is 3.
The number inside the square root sign (that which you are finding the square root of), is called the radicand.
1 answer
The square root of 64 is 8 and you can work it out using the square root algorithm.
1 answer
what? Assuming you wanted an algorithm to find the nth number in the Fibonacci sequence:
double Fib(int i)
{
double x = 1;
double y = 1;
if (i
1 answer
Shifting in easily accomplished in hardware.
1 answer
Assuming that you mean the nth. root: two - a negative and a positive root.
1 answer
You can't prove this proposition because it isn't true.
Proof: the fifth root of 1024 is 4, and 4 is not irrational.
It is true that, when N is an integer greater than 1, the Nth root of any integer greater than 1 is either an integer orirrational, but that's a different matter.
1 answer
The geometric mean is the nth root of the product of the numbers.
So this means (pun intended) multiply the numbers together and then take their nth root.
Let's look at 2, 4, and 8 . Their product is 64 and the cube ( 3rd) root of 64 is 4.
Of course, most of the time, the answer will not be rational.
1 answer
The nth root of a number is that number which when raised to the nth power (ie when multiplied by itself n times) results in the number.
When n=2, it is the square root of the number;
when n=3 it is the cube root of the number.
To find the nth root of a number, an electronic calculator can be used, using the nth root button [x√y] (though more recent calculators replace the x and y by boxes) viz:
<n> [x√y] [2] [4] [4] [=]
or with the more recent calculators:
[#√#] <n> [Navigate →] [2] [4] [4] [=]
where <n> is the nth root, eg for 2nd root (square roots) enter [2];
and the # is being used to represent a box on the keys of the more recent calculator.
Considering the rules for indices, the nth root is the the number to the power of 1/n, ie 244^(1/n), thus the calculation can be done using the power button:
[2] [4] [4] [^] [(] [1] [÷] <n> [)] [=]
With the more recent calculators, the power button is pressed first, the 244 entered, the navigate-right key pressed (to get in to the power part of the input) and then the n entered.
2 answers
What does this question mean? -60 has a real cube root, a real fifth root. In fact a real nth root for all odd n.
1 answer
The nth root of x2 can be expressed as:
x2/n
Thinking of it that way, we can see that no, it can't always exist - but almost always. The only condition in which it can't exist is when n = 0, as that would give us division by zero.
1 answer
only the number 1 (one)because it is perfect nth root .
1 answer
Root of a number x is the new number y, which can be calculated as
y = ( x ) 1/n
where n is the root number i.e. nth root of x is y.
1 answer
Remember that the geometric mean is the he nth root of the product of n numbers.
Since you have two numbers it will be the square root of their product.
In this case that is square root of ( 4x18)=square root of (72) which is about 8.485
1 answer
int countleaves(struct node* root){
if(root!=null)
{
countleaves(root->left);
if(root->left==NULL&&root->right==NULL)
{
count++;
}
countleaves(root->right);
}
}
1 answer
A root-finding algorithm is a numerical method, or algorithm, for finding a value. Finding a root of f(x) − g(x) = 0 is the same as solving the equation f(x) = g(x).
1 answer
That refers to the positive root, at least if you take the root of a positive number. For example, 25 has two square roots - two numbers which, when squared, give 25. The positive one (+5) is called the principal square root (or 2nd. root).
1 answer
rearrange the following: A^(1/n)= the nth root of A. eg A to the power 1/2 equals the square root of A. A to the power 1/3 equals the cube root of A. etc.
1 answer
The nth root of a number is a number such that if you multiply it by itself (n-1) times you get the number. Or if you multiply 1 by it n times. Many definitions get this wrong due to sloppy use of the language.So if y^n = x then the nth root of x is y.
x^(a/b) is the bth root of x^a or, equivalently, it is (bth root of x)^a. If mental calculation is required then the second form is easier to use because it means you are dealing with smaller number. For example, 16^(3/4) can be calculated as (4th root of 16)^3 = 2^3 = 8. Not too difficult. But the alternative method would be to calculate the 4th root of 16^3 = the fourth root of 4096. Not something most people would wish to tackle.
A negative root is simply the reciprocal. Thus x^(-a) is simply 1/(x^a).
1 answer
Indices is the plural of index. In mathematics, the index most commonly refers to the exponent or a degree of an nth root.
1 answer
Here are some examples. x1/2 = square root of x; x1/3 = cubic root of x; in general, x1/n = nth root of x. Also, x2/3 = the square of the cubic root of x, or equivalently, the cubic root of the square of x.
1 answer
A fractional exponent is actually finding the nth root of the base. So 80^(3/4) is the 4th root of 80 cubed. This equals 26.750 approximately.
1 answer
Indices is the plural of index. In mathematics, the index most commonly refers to the exponent or a degree of an nth root.
1 answer
The geometric mean of 'A' and 'B' is the square root of ( A x B ).
Edit:
The geometric mean of n positive numbers, x1, x2, ... , xn is the nth root of x1*x2* ... *xn.
1 answer
If your calculator has an exponentiation function, simply raise the number to the power of .5
Remember this trick:
the nth root of X = X ^ (1/n)
1 answer
bool SearchElementInBST(struct tree* root, int element)
{
if(NULL == root)
{
return false;
}
else if (root->value > element)
{
return SearchElementInBST(root->left,element);
}
else if (root->value < element)
{
return SearchElementInBST(root->right, element);
}
return true;
}
1 answer
I'm posting a link which explains it pretty good, but here it is. Given a set of n numbers, the Geometric mean is found by multiplying all of the numbers together, then taking the nth root of this product. The nth root can also be written as taking to the 1/n power.
Example: Geometric mean of 8 and 2: There are two numbers, so take the square root of the product. sqrt(8*2) = sqrt(16) = 4.
1 answer
x^(1/8). Taking the nth root of a number is the same as raising that number to the power of the reciprocal of n. (n-root(x)= x^(1/n). You can use this fact when raising numbers to the power of a fraction. x^(a/b)= b-root(x^a).
1 answer
No. It is 12
Here is why:
The geometric mean of 3 and 48 is the square root of 3x38=144
So it is the square root of 144 which is 12.
In general, the geometric mean of the numbers a1 a2 ....an is the nth root of the product of the ai from i=1 to i=n
1 answer
You can represent a radical with a rational exponent. For example the nth root of a number m can be written as m1/n . If n was 2 for example, then it is the square root. So square root of 3 or radical 3 is written sqrt(3) or 31/2 .
1 answer
1. High accuracy. Comparing to Basic Incremental algorithm (especially if the slope were > 1.) 2. High speed. Comparing to Digital Differenmtial algorithm. 3. Draws the line between any two points. Comparing to Basic Incremental algorithm which can't draw if x0 > x1 ( the format is: (x0, y0), (x1, y1). )
3 answers
An algorithm is process or set of rules for doing something
If we are looking for square rots which are integers then an algorithm might look like this
Put the number whose root is sought into a variable - the dividend.
Put 2 into a variable - the divisor
Begin a loop
divide the dividend by the divisor
put the result into a variable - the quotient
if the quotient = the divisor then the quotient is the square root of the divident
else, add 1 to the divisor
next loop
1 answer
Use the link provided to University of Arizona math page where the algorithm is explained.
1 answer
What exactly do you mean "yields only prime numbers"?
If you mean a formula that when given the numbers n=1, 2, 3, ... and so on generates the nth prime number (or a different prime number for each n) then no.
If you mean an algorithm whereby a number can be tested to be a prime number then yes.
(Using this prime_test algorithm, a simple algorithm can be written that would supply numbers one at a time to it and use its result to decide whether to yield the tested number or not, only yielding those numbers which pass the test.)
1 answer
Geometric mean is not the same as the maths average.
It is the nth root of the product of n numbers.
1 answer
The easiest way to do this is with a calculator. Anyway, the definitions are as follows.
x to the power 1/2 is the square root of x, x to the power 1/3 is the cubic root of x, and in general, x to the power 1/n is the nth. root of x.
If you also have a number other than one in the numerator:
For example, to calculate x to the power 3/5 you first raise x to the power 3, then take the fifth root of the result. You can also do it the other way: first calculate the fifth root, then raise to the third power. In general, to calculate x to the power m/n, you take the nth root, then raise the result to the power m.
1 answer
It is not possible to find the nth term from the given information.
1 answer
It is not possible to determine an nth term from a single number.
1 answer