What is the Role of J in this Summation Problem?

  • Thread starter Thread starter EvLer
  • Start date Start date
  • Tags Tags
    Summation
AI Thread Summary
The discussion focuses on understanding the role of variable j in a nested summation problem. The code provided iterates through three nested loops, with j defined as j = i + p - 1. Participants clarify that j primarily serves as the upper bound for the innermost summation. By substituting j with its definition, the expression can be simplified to eliminate j, allowing it to be expressed solely in terms of n. This approach resolves the confusion about j's necessity in the summation.
EvLer
Messages
454
Reaction score
0
Hello, I really trying to understand what is going on with these summations.
the code is following:
Code:
for p = 2 to n
    for i = 1 to n - p + 1
        j = i + p -1
        for k = i to j - 1
           O(1) + O(1)
Does j enter anywhere here besides the upper bound of the inner-most summation?
Here is what I have so far
Code:
    n     n-p+1    j-1
  Sigma  Sigma    Sigma(C) = Sigma  (C) Sigma (j-1-i) = ...
   p=2    i=1      k=i

then I break up the double sums on sums of j, -1, and i.
In the course of my attempt to solve this thing, I cannot get rid of j, while the expression is supposed to be in terms of n.
How do I get around it?

Thanks a lot.
 
Physics news on Phys.org
EvLer said:
Hello, I really trying to understand what is going on with these summations.
the code is following:
Code:
for p = 2 to n
    for i = 1 to n - p + 1
        j = i + p -1
        for k = i to j - 1
           O(1) + O(1)

 In the course of my attempt to solve this thing, I cannot get rid of j, while the expression is supposed to be in terms of n.
How do I get around it?

.[/QUOTE]

You seem to forget about the third line, j=i+p-1. 

ehild
 
Even with that, I still have j and cannot get rid of it!
 
You have \sum_{p=2}^{n}\sum_{i=1}^{n-p+1}\sum_{k=i}^{j-1}C right?

Stick in j=i+p-1, which is assigned before your 3rd loop, and you get:

\sum_{p=2}^{n}\sum_{i=1}^{n-p+1}\sum_{k=i}^{i+p-2}C

No more j.
 
Thread 'Collision of a bullet on a rod-string system: query'
In this question, I have a question. I am NOT trying to solve it, but it is just a conceptual question. Consider the point on the rod, which connects the string and the rod. My question: just before and after the collision, is ANGULAR momentum CONSERVED about this point? Lets call the point which connects the string and rod as P. Why am I asking this? : it is clear from the scenario that the point of concern, which connects the string and the rod, moves in a circular path due to the string...
Back
Top