Summations of a summation without upper bound as a lemma Unicorn Meta Zoo #1: Why another...
Retract an already submitted recommendation letter (written for an undergrad student)
My bank got bought out, am I now going to have to start filing tax returns in a different state?
Mistake in years of experience in resume?
What's the difference between using dependency injection with a container and using a service locator?
"Whatever a Russian does, they end up making the Kalashnikov gun"? Are there any similar proverbs in English?
Is it acceptable to use working hours to read general interest books?
Expansion//Explosion and Siren Stormtamer
What is the ongoing value of the Kanban board to the developers as opposed to management
Co-worker works way more than he should
Can I criticise the more senior developers around me for not writing clean code?
Is Diceware more secure than a long passphrase?
Israeli soda type drink
The art of proof summarizing. Are there known rules, or is it a purely common sense matter?
std::is_constructible on incomplete types
Why is this method for solving linear equations systems using determinants works?
Map material from china not allowed to leave the country
Why does the Cisco show run command not show the full version, while the show version command does?
Will I lose my paid in full property
How long after the last departure shall the airport stay open for an emergency return?
Trumpet valves, lengths, and pitch
"My boss was furious with me and I have been fired" vs. "My boss was furious with me and I was fired"
Why did C use the -> operator instead of reusing the . operator?
What is "leading note" and what does it mean to "raise a note"?
What's parked in Mil Moscow helicopter plant?
Summations of a summation without upper bound as a lemma
Unicorn Meta Zoo #1: Why another podcast?
Announcing the arrival of Valued Associate #679: Cesar ManaraMath symbol question: Vertical bar for ''evaluated at …'' How to place a symbol under an arrow in Latex when using tikz packageUse integral or sigma as delimiter?Align multiple equationshow to add label to matrices multiplicationMissing } inserted begin{equation}How can I align this equation in the center?Parentheses for three lines of codeReledmac critical footnote without lemmaChanging font size of a specific portion of the overall document
So I have a paper I'm writing for a class that requires me to include a proof. I have the proof all sorted out on paper but I'm having a very hard time figuring out where to begin in Latex. I need to include the picture below as a lemma so it will appear in the equation listed in the code below. I already have newtheorem{lemm}{Lemma} at the top of my document. Basically, if I can figure out how to code the equation from the image into Latex as a lemma, I think I'll have everything I need to code the rest of the proof. I'm very new at Latex so this is a daunting task for me. Any feedback or suggestions would be much appreciated.
begin{lemm}
A(x)B(x)=
end{lemm}

equations symbols lemma
add a comment |
So I have a paper I'm writing for a class that requires me to include a proof. I have the proof all sorted out on paper but I'm having a very hard time figuring out where to begin in Latex. I need to include the picture below as a lemma so it will appear in the equation listed in the code below. I already have newtheorem{lemm}{Lemma} at the top of my document. Basically, if I can figure out how to code the equation from the image into Latex as a lemma, I think I'll have everything I need to code the rest of the proof. I'm very new at Latex so this is a daunting task for me. Any feedback or suggestions would be much appreciated.
begin{lemm}
A(x)B(x)=
end{lemm}

equations symbols lemma
add a comment |
So I have a paper I'm writing for a class that requires me to include a proof. I have the proof all sorted out on paper but I'm having a very hard time figuring out where to begin in Latex. I need to include the picture below as a lemma so it will appear in the equation listed in the code below. I already have newtheorem{lemm}{Lemma} at the top of my document. Basically, if I can figure out how to code the equation from the image into Latex as a lemma, I think I'll have everything I need to code the rest of the proof. I'm very new at Latex so this is a daunting task for me. Any feedback or suggestions would be much appreciated.
begin{lemm}
A(x)B(x)=
end{lemm}

equations symbols lemma
So I have a paper I'm writing for a class that requires me to include a proof. I have the proof all sorted out on paper but I'm having a very hard time figuring out where to begin in Latex. I need to include the picture below as a lemma so it will appear in the equation listed in the code below. I already have newtheorem{lemm}{Lemma} at the top of my document. Basically, if I can figure out how to code the equation from the image into Latex as a lemma, I think I'll have everything I need to code the rest of the proof. I'm very new at Latex so this is a daunting task for me. Any feedback or suggestions would be much appreciated.
begin{lemm}
A(x)B(x)=
end{lemm}

equations symbols lemma
equations symbols lemma
asked 9 mins ago
Alex AdinolfiAlex Adinolfi
261
261
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Something like this?

documentclass{article}
usepackage{amsthm}
newtheorem{lemm}{Lemma}
begin{document}
begin{lemm}
[
A(x)B(x) = sum_{kge0} biggl( sum_{i=0}^{k}a_ib_{k-i} biggr) x^k
]
end{lemm}
end{document}
add a comment |
begin{lemm}
begin{eqnarray}
A(x)B(x)=
sum_{kgeq 0}
left(
sum_{i=0}^k a_i b_{k-i}
right)
x^k
end{eqnarray}
end{lemm}
New contributor
James Silipo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Why use aneqnarrayenvironment?
– Mico
1 min ago
Why not? It is useful to have a numbered equation to refer to
– James Silipo
36 secs ago
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
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%2ftex.stackexchange.com%2fquestions%2f487458%2fsummations-of-a-summation-without-upper-bound-as-a-lemma%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
Something like this?

documentclass{article}
usepackage{amsthm}
newtheorem{lemm}{Lemma}
begin{document}
begin{lemm}
[
A(x)B(x) = sum_{kge0} biggl( sum_{i=0}^{k}a_ib_{k-i} biggr) x^k
]
end{lemm}
end{document}
add a comment |
Something like this?

documentclass{article}
usepackage{amsthm}
newtheorem{lemm}{Lemma}
begin{document}
begin{lemm}
[
A(x)B(x) = sum_{kge0} biggl( sum_{i=0}^{k}a_ib_{k-i} biggr) x^k
]
end{lemm}
end{document}
add a comment |
Something like this?

documentclass{article}
usepackage{amsthm}
newtheorem{lemm}{Lemma}
begin{document}
begin{lemm}
[
A(x)B(x) = sum_{kge0} biggl( sum_{i=0}^{k}a_ib_{k-i} biggr) x^k
]
end{lemm}
end{document}
Something like this?

documentclass{article}
usepackage{amsthm}
newtheorem{lemm}{Lemma}
begin{document}
begin{lemm}
[
A(x)B(x) = sum_{kge0} biggl( sum_{i=0}^{k}a_ib_{k-i} biggr) x^k
]
end{lemm}
end{document}
answered 3 mins ago
MicoMico
288k32394782
288k32394782
add a comment |
add a comment |
begin{lemm}
begin{eqnarray}
A(x)B(x)=
sum_{kgeq 0}
left(
sum_{i=0}^k a_i b_{k-i}
right)
x^k
end{eqnarray}
end{lemm}
New contributor
James Silipo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Why use aneqnarrayenvironment?
– Mico
1 min ago
Why not? It is useful to have a numbered equation to refer to
– James Silipo
36 secs ago
add a comment |
begin{lemm}
begin{eqnarray}
A(x)B(x)=
sum_{kgeq 0}
left(
sum_{i=0}^k a_i b_{k-i}
right)
x^k
end{eqnarray}
end{lemm}
New contributor
James Silipo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Why use aneqnarrayenvironment?
– Mico
1 min ago
Why not? It is useful to have a numbered equation to refer to
– James Silipo
36 secs ago
add a comment |
begin{lemm}
begin{eqnarray}
A(x)B(x)=
sum_{kgeq 0}
left(
sum_{i=0}^k a_i b_{k-i}
right)
x^k
end{eqnarray}
end{lemm}
New contributor
James Silipo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
begin{lemm}
begin{eqnarray}
A(x)B(x)=
sum_{kgeq 0}
left(
sum_{i=0}^k a_i b_{k-i}
right)
x^k
end{eqnarray}
end{lemm}
New contributor
James Silipo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited 1 min ago
New contributor
James Silipo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
answered 2 mins ago
James SilipoJames Silipo
11
11
New contributor
James Silipo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
James Silipo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
James Silipo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Why use aneqnarrayenvironment?
– Mico
1 min ago
Why not? It is useful to have a numbered equation to refer to
– James Silipo
36 secs ago
add a comment |
Why use aneqnarrayenvironment?
– Mico
1 min ago
Why not? It is useful to have a numbered equation to refer to
– James Silipo
36 secs ago
Why use an
eqnarray environment?– Mico
1 min ago
Why use an
eqnarray environment?– Mico
1 min ago
Why not? It is useful to have a numbered equation to refer to
– James Silipo
36 secs ago
Why not? It is useful to have a numbered equation to refer to
– James Silipo
36 secs ago
add a comment |
Thanks for contributing an answer to TeX - LaTeX 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.
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%2ftex.stackexchange.com%2fquestions%2f487458%2fsummations-of-a-summation-without-upper-bound-as-a-lemma%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