You can put this solution on YOUR website! Write equations to represent
the sum of two, three, and five
consecutive numbers
---------------
Sum of 2 = n + (n+1)
----
Sum of 3 = n + (n+1) + (n+2)
or
= (n-1) + n + (n+1)
========================
You do the sum of 5