Consider the following pattern:
0 , 1 , 1 , 2 , 3 , 5 , 8 , 1 3 , 2 1 , 3 4 , …
What is the next number in the pattern after 3 4 ?
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.
dang it you beat me i was posting almost same solution i should not have re shared this problem ha ha @Sharky Kesa
0+1=1
1+1=2
2+3=5
.............
.............
21+34=55
This pattern above is the Fibonacci Sequence in which the previous numbers are added to give the next one.
The sequence is given as
F 0 = 0 , F 1 = 1 , ⋯ , F n = F n − 1 + F n − 2
for all n > 1 , so the desired answer is 3 4 + 2 1 = 5 5
Fibonacci series. 3rd number is the sum of first two numbers.
x k = x k-1 + x k-2 , k=2,3,... With x 0=0 and x1=1
its simply the fibonacci sequence. the following number is the previous 2 numbers added together. so in this case x= 21+34= 55
This is fibonacci series as it is obtained by adding the 2 previous number
This is Fibonacci series.
Add the previous number with the next pervious number and you get the next number IE. a,b,? = a+b=?
Sum of previous two terms is next term.
Fibonacci sequence. Each number is the result of adding the previous.
Got to love the old fibonacci sequences, next time solve for what the whole equation would equal
This is none other than the fibonacci sequence
Add the two in front to find the missing
0+1=1 1+1=2 1+2=3 ................ 21+34=55
Addition of previous 2 number is the Number.
Its a Fibonacci Series... Addition of previous 2 number is the Number.
Its simply Fibonacci. If you don't know the sequence, add the two most recent numbers, and you get the next number.
for getting nth term just add the terms (n-1) and (n-2)
we can get that the next number is 34 + 21 = 55
Nothing so Complicated ! Just add the two consective terms and you get the answer !
Problem Loading...
Note Loading...
Set Loading...
This is the Fibonacci sequence. It goes as follows:
a 1 = 0 , a 2 = 1 , a n + 1 = a n + a n − 1
for n ≥ 2 . From this, we can get that the next number is 3 4 + 2 1 = 5 5 .