207k views
4 votes
Given the functions f(n) = 25 and g(n) = 3(n − 1), combine them to create an arithmetic sequence, an, and solve for the 12th term

User Dhaval D
by
7.6k points

2 Answers

1 vote
f(n) = 25
g(n) = 3(n - 1)
g(n) = 3(n) - 3(1)
g(n) = 3n - 3
User Icn
by
8.2k points
0 votes

Answer:

F(n)=3(n-1)+25; F(12)=58

Explanation:

A sequence is arithemetic if the difference of any two consecutive terms in the sequence is always the same constant term.A recursive way to construct an arimethic sequence is to take an initial number
a_1 an then recursively sum a positive number (distance)
d to get each term, for example take
a_1=1 and
d=2, we get the terms of the arithmetic sequence:


a_1=1\\a_2=1+2\\a_3=1+2+2=1+2\cdot2\\a_4=1+2+2+2=1+2\cdot 3\\a_5=1+2+2+2+2=1+2\cdot 4

and in general the n-th term of the sequence is given by the equation


a_n=1+2\cdot(n-1)=a_1+d\cdot(n-1).

Note that g(n)=3(n-1) is already an arithmetic sequence with
a_1=0 and
d=3 and f(n) is the constant function with constant value equals to 25.

Hence, if we take


F(n)=f(n)+g(n)=25+3\cdot(n-1)

we get an arithmetic sequence with intial value
a_1 equals to 25 and distance
d equals to 3.

User Karara Mohamed
by
8.0k points