geno3141

avatar
Usernamegeno3141
Score23254
Membership
Stats
Questions 1
Answers 7089

 #2
avatar+23254 
0

If 1 + 6 + 11 + ... + 96 + 101  =  n (mod 15), what is the value of n?

 

I believe that Guest's answer of 6 is correct; this is my slow, step-by-step way of finding that answer.

 

I plan to find the sum of the terms, divide that answer by 15, and the remainder will be n.

 

The series is an arithmetic series.

 

The formula for the sum of an arithmetic series is:  Sum  =  n(f + l) / 2

where  n = number of terms,  f = first term,  and  l = last term.

f = 1  and  l = 101

but I still need to find the number of terms.

 

The formula for the nth term of an arithmetic sequence is:  tn =  t + (n - 1)d

t1 = first term = f = 1

tn = last term = l = 101

d = common difference = 5

Substituting these into the formula:  tn =  t + (n - 1)d     --->     101  =  1 + (n - 1)·5

                                                                    Solving:                   100  =  (n - 1)·5

                                                                                                      20  =  n - 1

                                                                                                         n = 21  (there are 21 terms in the series)

Now, solving for the sum:  Sum  =  n(f + l)/2

                                          Sum  =  21(1 + 101) / 2

                                          Sum  =  1071

 

Since we're working with mod 15, let's divide the sum by 15; the remainder will be our answer.

     1071 / 15  =  71, and the remainder is 6.

 

Therefore, our answer is 6.

Aug 14, 2016
 #1
avatar+23254 
+5

What is the sum of a finite geometric series whose first term is 5, common ratio is 3, and nth term is 1215?

 

The nth term of a geometric series can be found by using the formula:  an  =  a1 · rn - 1.

For this problem,  an = 1215,  a1 = 5, and r = 3   --->   1215  =  5 · 3n - 1

     divide both sides by 5:                                               243  =  3n - 1

     take the log of both sides:                                   log(243)  =  log(3n - 1)

     simplify:                                                               log(243)  =  (n - 1) · log(3)

     divide both sides by log(3):                     log(243) / log(3)  =  n - 1

     simplify:                                                                           5  =  n - 1

     add 1 to both sides:                                                         n  =  6

 

To find the sum, use this formula:     Sum  =  a(1 - rn) / (1 - r)

                                                          Sum  =  5(1 - 36) / (1 - 3)

                                                          Sum  =  5(-728) / (-2)

                                                          Sum  =  -3640 / -2

                                                          Sum  =  1820 

Aug 12, 2016