Math, asked by chauhandeepika233, 4 months ago

Find the missing term in the following series from the given alternatives 1 , 3 , 7 , 13 , 21 , _____ ​

Answers

Answered by friends73
0

Answer:

Two ways you can solve this problem are visually and mathematically. Both will give you the final answer of 57.

Visual Method

Between each of the numbers, the difference is increasing by 2 each time. 3 comes 2 after 1, 7 comes 4 after 3, 13 comes 6 after 7, and so on. Since 43 comes 12 after 31, the next number would come 14 after 43. Because of this, 43 + 14 is 57 –– your answer.

Mathematical Method

Say you want to calculate the nthnth number of the sequence. It would be impractical to keep writing the numbers, because as you approach infinity, the numbers will get larger and larger. I will solve this problem recursively, which you can read more about here - Recursion.

Let f(n)f(n) be the function that calculates the nthnth term of the sequence. Take, for example, the third term of the sequence, which is 77 -- this gives us n=3n=3. In order to get to the number 77, we had to add the previous number in the sequence, or f(n−1)f(n−1), with a certain even number, which is 2(n−1)2(n−1).

Just so you can check my conclusion, the previous number in the sequence was 33. We added 2(3−1)2(3−1) or 44 to that number, which gave us 77. Therefore, the sequence can be represented by this function:

f(n)=f(n−1)+2(n−1)f(n)=f(n−1)+2(n−1)

I implemented this recursive function in Python. Here it is:

def sequence(num): 

if (num == 1): 

return 1 

else: 

return sequence(num - 1) + 2 * (num - 1) 

Hope this helps!

43.7K views

View 18 Upvoters

View Sharers

Related Questions (More Answers Below)

Similar questions