What is the meaning of “True” in the following result?Question about sum and list in a functionProblem evaluating a complicated integralSumConvergence[((-1)^n)/(Sqrt[n] + (-1)^n), n] returns True in Version 10.2?Infinite Sum: $sum_k (ak^2+bk+c)^-1$Numerical result using summation limitLeave Kronecker deltas unevaluatedReturn analytic expressionComputing numerically infinite sum of some double seriesEfficiently define a function as the numerical result of infinite sumsWhy is the result of a Cesaro regularized sum dependant on a mathematically redundant parameter?
Public transport tickets in UK for two weeks
The art of clickbait captions
Take elements from a list based on two criteria
What's difference between "depends on" and "is blocked by" relations between issues in Jira next-gen board?
Can you output map values in visualforce inline using a string key?
Can a person survive on blood in place of water?
Function argument returning void or non-void type
Beginner looking to learn/master musical theory and instrumental ability. Where should I begin?
What weight should be given to writers groups critiques?
Should there be an "a" before "ten years imprisonment"?
Why did Jon Snow do this immoral act if he is so honorable?
Why does Bran want to find Drogon?
What Armor Optimization applies to a Mithral full plate?
Why are GND pads often only connected by four traces?
Can I tell a prospective employee that everyone in the team is leaving?
Natural Armour and Weapons
Non-containing subsets of two sizes
Is it possible to prohibit all prohibitable schools of magic with a single character?
WAS IT A CAT I SAW? Do Some Detective Work & Catch The Imposters
Is it legal to meet with potential future employers in the UK, whilst visiting from the USA
Time complexity of an algorithm: Is it important to state the base of the logarithm?
Is it legal to have an abortion in another state or abroad?
Is there a simple example that empirical evidence is misleading?
Of strange atmospheres - the survivable but unbreathable
What is the meaning of “True” in the following result?
Question about sum and list in a functionProblem evaluating a complicated integralSumConvergence[((-1)^n)/(Sqrt[n] + (-1)^n), n] returns True in Version 10.2?Infinite Sum: $sum_k (ak^2+bk+c)^-1$Numerical result using summation limitLeave Kronecker deltas unevaluatedReturn analytic expressionComputing numerically infinite sum of some double seriesEfficiently define a function as the numerical result of infinite sumsWhy is the result of a Cesaro regularized sum dependant on a mathematically redundant parameter?
$begingroup$
When I do the sum
Sum[(a + (b + [Pi] n)^2)^(-1), n, -[Infinity], [Infinity]]
the result reads
$$beginarraycc
{ &
beginarraycc
fraccoth left(sqrta+i bright)+coth left(sqrta-i bright)2 sqrta & arg left(sqrta-i bright)geq -fracpi 2land arg left(sqrta-i bright)leq fracpi 2 \
fraccoth left(sqrta+i bright)2 sqrta+fraccoth left(sqrta-i bright)2 sqrta-frac1sqrta & textTrue \
endarray
\
endarray
$$
What is the meaning of "True" in the second result?
If I get rid of "pi", the result is simply:
$$ frac-pi cot left(pi sqrt-a+pi bright)-pi cot left(pi sqrt-a-pi bright)2 sqrt-a$$
summation
$endgroup$
add a comment |
$begingroup$
When I do the sum
Sum[(a + (b + [Pi] n)^2)^(-1), n, -[Infinity], [Infinity]]
the result reads
$$beginarraycc
{ &
beginarraycc
fraccoth left(sqrta+i bright)+coth left(sqrta-i bright)2 sqrta & arg left(sqrta-i bright)geq -fracpi 2land arg left(sqrta-i bright)leq fracpi 2 \
fraccoth left(sqrta+i bright)2 sqrta+fraccoth left(sqrta-i bright)2 sqrta-frac1sqrta & textTrue \
endarray
\
endarray
$$
What is the meaning of "True" in the second result?
If I get rid of "pi", the result is simply:
$$ frac-pi cot left(pi sqrt-a+pi bright)-pi cot left(pi sqrt-a-pi bright)2 sqrt-a$$
summation
$endgroup$
add a comment |
$begingroup$
When I do the sum
Sum[(a + (b + [Pi] n)^2)^(-1), n, -[Infinity], [Infinity]]
the result reads
$$beginarraycc
{ &
beginarraycc
fraccoth left(sqrta+i bright)+coth left(sqrta-i bright)2 sqrta & arg left(sqrta-i bright)geq -fracpi 2land arg left(sqrta-i bright)leq fracpi 2 \
fraccoth left(sqrta+i bright)2 sqrta+fraccoth left(sqrta-i bright)2 sqrta-frac1sqrta & textTrue \
endarray
\
endarray
$$
What is the meaning of "True" in the second result?
If I get rid of "pi", the result is simply:
$$ frac-pi cot left(pi sqrt-a+pi bright)-pi cot left(pi sqrt-a-pi bright)2 sqrt-a$$
summation
$endgroup$
When I do the sum
Sum[(a + (b + [Pi] n)^2)^(-1), n, -[Infinity], [Infinity]]
the result reads
$$beginarraycc
{ &
beginarraycc
fraccoth left(sqrta+i bright)+coth left(sqrta-i bright)2 sqrta & arg left(sqrta-i bright)geq -fracpi 2land arg left(sqrta-i bright)leq fracpi 2 \
fraccoth left(sqrta+i bright)2 sqrta+fraccoth left(sqrta-i bright)2 sqrta-frac1sqrta & textTrue \
endarray
\
endarray
$$
What is the meaning of "True" in the second result?
If I get rid of "pi", the result is simply:
$$ frac-pi cot left(pi sqrt-a+pi bright)-pi cot left(pi sqrt-a-pi bright)2 sqrt-a$$
summation
summation
asked 5 hours ago
wonderingwondering
278113
278113
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
See Piecewise. It is like the cases environment in $LaTeX$. In native math, one would use "else" instead of True.
By the way, version 12 returns
$$begincases
fraccoth left(sqrta-i bright)+coth left(sqrta+i
bright)2 sqrta & arg left(b+i sqrtaright)geq 0 \
fraccoth left(sqrta-i bright)2 sqrta+fraccoth
left(sqrta+i bright)2 sqrta-frac1sqrta &
textTrue
endcases$$
to be interpreted as
$$begincases
fraccoth left(sqrta-i bright)+coth left(sqrta+i
bright)2 sqrta & arg left(b+i sqrtaright)geq 0 \
fraccoth left(sqrta-i bright)2 sqrta+fraccoth
left(sqrta+i bright)2 sqrta-frac1sqrta &
textelse
endcases$$
$endgroup$
1
$begingroup$
Ok, so it really simply means "otherwise" or "else" or "in all other cases"?
$endgroup$
– wondering
5 hours ago
$begingroup$
Yes. That is correct.
$endgroup$
– Henrik Schumacher
5 hours ago
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
);
);
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%2f198879%2fwhat-is-the-meaning-of-true-in-the-following-result%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$
See Piecewise. It is like the cases environment in $LaTeX$. In native math, one would use "else" instead of True.
By the way, version 12 returns
$$begincases
fraccoth left(sqrta-i bright)+coth left(sqrta+i
bright)2 sqrta & arg left(b+i sqrtaright)geq 0 \
fraccoth left(sqrta-i bright)2 sqrta+fraccoth
left(sqrta+i bright)2 sqrta-frac1sqrta &
textTrue
endcases$$
to be interpreted as
$$begincases
fraccoth left(sqrta-i bright)+coth left(sqrta+i
bright)2 sqrta & arg left(b+i sqrtaright)geq 0 \
fraccoth left(sqrta-i bright)2 sqrta+fraccoth
left(sqrta+i bright)2 sqrta-frac1sqrta &
textelse
endcases$$
$endgroup$
1
$begingroup$
Ok, so it really simply means "otherwise" or "else" or "in all other cases"?
$endgroup$
– wondering
5 hours ago
$begingroup$
Yes. That is correct.
$endgroup$
– Henrik Schumacher
5 hours ago
add a comment |
$begingroup$
See Piecewise. It is like the cases environment in $LaTeX$. In native math, one would use "else" instead of True.
By the way, version 12 returns
$$begincases
fraccoth left(sqrta-i bright)+coth left(sqrta+i
bright)2 sqrta & arg left(b+i sqrtaright)geq 0 \
fraccoth left(sqrta-i bright)2 sqrta+fraccoth
left(sqrta+i bright)2 sqrta-frac1sqrta &
textTrue
endcases$$
to be interpreted as
$$begincases
fraccoth left(sqrta-i bright)+coth left(sqrta+i
bright)2 sqrta & arg left(b+i sqrtaright)geq 0 \
fraccoth left(sqrta-i bright)2 sqrta+fraccoth
left(sqrta+i bright)2 sqrta-frac1sqrta &
textelse
endcases$$
$endgroup$
1
$begingroup$
Ok, so it really simply means "otherwise" or "else" or "in all other cases"?
$endgroup$
– wondering
5 hours ago
$begingroup$
Yes. That is correct.
$endgroup$
– Henrik Schumacher
5 hours ago
add a comment |
$begingroup$
See Piecewise. It is like the cases environment in $LaTeX$. In native math, one would use "else" instead of True.
By the way, version 12 returns
$$begincases
fraccoth left(sqrta-i bright)+coth left(sqrta+i
bright)2 sqrta & arg left(b+i sqrtaright)geq 0 \
fraccoth left(sqrta-i bright)2 sqrta+fraccoth
left(sqrta+i bright)2 sqrta-frac1sqrta &
textTrue
endcases$$
to be interpreted as
$$begincases
fraccoth left(sqrta-i bright)+coth left(sqrta+i
bright)2 sqrta & arg left(b+i sqrtaright)geq 0 \
fraccoth left(sqrta-i bright)2 sqrta+fraccoth
left(sqrta+i bright)2 sqrta-frac1sqrta &
textelse
endcases$$
$endgroup$
See Piecewise. It is like the cases environment in $LaTeX$. In native math, one would use "else" instead of True.
By the way, version 12 returns
$$begincases
fraccoth left(sqrta-i bright)+coth left(sqrta+i
bright)2 sqrta & arg left(b+i sqrtaright)geq 0 \
fraccoth left(sqrta-i bright)2 sqrta+fraccoth
left(sqrta+i bright)2 sqrta-frac1sqrta &
textTrue
endcases$$
to be interpreted as
$$begincases
fraccoth left(sqrta-i bright)+coth left(sqrta+i
bright)2 sqrta & arg left(b+i sqrtaright)geq 0 \
fraccoth left(sqrta-i bright)2 sqrta+fraccoth
left(sqrta+i bright)2 sqrta-frac1sqrta &
textelse
endcases$$
answered 5 hours ago
Henrik SchumacherHenrik Schumacher
63.1k587176
63.1k587176
1
$begingroup$
Ok, so it really simply means "otherwise" or "else" or "in all other cases"?
$endgroup$
– wondering
5 hours ago
$begingroup$
Yes. That is correct.
$endgroup$
– Henrik Schumacher
5 hours ago
add a comment |
1
$begingroup$
Ok, so it really simply means "otherwise" or "else" or "in all other cases"?
$endgroup$
– wondering
5 hours ago
$begingroup$
Yes. That is correct.
$endgroup$
– Henrik Schumacher
5 hours ago
1
1
$begingroup$
Ok, so it really simply means "otherwise" or "else" or "in all other cases"?
$endgroup$
– wondering
5 hours ago
$begingroup$
Ok, so it really simply means "otherwise" or "else" or "in all other cases"?
$endgroup$
– wondering
5 hours ago
$begingroup$
Yes. That is correct.
$endgroup$
– Henrik Schumacher
5 hours ago
$begingroup$
Yes. That is correct.
$endgroup$
– Henrik Schumacher
5 hours ago
add a comment |
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%2f198879%2fwhat-is-the-meaning-of-true-in-the-following-result%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