1. Logs are stacked in a pile with 24 logs on the bottom row and 10 on the top row. There are 15 rows in all with each row having one more log than the one above it. (Use Sn=n/2[2a+(n-1) d])
a) How many logs are in the stack?
1
Expert's answer
2022-02-19T16:57:03-0500
>> a = 24; % logs on the bottom row
>> n = 15; % number of rows
>> d = -1; % increment from row to row
>> Sn = n/2 * (2*a + (n-1)*d)
Sn =
255
>>
Comments
Leave a comment