Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

given an integer(sum)(>0) can it be expressed as the sum of n terms of arithmetic progression having a positive first term and positive common difference ? I tried the following but doesn't seem to work..

if((n%2==0&&(sum%(n/2)==0)&&sum>1)||(n-1)%2==0)
then yes 
else 
no

Thanks.

share|improve this question
What does +ve common difference mean? – Andrew Shepherd Jan 2 '12 at 2:13
@Andrew 2,4,6 : common diff = 2(+ve) -9,-11,-13 : common diff = -2(-ve) – pranay Jan 2 '12 at 2:17
2  
@pranay: Use "positive" (or "negative") instead; that will cause much less confusion. (I've never seen "+ve" or "-ve" in use before, and didn't understand what it meant until you explained it.) – Aasmund Eldhuset Jan 2 '12 at 2:21
@Aasmund: thanks...done – pranay Jan 2 '12 at 2:49
2  
Hint: If d is the common difference then the n integers are x, x+d, x+2d, ..., x + (n-1)*d and their sum is n*x + d * (n-1)*n / 2. – GregS Jan 2 '12 at 2:56
show 2 more comments

closed as off topic by Mitch Wheat, Andrew Medico, GregS, thiton, kdgregory Jan 2 '12 at 15:20

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

Browse other questions tagged or ask your own question.