I can not figure out this logic problem! I can figure out how to solve this if it where in coding, but I can not seem to figure this out with just plain math! The thing to solve is this:
Find the number of black triangles for 100 rows. The first row starts off with 1 triangle, and increases by 1 every time.
Now in python for example you could solve this by doing:
currentnum = 100
total = 0
while currentnum != 0:
currentnum = 100-1
total = currentnum+total
Please Excuse the Errors in the code :( It has been a while
Now I can not seem to figure out how to make a math equation of this same thing. What equation could I write for this? I can not seem to figure it out, I have been trying a lot of stuff with the Distributive Property. Any help? Thank you