Solveeit Logo

Question

Question: How do you express the sequence below as a recursively defined function 4, 11, 25, 53, 109, ....?...

How do you express the sequence below as a recursively defined function 4, 11, 25, 53, 109, ....?

Explanation

Solution

First mark the points in the given order and find the differences between two consecutive points. From the result of these differences, find a relation between them. Then form the recursively defined function by observing the sequence of points.

Complete step by step answer:
A recursive defined function defines a value of a function at some natural number ‘n’ in terms of the function's value at some previous point(s).
Let the points are:
a1=4{{a}_{1}}=4 , a2=11{{a}_{2}}=11 , a3=23{{a}_{3}}=23 , a4=53{{a}_{4}}=53 …..an{{a}_{n}}
And the differences between two consecutive points are:
d1=a2a1=114=7{{d}_{1}}={{a}_{2}}-{{a}_{1}}=11-4=7
d2=a3a2=2511=14{{d}_{2}}={{a}_{3}}-{{a}_{2}}=25-11=14
d3=a4a3=5325=28{{d}_{3}}={{a}_{4}}-{{a}_{3}}=53-25=28
From the above result it is clear that the differences are the consecutive multiple of 7.
Thus it can be written that:
d1=7×1{{d}_{1}}=7\times 1 , d2=7×2{{d}_{2}}=7\times 2 , d3=7×3{{d}_{3}}=7\times 3 , dn=7×n{{d}_{n}}=7\times n …..
Framing in sequence we get:

& {{a}_{2}}={{a}_{1}}+{{d}_{1}} \\\ & \Rightarrow {{a}_{2}}={{a}_{1}}+\left( 7\times 1 \right) \\\ \end{aligned}$$ Similarly; $$\begin{aligned} & {{a}_{3}}={{a}_{2}}+{{d}_{2}} \\\ & \Rightarrow {{a}_{3}}={{a}_{2}}+\left( 7\times 2 \right) \\\ \end{aligned}$$ Observing the above equations we can form the recursively defined function as; $$\begin{aligned} & {{a}_{n}}={{a}_{n-1}}+{{d}_{n-1}} \\\ & \Rightarrow {{a}_{n}}={{a}_{n-1}}+7\times \left( n-1 \right) \\\ \end{aligned}$$ This function satisfies the given sequence. So, it is the required solution to the given question. **Note:** The expression should be analyzed by taking each term and it’s difference with the consecutive term. By observing that we should develop the recursively defined function as $${{a}_{n}}={{a}_{n-1}}+{{d}_{n-1}}$$ where ‘a’ denotes the terms and ‘d’ denotes difference between two consecutive terms.