How to calculate complex expression in WolframAlphaHow to figure out how to make WolframAlpha work...
Convert shapefille to KML
“I hope he visit us more often” Why is this wrong?
Is it recommended to point out a professor's mistake during their lecture?
Why haven't the British protested Brexit as ardently like Hong Kongers protest?
Why did Lucius make a deal out of Buckbeak hurting Draco but not about Draco being turned into a ferret?
Defending Castle from Zombies
Pen test results for web application include a file from a forbidden directory that is not even used or referenced
Printing a list as "a, b, c." using Python
What is the purpose of Strength, Intelligence and Dexterity in Path of Exile?
basename "$0" not working
Why does Sauron not permit his followers to use his name?
having problems with greek characters in a table using csvsimple
Idiomatic way to create an immutable and efficient class in C++?
How to save money by shopping at a variety of grocery stores?
Why do motor drives have multiple bus capacitors of small value capacitance instead of a single bus capacitor of large value?
How can I fix cracks between the bathtub and the wall surround?
What should be done with the carbon when using magic to get oxygen from carbon dioxide?
Why do IR remotes influence AM radios?
What control character is ^ in the buffer in a file open in vim?
Count the number of triangles
Is there an in-universe explanation given to the senior Imperial Navy Officers as to why Darth Vader serves Emperor Palpatine?
Get contents before a colon
Heat output from a 200W electric radiator?
Historical Daf Yomi calendar
How to calculate complex expression in WolframAlpha
How to figure out how to make WolframAlpha work predictablyQuestion about sum and list in a functionProblem evaluating a complicated integralFailed to use N[%] for a infinite seriesCalculating sum of BesselJ[n, x]Error with Wolfram AlphaNumerical result using summation limitChecking an interesting result for a sum
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
$begingroup$
I need to evaluate the limit:
$$lim_{ntoinfty}prod_{k=1}^infty left(1-frac{n}{left(frac{n+sqrt{n^2+4}}{2}right)^k+frac{n+sqrt{n^2+4}}{2}}right).$$
I could not type into WolframAlpha and find its value. Can someone help me?
summation wolfram-alpha-queries
New contributor
$endgroup$
add a comment |
$begingroup$
I need to evaluate the limit:
$$lim_{ntoinfty}prod_{k=1}^infty left(1-frac{n}{left(frac{n+sqrt{n^2+4}}{2}right)^k+frac{n+sqrt{n^2+4}}{2}}right).$$
I could not type into WolframAlpha and find its value. Can someone help me?
summation wolfram-alpha-queries
New contributor
$endgroup$
1
$begingroup$
The way you could type that into WolframAlpha, or Mathematica isLimit[Product[1-n/(((n+Sqrt[n^2+4])/2)^k+(n+Sqrt[n^2+4])/2),{k,1,Infinity}],n->Infinity]
but it appears that neither of those are able to see a way to give you the limit. They do not appear to solve even the simplerLimit[Product[1-n/(n^k+n),{k,1,Infinity}],n->Infinity]
Perhaps you can think of a way to simplify your problem.
$endgroup$
– Bill
7 hours ago
add a comment |
$begingroup$
I need to evaluate the limit:
$$lim_{ntoinfty}prod_{k=1}^infty left(1-frac{n}{left(frac{n+sqrt{n^2+4}}{2}right)^k+frac{n+sqrt{n^2+4}}{2}}right).$$
I could not type into WolframAlpha and find its value. Can someone help me?
summation wolfram-alpha-queries
New contributor
$endgroup$
I need to evaluate the limit:
$$lim_{ntoinfty}prod_{k=1}^infty left(1-frac{n}{left(frac{n+sqrt{n^2+4}}{2}right)^k+frac{n+sqrt{n^2+4}}{2}}right).$$
I could not type into WolframAlpha and find its value. Can someone help me?
summation wolfram-alpha-queries
summation wolfram-alpha-queries
New contributor
New contributor
New contributor
asked 8 hours ago
bilgamishbilgamish
61 bronze badge
61 bronze badge
New contributor
New contributor
1
$begingroup$
The way you could type that into WolframAlpha, or Mathematica isLimit[Product[1-n/(((n+Sqrt[n^2+4])/2)^k+(n+Sqrt[n^2+4])/2),{k,1,Infinity}],n->Infinity]
but it appears that neither of those are able to see a way to give you the limit. They do not appear to solve even the simplerLimit[Product[1-n/(n^k+n),{k,1,Infinity}],n->Infinity]
Perhaps you can think of a way to simplify your problem.
$endgroup$
– Bill
7 hours ago
add a comment |
1
$begingroup$
The way you could type that into WolframAlpha, or Mathematica isLimit[Product[1-n/(((n+Sqrt[n^2+4])/2)^k+(n+Sqrt[n^2+4])/2),{k,1,Infinity}],n->Infinity]
but it appears that neither of those are able to see a way to give you the limit. They do not appear to solve even the simplerLimit[Product[1-n/(n^k+n),{k,1,Infinity}],n->Infinity]
Perhaps you can think of a way to simplify your problem.
$endgroup$
– Bill
7 hours ago
1
1
$begingroup$
The way you could type that into WolframAlpha, or Mathematica is
Limit[Product[1-n/(((n+Sqrt[n^2+4])/2)^k+(n+Sqrt[n^2+4])/2),{k,1,Infinity}],n->Infinity]
but it appears that neither of those are able to see a way to give you the limit. They do not appear to solve even the simpler Limit[Product[1-n/(n^k+n),{k,1,Infinity}],n->Infinity]
Perhaps you can think of a way to simplify your problem.$endgroup$
– Bill
7 hours ago
$begingroup$
The way you could type that into WolframAlpha, or Mathematica is
Limit[Product[1-n/(((n+Sqrt[n^2+4])/2)^k+(n+Sqrt[n^2+4])/2),{k,1,Infinity}],n->Infinity]
but it appears that neither of those are able to see a way to give you the limit. They do not appear to solve even the simpler Limit[Product[1-n/(n^k+n),{k,1,Infinity}],n->Infinity]
Perhaps you can think of a way to simplify your problem.$endgroup$
– Bill
7 hours ago
add a comment |
2 Answers
2
active
oldest
votes
$begingroup$
With Mathematica I have:
func[n_] := NProduct[1 - n/(((n + Sqrt[n^2 + 4])/2)^k + (n + Sqrt[n^2 + 4])/2), {k, 1, Infinity}]
Table[func[10^n], {n, 1, 10}]
(*{0.454951, 0.49505, 0.4995, 0.49995, 0.499995, 0.5, 0.5, 0.5, 0.5, 0.5} *)
It looks like the limit is: 1/2
$endgroup$
add a comment |
$begingroup$
Analytically, it is easy to see that the first term in the product has a limiting value of 1/2 and all the other terms have limiting values of 1. My maths is a bit rusty, but I suspect that you can justify changing the order of the two limiting processes.
$endgroup$
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "387"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
bilgamish is a new contributor. Be nice, and check out our Code of Conduct.
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%2fmathematica.stackexchange.com%2fquestions%2f204528%2fhow-to-calculate-complex-expression-in-wolframalpha%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$
With Mathematica I have:
func[n_] := NProduct[1 - n/(((n + Sqrt[n^2 + 4])/2)^k + (n + Sqrt[n^2 + 4])/2), {k, 1, Infinity}]
Table[func[10^n], {n, 1, 10}]
(*{0.454951, 0.49505, 0.4995, 0.49995, 0.499995, 0.5, 0.5, 0.5, 0.5, 0.5} *)
It looks like the limit is: 1/2
$endgroup$
add a comment |
$begingroup$
With Mathematica I have:
func[n_] := NProduct[1 - n/(((n + Sqrt[n^2 + 4])/2)^k + (n + Sqrt[n^2 + 4])/2), {k, 1, Infinity}]
Table[func[10^n], {n, 1, 10}]
(*{0.454951, 0.49505, 0.4995, 0.49995, 0.499995, 0.5, 0.5, 0.5, 0.5, 0.5} *)
It looks like the limit is: 1/2
$endgroup$
add a comment |
$begingroup$
With Mathematica I have:
func[n_] := NProduct[1 - n/(((n + Sqrt[n^2 + 4])/2)^k + (n + Sqrt[n^2 + 4])/2), {k, 1, Infinity}]
Table[func[10^n], {n, 1, 10}]
(*{0.454951, 0.49505, 0.4995, 0.49995, 0.499995, 0.5, 0.5, 0.5, 0.5, 0.5} *)
It looks like the limit is: 1/2
$endgroup$
With Mathematica I have:
func[n_] := NProduct[1 - n/(((n + Sqrt[n^2 + 4])/2)^k + (n + Sqrt[n^2 + 4])/2), {k, 1, Infinity}]
Table[func[10^n], {n, 1, 10}]
(*{0.454951, 0.49505, 0.4995, 0.49995, 0.499995, 0.5, 0.5, 0.5, 0.5, 0.5} *)
It looks like the limit is: 1/2
answered 7 hours ago
Mariusz IwaniukMariusz Iwaniuk
7,2301 gold badge12 silver badges30 bronze badges
7,2301 gold badge12 silver badges30 bronze badges
add a comment |
add a comment |
$begingroup$
Analytically, it is easy to see that the first term in the product has a limiting value of 1/2 and all the other terms have limiting values of 1. My maths is a bit rusty, but I suspect that you can justify changing the order of the two limiting processes.
$endgroup$
add a comment |
$begingroup$
Analytically, it is easy to see that the first term in the product has a limiting value of 1/2 and all the other terms have limiting values of 1. My maths is a bit rusty, but I suspect that you can justify changing the order of the two limiting processes.
$endgroup$
add a comment |
$begingroup$
Analytically, it is easy to see that the first term in the product has a limiting value of 1/2 and all the other terms have limiting values of 1. My maths is a bit rusty, but I suspect that you can justify changing the order of the two limiting processes.
$endgroup$
Analytically, it is easy to see that the first term in the product has a limiting value of 1/2 and all the other terms have limiting values of 1. My maths is a bit rusty, but I suspect that you can justify changing the order of the two limiting processes.
answered 4 hours ago
mikadomikado
7,3921 gold badge9 silver badges29 bronze badges
7,3921 gold badge9 silver badges29 bronze badges
add a comment |
add a comment |
bilgamish is a new contributor. Be nice, and check out our Code of Conduct.
bilgamish is a new contributor. Be nice, and check out our Code of Conduct.
bilgamish is a new contributor. Be nice, and check out our Code of Conduct.
bilgamish is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Mathematica 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%2fmathematica.stackexchange.com%2fquestions%2f204528%2fhow-to-calculate-complex-expression-in-wolframalpha%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$
The way you could type that into WolframAlpha, or Mathematica is
Limit[Product[1-n/(((n+Sqrt[n^2+4])/2)^k+(n+Sqrt[n^2+4])/2),{k,1,Infinity}],n->Infinity]
but it appears that neither of those are able to see a way to give you the limit. They do not appear to solve even the simplerLimit[Product[1-n/(n^k+n),{k,1,Infinity}],n->Infinity]
Perhaps you can think of a way to simplify your problem.$endgroup$
– Bill
7 hours ago