Link to home
Start Free TrialLog in
Avatar of mustish1
mustish1

asked on

Next number

What is the next number 

User generated image

Avatar of ste5an
ste5an
Flag of Germany image

Look carefully at the numbers decreasing.. This should tell you that it is an "alternating" operation with an increasing parameter

fn+1 = fnn+1 kn+1

Alternating means that ⊕n+1 depends on n+1. Especially on the modulus 2 group. And kn+1 implies that the parameter depending of n+1. Especially it is its own "sequence".
ASKER CERTIFIED SOLUTION
Avatar of Martin Liss
Martin Liss
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of mustish1
mustish1

ASKER

Thank You.
First of all: I strongly disagree. It is a closed sequence. Not two interlaced ones.

Then: I'm absolutely against helping with concrete answers, Martin, cause these questions are basic math and IQ test related. You don't help the questionnaire at all.

Thus: An exception.

fn+1 = fnn+1 kn+1

0 |         = 2
1 |  2 +  1 = 3
2 |  3 - -1 = 4
3 |  4 +  2 = 6
4 |  6 -  0 = 6
5 |  6 +  3 = 9
6 |  9 -  1 = 8
7 |  8 +  4 = 12
8 | 12 -  2 = 10

Open in new window


n+1
The alternating operation is +-+-+-+-+-+-+-+- and so on.

n+1 := -|n+1 mod 2 = 0
n+1 := +|n+1 mod 2 = 1

and the parameter is

0 |               = 2    
1 |  2 +  (1 - 0) = 3
2 |  3 -  (1 - 2) = 4
3 |  4 +  (2 - 0) = 6
4 |  6 -  (2 - 2) = 6
5 |  6 +  (3 - 0) = 9
6 |  9 -  (3 - 2) = 8
7 |  8 +  (4 - 0) = 12
8 | 12 -  (4 - 2) = 10

Open in new window



kn+1 := mn+1   |n+1 mod 2 = 0
kn+1 := mn+1 - 2|n+1 mod 2 = 0

with

m0 := 0
mn+1 := mn   |n+1 mod 2 = 0
mn+1 := mn + 1|n+1 mod 2 = 0
I think that both our answers are valid since 2 3 4 6 6 9 8 12 10 15 is interlaced. And about helping with "concrete answers" I understand your point but I believe EE decided some time ago that it's OK to help with homework type questions.