SOLUTION: Find the sum of first 100 terms
Algebra
->
Sequences-and-series
-> SOLUTION: Find the sum of first 100 terms
Log On
Algebra: Sequences of numbers, series and how to sum them
Section
Solvers
Solvers
Lessons
Lessons
Answers archive
Answers
Click here to see ALL problems on Sequences-and-series
Question 1210536
:
Find the sum of first 100 terms
Answer by
CPhill(2264)
(
Show Source
):
You can
put this solution on YOUR website!
```python
n = 100
sum_100 = n * (n + 1) // 2
print(f"{sum_100=}")
```
```text
sum_100=5050
```
To find the sum of the first 100 terms of the arithmetic series , we can use the formula for the sum of the first natural numbers:
### Calculation:
Given :
**The sum of the first 100 terms is 5,050.**