_Mayday_
- 808
- 0
Hey, I've been trying to work this out for a few days now. There is supposed to be an easy way to add all the numbers from 1 to 100 easily, anyone know?
_Mayday_ said:Brilliant cheers. I thought it had something to do with that but I struggled to put it into a formula.
_Mayday_ said:Hey, I've been trying to work this out for a few days now. There is supposed to be an easy way to add all the numbers from 1 to 100 easily, anyone know?
country boy said:There is another way to visualize this using square arrays of elements. In a square array that is m=n+1 elements on a side, the number of off-diagonal elements in the lower left (or upper right) is (m^2-m)/2. But this is also the sum of the number of elements in all of the rows in that part of the matrix: 1+2+3+...+n. In our case n=100, m=101 and (m^2-m)/2=5050. This is equivalent to the Werg22 and Curvation solution.
To get K.J.Healey's solution, note that if we subtract half of the off-diagonal elements (say the upper right) in an nxn array then the remaining number of elements is n^2-(n^2-n)/2=(n^2+n)/2, again the sum of rows is 1+2+3+...+n. But this is n*(n/2)+(n/2) and is equal to 100*50+50 in our case.
Putting m=n+1 into (m^2-m)/2 gives (n^2+n)/2, so the two array visualizations are equivalent, of course.
\sum_{n=1}^{100}1+\frac{1}{n}=\sum_{n=1}^{100}1+\sum_{n=1}^{100}\frac{1}{n}Alex48674 said:I know how to do this but how would you do it if it weren't just intigers like 1 to n. What if you wanted to add 1+1/n where n = a positive intiger? let's say where n is 1 to 100
Gokul43201 said:\sum_{n=1}^{100}1+\frac{1}{n}=\sum_{n=1}^{100}1+\sum_{n=1}^{100}\frac{1}{n}
~~~~~=100+ \sum_{n=1}^{100}\frac{1}{n}
The remaining term above is a partial sum of a harmonic series. There is no simple, closed-form expression for such a partial sum to arbitrary number of terms. I think there are "compact expressions" for small partial sums and approximations for large ones, but that's all.
_Mayday_ said:Hey, I've been trying to work this out for a few days now. There is supposed to be an easy way to add all the numbers from 1 to 100 easily, anyone know?
In other words the number you are adding times the next highest number divided by 2 = answerJ R said:100 X 101 divided by 2 = answer. All numbers work the same. 50 x 51 divided by 2
44 x 45 divided by 2 10 x 11 divided by 2
Schrodinger's Dog said:Incidentally there's a famous story where Gauss was asked this in a maths class at the age of 7, thinking to stump the children; Gauss gave him an immediate answer, something like the above answers given by the others, by figuring the above simple relation.
Alex48674 said:I know how to do this but how would you do it if it weren't just intigers like 1 to n. What if you wanted to add 1+1/n where n = a positive intiger? let's say where n is 1 to 100
Werg22 said:There's also the approximation log(100) + {\gamma}
With {\gamma} = 0.577215665...
I wonder if it's possible to measure the order of magnitude of the error.
Werg22 said:There's also the approximation log(100) + {\gamma}
With {\gamma} = 0.577215665...
I wonder if it's possible to measure the order of magnitude of the error.
NightGale said:Consider using arithmetic progression's formula:
n/2(a+n) where a is the 1st term = 1, and n is the number of terms = 100
Air said:1+100=101, 2+99=101, 3+98=101 etc. There are 50 pairs of these so it is 101 times 50 which equals 5050.