Find the next number in the sequence ?
2 ,11, 25, 44, 68, ?
(As with all pattern recognition questions, use the easiest explanation)
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
2,11,25,44,68.... => pattern is 9,14,19,24,29 => here every difference is 5 . then 24+5=29 , or 68+29=97.
I found that the general form is tn=(5n^2+3n-4)/2 just for the fun of it :D
The difference is arithmetic progress of 5
Log in to reply
@Sundar Mahalingam Wait why did you repeat what she said?
a2-a1=9,. a3-a2=14, a4-a3=19, a5-a4=24. So, the difference in terms of increases in 5 of 5. The next results is 97, because an=(24+5) + 68 = 97.
2,11,25,44,68.......diff. between each 2 no.is 9,14,19,24 respectively then in these no.diff between each 2 no.is 5 commone so last no. is 97 (24+5=29. then 29+68(is the second last no.)=97.......)
The difference between elements is 9 14 19 24. That is it increase by five thus next deifference is 29 68 + 29 = 97
difference increase by 5
difference of two adj numbers is in ap
I got it!!!!!
This a.p ....so got easily!!!!
the difference in between number increases by five.
Difference is 9,14,19,24,29......
2+23=25;11+33=44;25+43=68;44+53=97
2, 2+(9) = 11, 11+(9+5)=25, 25+(9+5+5)=44, 44+(9+5+5+5)=68, 68+(9+5+5+5+5)= 97...
The sequence 2, 11, 25, 44, 68 has a common sequence of 9, 14, 19, 24. Thus the next sequence would be 29, 34, 39,... 68+29 gives 97.
11-2=9، 25-11=14، 44-25=19 ، 68-44=24 ، 14-9=19-14=24-19=5 ،، X-68=5 ،، X=97
Finding the difference like : 11 -2 = 9 similarly you will get : 9 , 14, 19, 24 , observe the difference is 5 hence Arithmetic Series Using Arithmetic formula : Un = a + (n-1)d Or 19 +5 = 24 ,, 68 + 29 = 97
It is a progression in which the differences are in AP with common difference= 5...
THE ANSWER IS 97 AS THE DIFFERENCE BETWEEN CONSEQUITIVE NUMBERS INCREASES BY 5
11-2=9, 25-11=14, 44-25=19, 68-44=24, x - 68 =29 or, x=97
this sequence can be generated using the following recursive relation :
N(t) = N(t-1) + [ (5*t ) - 1 ] where t >=1
the code for this in C++ as follows :
int seq( int t){ if(t==1) return 2; else return seq(t-1) +(5*t-1); }
the difference between each number in sequence is simply an Arithmetic Progression of common difference of 5... a 1 = 1 1 − 2 = 9 a 2 = 2 5 − 1 1 = 1 4 a 3 = 4 4 − 2 5 = 1 9 a 4 = 6 8 − 4 4 = 2 4 the common difference is d = a 4 − a 3 = 2 4 − 1 9 = 5 , or d = a 3 − a 2 = 1 9 − 1 4 = 5 , and so on... therefore for a 5 = 9 + 4 × 5 = 2 9 and for the next number in the sequence, it will be 6 8 + 2 9 = 9 7
25-2=23,68-25=43 so 43-23=20 44-11=33 so 33+20=53,44+53=97
the difference of the numbers, has a common difference of 5.
Find difference between these numbers 2,11,25,44,68......=>9,14,19,24 in this series the difference 5.SO, add 5 to 24 we get 29 and add 29 to 68 we get 97.
The differences are in AP with a common difference of 5
use difference method
pattern is 9,14,19,24,29
so answer is 68+29=97
97 , +5with every differences
The difference is in Arithmetic Progression by 5.
2 + (4 + (1 x 5)) = 11 ----> 11 + (4 + (2 x 5)) = 25 ----> 25 + (4 + (3 x 5)) = 44 ----> 44 + (4 + (4 x 5)) = 68 ----> 68 + (4 + (5 x 5)) = 97
2, 11 difference 9. 11,25 diff 14. 25,44 diff 19 44,68 diff 24. So 9,14,19,24 common increase 5. so next 29. 68+29=97
the pattern is 14,19,24,29. arithmetic sequence and progreession
difference is a series like 9,14,19,24,29..............
2,11,25,44,68..... by using arithmetic pattern in first there is 9 difference then 14,19,24,29 therfore 2+9=11,11+14=25 similarly 68+29=97
2 11 25 44 68 {97} the diff. b/w 9 14 19 24 29 you can get the trick by just seeing the difference and order by which it changes
+9, +14, +19, +24, +29
97.....2+23=25;11+33=44;25+43=68;44+53=97
The difference in every 2 number increases 5..
Here 2+9=11 11+(9+5)=11+14=25 25+(14+5)=25+19=44 44+(19+5)=44+24=68 68+(24+5)=68+29=97
Thus the solution is 97.
just add 5 to every difference
The differences are 9,14,19,24. So, the next difference will be 29. Thus the answer is 68+29=97
The differences are 9,14,19,24. So, the next difference will be 29. Thus the answer is 68+29=97
the sequence is 9,14,19,24,so then the next no. is 29
The diff in the nos. is an A.P. with C.D.=5
The series 2, 11, 25, 44 and 68 has a common sequence of 2, 14, 19, 24 with a distinctive difference of 5, therefore, after 68 following the sequence of 24+5 = 29, so the next after 68 = 68 + 29 = 97..
11-2=9: 25-11=14 : 44-25=19 ; 68-44=24 : ans= (9,14 ,19,24, similarly 29) 68+29= 97
GOOD
Problem Loading...
Note Loading...
Set Loading...
The difference is in Arithmetic Progression of 5.