Solve Year 8 AMC Question: Find the Highest Number

  • Context: High School 
  • Thread starter Thread starter asdfghjklqqww
  • Start date Start date
  • Tags Tags
    Hard
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
2 replies · 3K views
asdfghjklqqww
Messages
12
Reaction score
0
AMC Question HARD!

While doing the Year Eight AMC (Australian Maths Competition), I came across this diffucult question...
(By the way, this isn't homework :P)

"I have a list of twelve numbers. The first number is 1 and the last number is 12. Each of the numbers is one more than the average of its neighbours. What is the heighest number on the list?"

It was an open answered question, and I couldn't work it out, so with seconds to spare, I guessed the number 47.

This is most likely wrong, so what is the actual answer?
 
Mathematics news on Phys.org


Your numbers are (I omit the calculations, but you can verify the answer is correct)

[tex]a_n=1+12n-n^2\qquad n=0,1,\dots,10,11[/tex]

So

a_0=1
a_1=12
a_2=21
a_3=28
a_4=33
a_5=36
a_6=37
a_7=36
a_8=33
a_9=28
a_10=21
a_11=12

You was wrong, largest number is 37.
 


You may just write out the recurrence equation and solve it yourself:

[tex]a_n = \frac{a_{n+1}+a_{n-1}}{2} +1[/tex]

[tex]a_1=1[/tex]

[tex]a_{12}=12[/tex]

The solution is:

[tex]a_n = -n^2 + 14 n -12[/tex]