how does sqrt(n)/n equal 1/sqrt(n)?
$begingroup$
I'm working through a probability book where the following is stated (chapter 3):
Definition 3.3
Let $a_n$ and $b_n$ be two sequences of numbers.
We say $a_n$ is asymptotically equal to $b_n$, and write $a_n sim b_n$, if ...
$lim_{n to infty} frac{a_n}{b_n} = 1$
Example 3.4
If $a_n = n + sqrt{n}$ and $b_n = n$ then, since $frac{a_n}{b_n} = 1 + 1/sqrt{n}$ and this ratio tends to 1 as $n$ tends to infinity, we have $a_n sim b_n$
My math is very rusty (15+ years), so I'm confused how the following is
arrived at:
$frac{a_n}{b_n} = 1 + frac{1}{sqrt{n}}$
I expected it to be the following ...
$frac{a_n}{b_n} = frac{sqrt{n} + n}{n} = 1 + frac{sqrt{n}}{n}$
Simple answers will be preferred over complex answers.
Edit:
Checking with sympy, it seems that both the book and my version are the same:
>>> a, b, n = symbols('a b n')
>>> a = n + sqrt(n)
>>> b = n
>>> simplify( (a/b) - (1 + 1/sqrt(n)) ) == 0
True
>>> simplify( (a/b) - (1 + sqrt(n)/n) ) == 0
True
# Double check equality
>>> simplify( (1 + sqrt(n)/n) - (1 + 1/sqrt(n)) ) == 0
True
# and ...
>>> simplify( (sqrt(n)/n) - (1/sqrt(n)) ) == 0
True
# and ...
>>> simplify( (sqrt(n)/n) )
1 / sqrt(n)
# Double check I'm not doing something stupid
>>> simplify( (a/b) - (1) ) == 0
False
So my question becomes how can I derive my equation from the book equation.
asymptotics stirling-numbers transpose
$endgroup$
add a comment |
$begingroup$
I'm working through a probability book where the following is stated (chapter 3):
Definition 3.3
Let $a_n$ and $b_n$ be two sequences of numbers.
We say $a_n$ is asymptotically equal to $b_n$, and write $a_n sim b_n$, if ...
$lim_{n to infty} frac{a_n}{b_n} = 1$
Example 3.4
If $a_n = n + sqrt{n}$ and $b_n = n$ then, since $frac{a_n}{b_n} = 1 + 1/sqrt{n}$ and this ratio tends to 1 as $n$ tends to infinity, we have $a_n sim b_n$
My math is very rusty (15+ years), so I'm confused how the following is
arrived at:
$frac{a_n}{b_n} = 1 + frac{1}{sqrt{n}}$
I expected it to be the following ...
$frac{a_n}{b_n} = frac{sqrt{n} + n}{n} = 1 + frac{sqrt{n}}{n}$
Simple answers will be preferred over complex answers.
Edit:
Checking with sympy, it seems that both the book and my version are the same:
>>> a, b, n = symbols('a b n')
>>> a = n + sqrt(n)
>>> b = n
>>> simplify( (a/b) - (1 + 1/sqrt(n)) ) == 0
True
>>> simplify( (a/b) - (1 + sqrt(n)/n) ) == 0
True
# Double check equality
>>> simplify( (1 + sqrt(n)/n) - (1 + 1/sqrt(n)) ) == 0
True
# and ...
>>> simplify( (sqrt(n)/n) - (1/sqrt(n)) ) == 0
True
# and ...
>>> simplify( (sqrt(n)/n) )
1 / sqrt(n)
# Double check I'm not doing something stupid
>>> simplify( (a/b) - (1) ) == 0
False
So my question becomes how can I derive my equation from the book equation.
asymptotics stirling-numbers transpose
$endgroup$
4
$begingroup$
$n=sqrt{n}cdotsqrt{n}$
$endgroup$
– Wojowu
Jan 11 at 18:57
add a comment |
$begingroup$
I'm working through a probability book where the following is stated (chapter 3):
Definition 3.3
Let $a_n$ and $b_n$ be two sequences of numbers.
We say $a_n$ is asymptotically equal to $b_n$, and write $a_n sim b_n$, if ...
$lim_{n to infty} frac{a_n}{b_n} = 1$
Example 3.4
If $a_n = n + sqrt{n}$ and $b_n = n$ then, since $frac{a_n}{b_n} = 1 + 1/sqrt{n}$ and this ratio tends to 1 as $n$ tends to infinity, we have $a_n sim b_n$
My math is very rusty (15+ years), so I'm confused how the following is
arrived at:
$frac{a_n}{b_n} = 1 + frac{1}{sqrt{n}}$
I expected it to be the following ...
$frac{a_n}{b_n} = frac{sqrt{n} + n}{n} = 1 + frac{sqrt{n}}{n}$
Simple answers will be preferred over complex answers.
Edit:
Checking with sympy, it seems that both the book and my version are the same:
>>> a, b, n = symbols('a b n')
>>> a = n + sqrt(n)
>>> b = n
>>> simplify( (a/b) - (1 + 1/sqrt(n)) ) == 0
True
>>> simplify( (a/b) - (1 + sqrt(n)/n) ) == 0
True
# Double check equality
>>> simplify( (1 + sqrt(n)/n) - (1 + 1/sqrt(n)) ) == 0
True
# and ...
>>> simplify( (sqrt(n)/n) - (1/sqrt(n)) ) == 0
True
# and ...
>>> simplify( (sqrt(n)/n) )
1 / sqrt(n)
# Double check I'm not doing something stupid
>>> simplify( (a/b) - (1) ) == 0
False
So my question becomes how can I derive my equation from the book equation.
asymptotics stirling-numbers transpose
$endgroup$
I'm working through a probability book where the following is stated (chapter 3):
Definition 3.3
Let $a_n$ and $b_n$ be two sequences of numbers.
We say $a_n$ is asymptotically equal to $b_n$, and write $a_n sim b_n$, if ...
$lim_{n to infty} frac{a_n}{b_n} = 1$
Example 3.4
If $a_n = n + sqrt{n}$ and $b_n = n$ then, since $frac{a_n}{b_n} = 1 + 1/sqrt{n}$ and this ratio tends to 1 as $n$ tends to infinity, we have $a_n sim b_n$
My math is very rusty (15+ years), so I'm confused how the following is
arrived at:
$frac{a_n}{b_n} = 1 + frac{1}{sqrt{n}}$
I expected it to be the following ...
$frac{a_n}{b_n} = frac{sqrt{n} + n}{n} = 1 + frac{sqrt{n}}{n}$
Simple answers will be preferred over complex answers.
Edit:
Checking with sympy, it seems that both the book and my version are the same:
>>> a, b, n = symbols('a b n')
>>> a = n + sqrt(n)
>>> b = n
>>> simplify( (a/b) - (1 + 1/sqrt(n)) ) == 0
True
>>> simplify( (a/b) - (1 + sqrt(n)/n) ) == 0
True
# Double check equality
>>> simplify( (1 + sqrt(n)/n) - (1 + 1/sqrt(n)) ) == 0
True
# and ...
>>> simplify( (sqrt(n)/n) - (1/sqrt(n)) ) == 0
True
# and ...
>>> simplify( (sqrt(n)/n) )
1 / sqrt(n)
# Double check I'm not doing something stupid
>>> simplify( (a/b) - (1) ) == 0
False
So my question becomes how can I derive my equation from the book equation.
asymptotics stirling-numbers transpose
asymptotics stirling-numbers transpose
edited Jan 11 at 18:54
Chris Snow
asked Jan 11 at 18:28
Chris SnowChris Snow
1738
1738
4
$begingroup$
$n=sqrt{n}cdotsqrt{n}$
$endgroup$
– Wojowu
Jan 11 at 18:57
add a comment |
4
$begingroup$
$n=sqrt{n}cdotsqrt{n}$
$endgroup$
– Wojowu
Jan 11 at 18:57
4
4
$begingroup$
$n=sqrt{n}cdotsqrt{n}$
$endgroup$
– Wojowu
Jan 11 at 18:57
$begingroup$
$n=sqrt{n}cdotsqrt{n}$
$endgroup$
– Wojowu
Jan 11 at 18:57
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
$n = sqrt{n}^2$
So in your result you can simplify both numerator and denominator by $sqrt{n}$ and get the book's result. Or, starting from the book's result, you just have to multiply both by $sqrt{n}$.
$endgroup$
$begingroup$
You use LaTeX exactly the same way as on desktop - put code between dollar signs.
$endgroup$
– Wojowu
Jan 11 at 18:59
$begingroup$
Thanks for that, I'm new on StackExchange so I didn't know it was that simple
$endgroup$
– Ashik4ga
Jan 11 at 19:00
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
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%2f3070182%2fhow-does-sqrtn-n-equal-1-sqrtn%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
$n = sqrt{n}^2$
So in your result you can simplify both numerator and denominator by $sqrt{n}$ and get the book's result. Or, starting from the book's result, you just have to multiply both by $sqrt{n}$.
$endgroup$
$begingroup$
You use LaTeX exactly the same way as on desktop - put code between dollar signs.
$endgroup$
– Wojowu
Jan 11 at 18:59
$begingroup$
Thanks for that, I'm new on StackExchange so I didn't know it was that simple
$endgroup$
– Ashik4ga
Jan 11 at 19:00
add a comment |
$begingroup$
$n = sqrt{n}^2$
So in your result you can simplify both numerator and denominator by $sqrt{n}$ and get the book's result. Or, starting from the book's result, you just have to multiply both by $sqrt{n}$.
$endgroup$
$begingroup$
You use LaTeX exactly the same way as on desktop - put code between dollar signs.
$endgroup$
– Wojowu
Jan 11 at 18:59
$begingroup$
Thanks for that, I'm new on StackExchange so I didn't know it was that simple
$endgroup$
– Ashik4ga
Jan 11 at 19:00
add a comment |
$begingroup$
$n = sqrt{n}^2$
So in your result you can simplify both numerator and denominator by $sqrt{n}$ and get the book's result. Or, starting from the book's result, you just have to multiply both by $sqrt{n}$.
$endgroup$
$n = sqrt{n}^2$
So in your result you can simplify both numerator and denominator by $sqrt{n}$ and get the book's result. Or, starting from the book's result, you just have to multiply both by $sqrt{n}$.
edited Jan 11 at 19:27
Chris Snow
1738
1738
answered Jan 11 at 18:57
Ashik4gaAshik4ga
463
463
$begingroup$
You use LaTeX exactly the same way as on desktop - put code between dollar signs.
$endgroup$
– Wojowu
Jan 11 at 18:59
$begingroup$
Thanks for that, I'm new on StackExchange so I didn't know it was that simple
$endgroup$
– Ashik4ga
Jan 11 at 19:00
add a comment |
$begingroup$
You use LaTeX exactly the same way as on desktop - put code between dollar signs.
$endgroup$
– Wojowu
Jan 11 at 18:59
$begingroup$
Thanks for that, I'm new on StackExchange so I didn't know it was that simple
$endgroup$
– Ashik4ga
Jan 11 at 19:00
$begingroup$
You use LaTeX exactly the same way as on desktop - put code between dollar signs.
$endgroup$
– Wojowu
Jan 11 at 18:59
$begingroup$
You use LaTeX exactly the same way as on desktop - put code between dollar signs.
$endgroup$
– Wojowu
Jan 11 at 18:59
$begingroup$
Thanks for that, I'm new on StackExchange so I didn't know it was that simple
$endgroup$
– Ashik4ga
Jan 11 at 19:00
$begingroup$
Thanks for that, I'm new on StackExchange so I didn't know it was that simple
$endgroup$
– Ashik4ga
Jan 11 at 19:00
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%2f3070182%2fhow-does-sqrtn-n-equal-1-sqrtn%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
4
$begingroup$
$n=sqrt{n}cdotsqrt{n}$
$endgroup$
– Wojowu
Jan 11 at 18:57