How do you find the first five terms in the geometric sequence which is such that the sum of the 1st and 3rd terms is 50, and the sum of the 2nd and 4th terms is 150?

1 Answer
Nov 8, 2015

5, 15, 45, 135, 405

Explanation:

A_n = A_1r^(n - 1)

A_1 + A_3 = 50

=> A_1 + A_1r^(3 - 1) = 50

=> A_1 + A_1r^2 = 50


A_2 + A_4 = 150

=> A_1r^(2 - 1) + A_1r^(4 -1) = 150

=> A_1r + A_1r^3 = 150

=> r(A_1 + A_1r^2) = 150

But A_1 + A_1r^2 = 50

=> r(50) = 150

=> r = 3


Now we have the common ratio. Next, we get the first term

A_1 + A_3 = 50

=> A_1 + A_1r^2 = 50

=> A_1 + A_1(3^2) = 50

=> A_1 + 9A_1 = 50

=> 10A_1 = 50

=> A_1 = 5


Hence, our geometric sequence has the formula

A_n = 5*3^(n - 1)

To get the n^(th) element, simply plugin its order into the formula

A_1 = 5
A_2 = 5*3^1 = 15
A_3 = 5*3^2 = 45
A_4 = 5*3^3= 135
A_5 = 5*3^4 = 405