When one writes $$\sum_{i+j=4} a_i a_j$$ is that then equal to $$a_0a_4 + a_1a_3 + a_2^2$$ or $$\sum_{i=0}^4 a_i a_{4-i}=2a_0a_4+2a_1a_3 + a_2^2$$ I suddenly got confused while writing these sigmas down. Perhaps it depends on context or perhaps not? Thanks for any help.
2026-04-09 15:59:36.1775750376
Notation of sigmas
102 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in NOTATION
- Symbol for assignment of a truth-value?
- Does approximation usually exclude equality?
- Is division inherently the last operation when using fraction notation or is the order of operation always PEMDAS?
- Question about notation $S^c$
- strange partial integration
- What does Kx mean in this equation? [in Carnap or Russell and Whitehead's logical notation]
- Need help with notation. Is this lower dot an operation?
- What does this "\" mathematics symbol mean?
- Why a set or vector start counting from a negative or zero index?
- How to express a sentence having two for all?
Related Questions in SUMMATION
- Computing:$\sum_{n=0}^\infty\frac{3^n}{n!(n+3)}$
- Prove that $1+{1\over 1+{1\over 1+{1\over 1+{1\over 1+...}}}}=\sqrt{1+\sqrt{1+\sqrt{1+\sqrt{1+...}}}}$
- Fourier series. Find the sum $\sum_{n=1}^\infty \frac{(-1)^{n+1}}{2n+1}$
- Sigma (sum) Problem
- How to prove the inequality $\frac{1}{n}+\frac{1}{n+1}+\cdots+\frac{1}{2n-1}\geq \log (2)$?
- Double-exponential sum (maybe it telescopes?)
- Simplify $\prod_{k=1}^{l} \sum_{r=d}^m {{m}\choose{r}} \left(N-k \right)^{r} k^{m-r+1}$
- Sum of two martingales
- How can we prove that $e^{-jωn}$ converges at $0$ while n -> infinity?
- Interesting inequalities
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
I think that there is no ambiguity on the sum. When you write
$$ \sum_{i+j = 4} a_i a_j$$
you are summing over the set of all solutions of $i+j = 4$. The solutions are
So the sum should result:
$$ \sum_{i+j = 4} a_i a_j = a_0a_4 + a_1a_3 + a_2a_2 + a_3a_1 + a_4a_0 = 2a_0a_4 + 2a_1a_3 + a_2^2$$
The confusions only happens because you are indexing $a$ twice, how would you interpret the following sum? $$ \sum_{i+j = 4} a_i b_j$$
Most of the places where sums like this appears on the indexing set of the summation, it on a product of generating functions / power series, like this:
$$ \left ( \sum_{i=0}^\infty a_i x^i \right ) \left ( \sum_{j=0}^\infty b_j x^j \right ) = \sum_{n=0}^\infty \left ( \sum_{i+j = n} a_i b_j \right )x^n $$
Note that the coefficient of $x^n$ on the right-hand side is a sum like yours. The correct interpretation on this case should be:
$$ \sum_{i+j = n} a_i b_j = a_0 b_n + a_1 b_{n-1} + a_2 b_{n-2} + \dotsc + a_n b_0 $$
This also expands nicely for multiple variables, so we have things like the multinomial theorem
$$\left ( x_1 + x_2 + \dotsc + x_m \right )^n = \sum_{k_1 + k_2 + \dotsc + k_m = n} \binom{n}{k_1,k_2,\dotsc,k_m} \prod_{t=1}^{m}x_t^{k_t}$$
here the sum have to be interpreted as being over all the $m$-tuples $(k_1, k_2, \dotsc, k_m)$ satisfying the equation. So this is the standard interpretation for sums of this type.
Of course that maybe you want to sum over the set that you have presented, but then I think is best to indicate explicitly, as that's not the common case. One way to do it would be:
$$\sum_{\substack{i+j = 4 \\ i \leq j}} a_i a_j = a_0a_4 + a_1 a_3 + a_2^2$$
Note that this can also be easily generalized.