Is there a simpler method of calculating $sqrt[n]{x}$?
$begingroup$
I've began to reteach myself Algebra and am brushing up on my roots (pun intended). I've been following this website (which makes it simple to refresh your memory), and as I reviewed the root examples I couldn't help but wonder if there was a simple mathematic process for calculating $sqrt[n]{x}$.
I've reviewed the Wikipedia article covering nth roots and learned of the nth root algorithm:
$$x_{k + 1} = frac{1}{n} Biggl( (n - 1)x_k + frac{A}{x^{n - 1}_k} Biggr)$$
This algorithm allows us to take an initial guess of $x_0$ and then iterate using the recurrence relation until precision is reached. The other method that stood out was logarithmic calculation in which:
Starting from the equation that defines $r$ as an nth root of $x$, namely
$r^n = x$ 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:
$$n log_b r = log_b x$$
hence
$$log_b r = frac{log_b x}{n}$$
The root $r$ is then recovered from this by taking the antilog:
$$r = b^{frac{1}{n} log_b x}$$
However, in my opninion these seem quite complex and has me wondering; is there a simpler method, that doesn't include guessing, that can solve for $y$ in the following:
$$sqrt[n]{x} = y$$
I initially attempted with simpler math such as: $sqrt[n]{x} = frac{x}{n}$ and $sqrt[n]{x} = sqrt{frac{x}{n}}$ but obviously neither worked except for a few cases such as $sqrt[3]{27} = sqrt{frac{27}{3}}$.
EDIT: I spoke with a friend on the topic and he pointed out the following:
$$sqrt[n]{x} = x^{frac{1}{n}}$$
How accurate does this remain across the board? I’ve tried various samples and it seems pretty consistent to me.
roots
$endgroup$
|
show 2 more comments
$begingroup$
I've began to reteach myself Algebra and am brushing up on my roots (pun intended). I've been following this website (which makes it simple to refresh your memory), and as I reviewed the root examples I couldn't help but wonder if there was a simple mathematic process for calculating $sqrt[n]{x}$.
I've reviewed the Wikipedia article covering nth roots and learned of the nth root algorithm:
$$x_{k + 1} = frac{1}{n} Biggl( (n - 1)x_k + frac{A}{x^{n - 1}_k} Biggr)$$
This algorithm allows us to take an initial guess of $x_0$ and then iterate using the recurrence relation until precision is reached. The other method that stood out was logarithmic calculation in which:
Starting from the equation that defines $r$ as an nth root of $x$, namely
$r^n = x$ 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:
$$n log_b r = log_b x$$
hence
$$log_b r = frac{log_b x}{n}$$
The root $r$ is then recovered from this by taking the antilog:
$$r = b^{frac{1}{n} log_b x}$$
However, in my opninion these seem quite complex and has me wondering; is there a simpler method, that doesn't include guessing, that can solve for $y$ in the following:
$$sqrt[n]{x} = y$$
I initially attempted with simpler math such as: $sqrt[n]{x} = frac{x}{n}$ and $sqrt[n]{x} = sqrt{frac{x}{n}}$ but obviously neither worked except for a few cases such as $sqrt[3]{27} = sqrt{frac{27}{3}}$.
EDIT: I spoke with a friend on the topic and he pointed out the following:
$$sqrt[n]{x} = x^{frac{1}{n}}$$
How accurate does this remain across the board? I’ve tried various samples and it seems pretty consistent to me.
roots
$endgroup$
1
$begingroup$
In a way, every possible method involves some guessing and iterative approximation. How else would you arrive at the inifinitely many quite irregular digits $1.414213562373095ldots$ when looking for $sqrt 2$? Note that a similar guess-and-approve takes place for example when performing a long division to find $frac 27=0.285714ldots$
$endgroup$
– Hagen von Eitzen
Jan 18 at 17:10
$begingroup$
For those old people brought up using common logarithms and with access to a table of logarithms, the second method (with $b=10$) is simple. For younger people with access to a calculator with an $x^y$ button, the calculation can be done directly
$endgroup$
– Henry
Jan 18 at 17:34
$begingroup$
@Henry - what if you want 12 digits? My old logarithm table (which I threw away around 1973) had only 4 digits. The CRC table in my bookshelf (which I will throw out today) has only 10 digits for natural logarithms.
$endgroup$
– Hans Engler
Jan 18 at 17:51
$begingroup$
How do you define "simple" and "complex"? Otherwise that is opinion based?
$endgroup$
– Somos
Jan 18 at 18:08
$begingroup$
@Somos Since my knowledge of mathematics is lacking I would go with the textbook definitions.
$endgroup$
– PerpetualJ
Jan 18 at 18:09
|
show 2 more comments
$begingroup$
I've began to reteach myself Algebra and am brushing up on my roots (pun intended). I've been following this website (which makes it simple to refresh your memory), and as I reviewed the root examples I couldn't help but wonder if there was a simple mathematic process for calculating $sqrt[n]{x}$.
I've reviewed the Wikipedia article covering nth roots and learned of the nth root algorithm:
$$x_{k + 1} = frac{1}{n} Biggl( (n - 1)x_k + frac{A}{x^{n - 1}_k} Biggr)$$
This algorithm allows us to take an initial guess of $x_0$ and then iterate using the recurrence relation until precision is reached. The other method that stood out was logarithmic calculation in which:
Starting from the equation that defines $r$ as an nth root of $x$, namely
$r^n = x$ 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:
$$n log_b r = log_b x$$
hence
$$log_b r = frac{log_b x}{n}$$
The root $r$ is then recovered from this by taking the antilog:
$$r = b^{frac{1}{n} log_b x}$$
However, in my opninion these seem quite complex and has me wondering; is there a simpler method, that doesn't include guessing, that can solve for $y$ in the following:
$$sqrt[n]{x} = y$$
I initially attempted with simpler math such as: $sqrt[n]{x} = frac{x}{n}$ and $sqrt[n]{x} = sqrt{frac{x}{n}}$ but obviously neither worked except for a few cases such as $sqrt[3]{27} = sqrt{frac{27}{3}}$.
EDIT: I spoke with a friend on the topic and he pointed out the following:
$$sqrt[n]{x} = x^{frac{1}{n}}$$
How accurate does this remain across the board? I’ve tried various samples and it seems pretty consistent to me.
roots
$endgroup$
I've began to reteach myself Algebra and am brushing up on my roots (pun intended). I've been following this website (which makes it simple to refresh your memory), and as I reviewed the root examples I couldn't help but wonder if there was a simple mathematic process for calculating $sqrt[n]{x}$.
I've reviewed the Wikipedia article covering nth roots and learned of the nth root algorithm:
$$x_{k + 1} = frac{1}{n} Biggl( (n - 1)x_k + frac{A}{x^{n - 1}_k} Biggr)$$
This algorithm allows us to take an initial guess of $x_0$ and then iterate using the recurrence relation until precision is reached. The other method that stood out was logarithmic calculation in which:
Starting from the equation that defines $r$ as an nth root of $x$, namely
$r^n = x$ 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:
$$n log_b r = log_b x$$
hence
$$log_b r = frac{log_b x}{n}$$
The root $r$ is then recovered from this by taking the antilog:
$$r = b^{frac{1}{n} log_b x}$$
However, in my opninion these seem quite complex and has me wondering; is there a simpler method, that doesn't include guessing, that can solve for $y$ in the following:
$$sqrt[n]{x} = y$$
I initially attempted with simpler math such as: $sqrt[n]{x} = frac{x}{n}$ and $sqrt[n]{x} = sqrt{frac{x}{n}}$ but obviously neither worked except for a few cases such as $sqrt[3]{27} = sqrt{frac{27}{3}}$.
EDIT: I spoke with a friend on the topic and he pointed out the following:
$$sqrt[n]{x} = x^{frac{1}{n}}$$
How accurate does this remain across the board? I’ve tried various samples and it seems pretty consistent to me.
roots
roots
edited Jan 18 at 18:29
PerpetualJ
asked Jan 18 at 17:06
PerpetualJPerpetualJ
1767
1767
1
$begingroup$
In a way, every possible method involves some guessing and iterative approximation. How else would you arrive at the inifinitely many quite irregular digits $1.414213562373095ldots$ when looking for $sqrt 2$? Note that a similar guess-and-approve takes place for example when performing a long division to find $frac 27=0.285714ldots$
$endgroup$
– Hagen von Eitzen
Jan 18 at 17:10
$begingroup$
For those old people brought up using common logarithms and with access to a table of logarithms, the second method (with $b=10$) is simple. For younger people with access to a calculator with an $x^y$ button, the calculation can be done directly
$endgroup$
– Henry
Jan 18 at 17:34
$begingroup$
@Henry - what if you want 12 digits? My old logarithm table (which I threw away around 1973) had only 4 digits. The CRC table in my bookshelf (which I will throw out today) has only 10 digits for natural logarithms.
$endgroup$
– Hans Engler
Jan 18 at 17:51
$begingroup$
How do you define "simple" and "complex"? Otherwise that is opinion based?
$endgroup$
– Somos
Jan 18 at 18:08
$begingroup$
@Somos Since my knowledge of mathematics is lacking I would go with the textbook definitions.
$endgroup$
– PerpetualJ
Jan 18 at 18:09
|
show 2 more comments
1
$begingroup$
In a way, every possible method involves some guessing and iterative approximation. How else would you arrive at the inifinitely many quite irregular digits $1.414213562373095ldots$ when looking for $sqrt 2$? Note that a similar guess-and-approve takes place for example when performing a long division to find $frac 27=0.285714ldots$
$endgroup$
– Hagen von Eitzen
Jan 18 at 17:10
$begingroup$
For those old people brought up using common logarithms and with access to a table of logarithms, the second method (with $b=10$) is simple. For younger people with access to a calculator with an $x^y$ button, the calculation can be done directly
$endgroup$
– Henry
Jan 18 at 17:34
$begingroup$
@Henry - what if you want 12 digits? My old logarithm table (which I threw away around 1973) had only 4 digits. The CRC table in my bookshelf (which I will throw out today) has only 10 digits for natural logarithms.
$endgroup$
– Hans Engler
Jan 18 at 17:51
$begingroup$
How do you define "simple" and "complex"? Otherwise that is opinion based?
$endgroup$
– Somos
Jan 18 at 18:08
$begingroup$
@Somos Since my knowledge of mathematics is lacking I would go with the textbook definitions.
$endgroup$
– PerpetualJ
Jan 18 at 18:09
1
1
$begingroup$
In a way, every possible method involves some guessing and iterative approximation. How else would you arrive at the inifinitely many quite irregular digits $1.414213562373095ldots$ when looking for $sqrt 2$? Note that a similar guess-and-approve takes place for example when performing a long division to find $frac 27=0.285714ldots$
$endgroup$
– Hagen von Eitzen
Jan 18 at 17:10
$begingroup$
In a way, every possible method involves some guessing and iterative approximation. How else would you arrive at the inifinitely many quite irregular digits $1.414213562373095ldots$ when looking for $sqrt 2$? Note that a similar guess-and-approve takes place for example when performing a long division to find $frac 27=0.285714ldots$
$endgroup$
– Hagen von Eitzen
Jan 18 at 17:10
$begingroup$
For those old people brought up using common logarithms and with access to a table of logarithms, the second method (with $b=10$) is simple. For younger people with access to a calculator with an $x^y$ button, the calculation can be done directly
$endgroup$
– Henry
Jan 18 at 17:34
$begingroup$
For those old people brought up using common logarithms and with access to a table of logarithms, the second method (with $b=10$) is simple. For younger people with access to a calculator with an $x^y$ button, the calculation can be done directly
$endgroup$
– Henry
Jan 18 at 17:34
$begingroup$
@Henry - what if you want 12 digits? My old logarithm table (which I threw away around 1973) had only 4 digits. The CRC table in my bookshelf (which I will throw out today) has only 10 digits for natural logarithms.
$endgroup$
– Hans Engler
Jan 18 at 17:51
$begingroup$
@Henry - what if you want 12 digits? My old logarithm table (which I threw away around 1973) had only 4 digits. The CRC table in my bookshelf (which I will throw out today) has only 10 digits for natural logarithms.
$endgroup$
– Hans Engler
Jan 18 at 17:51
$begingroup$
How do you define "simple" and "complex"? Otherwise that is opinion based?
$endgroup$
– Somos
Jan 18 at 18:08
$begingroup$
How do you define "simple" and "complex"? Otherwise that is opinion based?
$endgroup$
– Somos
Jan 18 at 18:08
$begingroup$
@Somos Since my knowledge of mathematics is lacking I would go with the textbook definitions.
$endgroup$
– PerpetualJ
Jan 18 at 18:09
$begingroup$
@Somos Since my knowledge of mathematics is lacking I would go with the textbook definitions.
$endgroup$
– PerpetualJ
Jan 18 at 18:09
|
show 2 more comments
2 Answers
2
active
oldest
votes
$begingroup$
The n-th root algorithm converges quadratically (the number of correct digits is essentially doubled each step) and uses only "simpler" operations such as addition, division, integer powers.
This method is fast, reliable, and accurate and does not require anything except basic arithmetic. You know in advance how many steps are needed to get, say 100 digits. With a decent starting value, you will need about 10 steps.
The log method requires the computation of logarithms and exponentials which is in turn done approximately. So this method has an uncertain amount of computational work associated with it and accuracy control is also uncertain.
"Simplicity" is a subjective criterion and must be balanced against reliability, accuracy, speed. Many (including me) would call the n-th root algorithm simple and elegant.
$endgroup$
1
$begingroup$
(+1) Doubling the precision is a very good thing in addition to the simplicity of the root algorithm.
$endgroup$
– robjohn♦
Jan 18 at 18:38
add a comment |
$begingroup$
Here is a method. It does require an initial guess, though.
The generalized binomial theorm:
$(x+y)^k = x^k + kx^{k-1}y + frac {k(k-1)}{2} x^{k-2}y^2 + cdots$
We can see that the power of x drops each term, and the power of y increases one each term. The coefficients are a little bit more complicated. For each we take the previous coefficient, multiply it by the previous power of x and divide it by the current power of y.
How do we use it here.
We make a guess. $aapprox x^frac 1n. $ It has some error we will call $b$
$x^frac 1n = (a^n + b)^frac 1n$
And using the generalized binomial thereom.
$x^frac 1n = a + frac {1}{n}frac {b}{a^{n-1}} - frac {1(n-1)}{2n^2}frac {b^2}{a^{2n-1}} + frac {1(n-1)(2n-2)}{6n^3}frac {b^3}{a^{3n-1}} + cdots$
For example
$71^frac 13 = (4^3 + 7)^frac 13\
4 + frac {1}{3}frac {7}{4^2} - frac {1cdot 2}{2cdot 3^2}frac {7^2}{4^5}+frac {1cdot 2 cdot 5}{3!cdot 3^3}frac {7^3}{4^8}- cdots$
$4 + frac {7}{48} - frac {49}{2304}+frac {1715}{530846}- cdots$
As you can see that denominator is growing rapidly.
$endgroup$
1
$begingroup$
As you add more terms, each term is approximately $frac {7}{64}$ of the previous term.
$endgroup$
– Doug M
Jan 18 at 19:21
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "69"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3078509%2fis-there-a-simpler-method-of-calculating-sqrtnx%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
The n-th root algorithm converges quadratically (the number of correct digits is essentially doubled each step) and uses only "simpler" operations such as addition, division, integer powers.
This method is fast, reliable, and accurate and does not require anything except basic arithmetic. You know in advance how many steps are needed to get, say 100 digits. With a decent starting value, you will need about 10 steps.
The log method requires the computation of logarithms and exponentials which is in turn done approximately. So this method has an uncertain amount of computational work associated with it and accuracy control is also uncertain.
"Simplicity" is a subjective criterion and must be balanced against reliability, accuracy, speed. Many (including me) would call the n-th root algorithm simple and elegant.
$endgroup$
1
$begingroup$
(+1) Doubling the precision is a very good thing in addition to the simplicity of the root algorithm.
$endgroup$
– robjohn♦
Jan 18 at 18:38
add a comment |
$begingroup$
The n-th root algorithm converges quadratically (the number of correct digits is essentially doubled each step) and uses only "simpler" operations such as addition, division, integer powers.
This method is fast, reliable, and accurate and does not require anything except basic arithmetic. You know in advance how many steps are needed to get, say 100 digits. With a decent starting value, you will need about 10 steps.
The log method requires the computation of logarithms and exponentials which is in turn done approximately. So this method has an uncertain amount of computational work associated with it and accuracy control is also uncertain.
"Simplicity" is a subjective criterion and must be balanced against reliability, accuracy, speed. Many (including me) would call the n-th root algorithm simple and elegant.
$endgroup$
1
$begingroup$
(+1) Doubling the precision is a very good thing in addition to the simplicity of the root algorithm.
$endgroup$
– robjohn♦
Jan 18 at 18:38
add a comment |
$begingroup$
The n-th root algorithm converges quadratically (the number of correct digits is essentially doubled each step) and uses only "simpler" operations such as addition, division, integer powers.
This method is fast, reliable, and accurate and does not require anything except basic arithmetic. You know in advance how many steps are needed to get, say 100 digits. With a decent starting value, you will need about 10 steps.
The log method requires the computation of logarithms and exponentials which is in turn done approximately. So this method has an uncertain amount of computational work associated with it and accuracy control is also uncertain.
"Simplicity" is a subjective criterion and must be balanced against reliability, accuracy, speed. Many (including me) would call the n-th root algorithm simple and elegant.
$endgroup$
The n-th root algorithm converges quadratically (the number of correct digits is essentially doubled each step) and uses only "simpler" operations such as addition, division, integer powers.
This method is fast, reliable, and accurate and does not require anything except basic arithmetic. You know in advance how many steps are needed to get, say 100 digits. With a decent starting value, you will need about 10 steps.
The log method requires the computation of logarithms and exponentials which is in turn done approximately. So this method has an uncertain amount of computational work associated with it and accuracy control is also uncertain.
"Simplicity" is a subjective criterion and must be balanced against reliability, accuracy, speed. Many (including me) would call the n-th root algorithm simple and elegant.
edited Jan 18 at 19:39
answered Jan 18 at 17:47
Hans EnglerHans Engler
10.8k11936
10.8k11936
1
$begingroup$
(+1) Doubling the precision is a very good thing in addition to the simplicity of the root algorithm.
$endgroup$
– robjohn♦
Jan 18 at 18:38
add a comment |
1
$begingroup$
(+1) Doubling the precision is a very good thing in addition to the simplicity of the root algorithm.
$endgroup$
– robjohn♦
Jan 18 at 18:38
1
1
$begingroup$
(+1) Doubling the precision is a very good thing in addition to the simplicity of the root algorithm.
$endgroup$
– robjohn♦
Jan 18 at 18:38
$begingroup$
(+1) Doubling the precision is a very good thing in addition to the simplicity of the root algorithm.
$endgroup$
– robjohn♦
Jan 18 at 18:38
add a comment |
$begingroup$
Here is a method. It does require an initial guess, though.
The generalized binomial theorm:
$(x+y)^k = x^k + kx^{k-1}y + frac {k(k-1)}{2} x^{k-2}y^2 + cdots$
We can see that the power of x drops each term, and the power of y increases one each term. The coefficients are a little bit more complicated. For each we take the previous coefficient, multiply it by the previous power of x and divide it by the current power of y.
How do we use it here.
We make a guess. $aapprox x^frac 1n. $ It has some error we will call $b$
$x^frac 1n = (a^n + b)^frac 1n$
And using the generalized binomial thereom.
$x^frac 1n = a + frac {1}{n}frac {b}{a^{n-1}} - frac {1(n-1)}{2n^2}frac {b^2}{a^{2n-1}} + frac {1(n-1)(2n-2)}{6n^3}frac {b^3}{a^{3n-1}} + cdots$
For example
$71^frac 13 = (4^3 + 7)^frac 13\
4 + frac {1}{3}frac {7}{4^2} - frac {1cdot 2}{2cdot 3^2}frac {7^2}{4^5}+frac {1cdot 2 cdot 5}{3!cdot 3^3}frac {7^3}{4^8}- cdots$
$4 + frac {7}{48} - frac {49}{2304}+frac {1715}{530846}- cdots$
As you can see that denominator is growing rapidly.
$endgroup$
1
$begingroup$
As you add more terms, each term is approximately $frac {7}{64}$ of the previous term.
$endgroup$
– Doug M
Jan 18 at 19:21
add a comment |
$begingroup$
Here is a method. It does require an initial guess, though.
The generalized binomial theorm:
$(x+y)^k = x^k + kx^{k-1}y + frac {k(k-1)}{2} x^{k-2}y^2 + cdots$
We can see that the power of x drops each term, and the power of y increases one each term. The coefficients are a little bit more complicated. For each we take the previous coefficient, multiply it by the previous power of x and divide it by the current power of y.
How do we use it here.
We make a guess. $aapprox x^frac 1n. $ It has some error we will call $b$
$x^frac 1n = (a^n + b)^frac 1n$
And using the generalized binomial thereom.
$x^frac 1n = a + frac {1}{n}frac {b}{a^{n-1}} - frac {1(n-1)}{2n^2}frac {b^2}{a^{2n-1}} + frac {1(n-1)(2n-2)}{6n^3}frac {b^3}{a^{3n-1}} + cdots$
For example
$71^frac 13 = (4^3 + 7)^frac 13\
4 + frac {1}{3}frac {7}{4^2} - frac {1cdot 2}{2cdot 3^2}frac {7^2}{4^5}+frac {1cdot 2 cdot 5}{3!cdot 3^3}frac {7^3}{4^8}- cdots$
$4 + frac {7}{48} - frac {49}{2304}+frac {1715}{530846}- cdots$
As you can see that denominator is growing rapidly.
$endgroup$
1
$begingroup$
As you add more terms, each term is approximately $frac {7}{64}$ of the previous term.
$endgroup$
– Doug M
Jan 18 at 19:21
add a comment |
$begingroup$
Here is a method. It does require an initial guess, though.
The generalized binomial theorm:
$(x+y)^k = x^k + kx^{k-1}y + frac {k(k-1)}{2} x^{k-2}y^2 + cdots$
We can see that the power of x drops each term, and the power of y increases one each term. The coefficients are a little bit more complicated. For each we take the previous coefficient, multiply it by the previous power of x and divide it by the current power of y.
How do we use it here.
We make a guess. $aapprox x^frac 1n. $ It has some error we will call $b$
$x^frac 1n = (a^n + b)^frac 1n$
And using the generalized binomial thereom.
$x^frac 1n = a + frac {1}{n}frac {b}{a^{n-1}} - frac {1(n-1)}{2n^2}frac {b^2}{a^{2n-1}} + frac {1(n-1)(2n-2)}{6n^3}frac {b^3}{a^{3n-1}} + cdots$
For example
$71^frac 13 = (4^3 + 7)^frac 13\
4 + frac {1}{3}frac {7}{4^2} - frac {1cdot 2}{2cdot 3^2}frac {7^2}{4^5}+frac {1cdot 2 cdot 5}{3!cdot 3^3}frac {7^3}{4^8}- cdots$
$4 + frac {7}{48} - frac {49}{2304}+frac {1715}{530846}- cdots$
As you can see that denominator is growing rapidly.
$endgroup$
Here is a method. It does require an initial guess, though.
The generalized binomial theorm:
$(x+y)^k = x^k + kx^{k-1}y + frac {k(k-1)}{2} x^{k-2}y^2 + cdots$
We can see that the power of x drops each term, and the power of y increases one each term. The coefficients are a little bit more complicated. For each we take the previous coefficient, multiply it by the previous power of x and divide it by the current power of y.
How do we use it here.
We make a guess. $aapprox x^frac 1n. $ It has some error we will call $b$
$x^frac 1n = (a^n + b)^frac 1n$
And using the generalized binomial thereom.
$x^frac 1n = a + frac {1}{n}frac {b}{a^{n-1}} - frac {1(n-1)}{2n^2}frac {b^2}{a^{2n-1}} + frac {1(n-1)(2n-2)}{6n^3}frac {b^3}{a^{3n-1}} + cdots$
For example
$71^frac 13 = (4^3 + 7)^frac 13\
4 + frac {1}{3}frac {7}{4^2} - frac {1cdot 2}{2cdot 3^2}frac {7^2}{4^5}+frac {1cdot 2 cdot 5}{3!cdot 3^3}frac {7^3}{4^8}- cdots$
$4 + frac {7}{48} - frac {49}{2304}+frac {1715}{530846}- cdots$
As you can see that denominator is growing rapidly.
answered Jan 18 at 18:47
Doug MDoug M
45.4k31954
45.4k31954
1
$begingroup$
As you add more terms, each term is approximately $frac {7}{64}$ of the previous term.
$endgroup$
– Doug M
Jan 18 at 19:21
add a comment |
1
$begingroup$
As you add more terms, each term is approximately $frac {7}{64}$ of the previous term.
$endgroup$
– Doug M
Jan 18 at 19:21
1
1
$begingroup$
As you add more terms, each term is approximately $frac {7}{64}$ of the previous term.
$endgroup$
– Doug M
Jan 18 at 19:21
$begingroup$
As you add more terms, each term is approximately $frac {7}{64}$ of the previous term.
$endgroup$
– Doug M
Jan 18 at 19:21
add a comment |
Thanks for contributing an answer to Mathematics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3078509%2fis-there-a-simpler-method-of-calculating-sqrtnx%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
$begingroup$
In a way, every possible method involves some guessing and iterative approximation. How else would you arrive at the inifinitely many quite irregular digits $1.414213562373095ldots$ when looking for $sqrt 2$? Note that a similar guess-and-approve takes place for example when performing a long division to find $frac 27=0.285714ldots$
$endgroup$
– Hagen von Eitzen
Jan 18 at 17:10
$begingroup$
For those old people brought up using common logarithms and with access to a table of logarithms, the second method (with $b=10$) is simple. For younger people with access to a calculator with an $x^y$ button, the calculation can be done directly
$endgroup$
– Henry
Jan 18 at 17:34
$begingroup$
@Henry - what if you want 12 digits? My old logarithm table (which I threw away around 1973) had only 4 digits. The CRC table in my bookshelf (which I will throw out today) has only 10 digits for natural logarithms.
$endgroup$
– Hans Engler
Jan 18 at 17:51
$begingroup$
How do you define "simple" and "complex"? Otherwise that is opinion based?
$endgroup$
– Somos
Jan 18 at 18:08
$begingroup$
@Somos Since my knowledge of mathematics is lacking I would go with the textbook definitions.
$endgroup$
– PerpetualJ
Jan 18 at 18:09