Explain a+b+c if a represent positive numbers and c represents a negative number.

just add a and b

If c is negative, adding it is the same as subtracting its absolute value

a+b+c = a+b-|c|

That is, adding a negative value is the same as subtracting an equal positive value.