by tommywallach Thu Feb 04, 2016 11:00 pm
Hey Dp,
Your logic is off. It doesn't matter how many the first row has if they keep going up by one each time. Addition doesn't change based on where you start. It's a number line.
BUT, to illustrate your error:
If there are 3 people in the first row (so = 3), the second row has 4 people, and so on.
The mistake you made here is just DETERMINING the number of people in the nth row. That's not legal. You can plug in a value FOR n, then USE that to determine the number of people. (You can't just assign it randomly, because you already set a value for the first row, so the nth row is DEFINED).
If n =7, as you (sorta) suggested, then we would count up.
Row 1 = 3 people
Row 2 = 4
Row 3 = 5
Row 4 = 6
Row 5 = 7
Row 6 = 8
Row 7 = 9
So we now have 9 people. There are 5 more people sitting in row n than row 2, and that's n - 2 (because our n = 7).
Hope that helps!
-t