hellope
Hello guys, I have one question:
let's assume that I have an evenly spaced set of an unknown number of elements, where each element is for instance the previous + 3.
Let' assume also that I know the sum of the elements of the set, say 15
Is it possible to find the elements ?
I have the feeling that is possible but I’m struggling to demonstrate it.
Thanks in advance

It's not possible to find with just knowing the sum.
You need to know at least one more information, like the number of elements or starting or ending value.
for example, the set can have only {15} or {6,9} or {2,5,8}
you can generate any number of such set using the formula below :
sum = 1/2 * number of elements *(2*first element + (number of elements -1 ) *3 ) here 3 being the difference
or in simple terms, S = n/2 *( 2* a + (n-1)d)
+1 for kudos