Ask your own question, for FREE!
Mathematics 17 Online
OpenStudy (anonymous):

I need to add all numbers from 1to 140.What is my answer and how can I figure it out. Ex: 1+2+3+4+5+6+....+140=?

OpenStudy (anonymous):

(141) x (140) /2 = 9870

OpenStudy (anonymous):

do you know series equations?

OpenStudy (anonymous):

Yes I know series equations

OpenStudy (anonymous):

\[\sum_{n=1}^{140}n = \frac{1}{2}(140 * 141)\]

OpenStudy (anonymous):

use the one for arithmetic series with a difference of 1, u get agdgdgdwngo's answer

OpenStudy (anonymous):

or in any programming language, you can solve it with: for (i = 1, sum = 0; i <= 140; ++i) { sum += i; }

OpenStudy (anonymous):

sum = 0 for i in xrange(1,141): sum += i print sum

OpenStudy (anonymous):

or in MATLAB/TI-89: sum(n, n, 1, 140)

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!