283 views
2 votes
2 votes
find sum of n terms

1^2 - 2^2 + 3^2 - 4^2 + 5^2 - 6^2 + ...................

 

can anyone explain me this  how to solve this

1 Answer

1 votes
1 votes
JUST TAKE ODD NUMBER ON ONE SIDE AND EVEN NUMBER ON OTHER SIDE LIKE THIS

(1^2 + 3^2 + ..(2N-1)^2) - (2^2 + 4^2 + ...(2N)^2)

NOW,

SUM OF SQUARE OF ODD NATURAL NUMBER = N(2N+1)(2N-1)/3

SUM OF SQUARE OF EVEN NATURAL NUMBER = 2N(N+1)(2N+1)/3

TOTAL = ODD SERIES - EVEN SERIES

            = - N (2N+1)

Related questions

0 votes
0 votes
0 answers
1
1 votes
1 votes
2 answers
2
0 votes
0 votes
2 answers
4
bitManiac asked May 13, 2016
370 views
(Reference- A first course in probablity by Sheldon Ross [Example 5b and 5c of chapter 1])Q1. Ten children are to be divided into an A team and a B team of 5 each. The A ...