Finding the first 40 positive odd integers

  • Context: High School 
  • Thread starter Thread starter Mr Davis 97
  • Start date Start date
  • Tags Tags
    Integers Positive
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 12K views
Mr Davis 97
Messages
1,461
Reaction score
44
I have the following problem: What is the sum of the first 40 positive odd integers?

I look at the solution, and it says that "The sum of the first 40 positive odd integers is ##1 + 3 + 5 + \dotsm + 77 + 79##. And then it goes on with the solution.

My question is, how do I find that 79 is the 40th positive odd integer? Do I have to just write them all down until I get to the 40th one?
 
Mathematics news on Phys.org
Mr Davis 97 said:
I have the following problem: What is the sum of the first 40 positive odd integers?

I look at the solution, and it says that "The sum of the first 40 positive odd integers is ##1 + 3 + 5 + \dotsm + 77 + 79##. And then it goes on with the solution.

My question is, how do I find that 79 is the 40th positive odd integer? Do I have to just write them all down until I get to the 40th one?
The first odd positive integer is 1. The second one is 1+2. The third one is 1+2+2. How many times you need to add 2 to get 40 terms?
(What kind of sequence is 1, 3, 5. 7, ... ? What is the N-th term of that sequence?)
 
ehild said:
The first odd positive integer is 1. The second one is 1+2. The third one is 1+2+2. How many times you need to add 2 to get 40 terms?
(What kind of sequence is 1, 3, 5. 7, ... ? What is the N-th term of that sequence?)
Ah, so I can just create an arithmetic sequence ##1 + 2(n - 1)##, where n is the index of the odd number. So when I substitute 40 I just get 1 + 2(39) = 79! Awesome, thanks.