Math, asked by shriyanshuBhushan, 11 months ago

For any series 5+7+9+.......... the sum of how many terms will be 480?


akshat5755: 240 SERIES

Answers

Answered by priyanshuraj90
6
use formula of sum of n terms in AP as 1st term common difference is given and equate the sum to 480.......yu will get ansr
Answered by MrRegister
2

20 times, the last time will be + 45


MrRegister: python program:
now = 0
add = 5
times = 0
while(now < 480):
now = now + add
add = add + 2
times = times + 1
print(now)
print(add)
print(times)
times = input('paused')
Similar questions