New way to find the Sum of natural numbers


Posted on: April 26, 2025

For any positive integers a, b, c, d, e:

S(a + b + c + d + e ... ) = {Sum of the all combination product of the given variables} + S(a) + S(b) + S(c) + S(d) + S(e) + ..

For 3 variable equation:

S(x + y + z) = xy + yz + zx + S(x) + S(y) + S(z)

where S(n):

\[ S(n) = \frac{n(n+1)}{2} \]

Example:

Let x = 5 , y = 4 , and z = 8 :

We can use any number of variables in any order.