Disclaimer: these are my personal solutions; they have not been
reviewed, so be careful relying on them as there might be errors. Some
competitions may have official solutions from the contest publishers which
you may wish to refer to instead if you’re looking for verified solutions.
Calculate the first few values xi for i=3,4,5,… and see if you
notice a pattern. See the section “Numerical exploration” below for what this
looks like.
Hint #2
Expand the algebraic expression for xn and see what you can do to simplify
it. Consider how you might want to compute values in hint #1 above more
efficiently to help you visualize it. The “Solution” section has the details.
First, it’s interesting that the function appears to have become a constant! We keep incrementing the denominator by 1 at every step, and by adding the most recent prior value 34, we keep coming up with the same outcome! Why is that?
Also, if we’re doing manual addition (instead of adding 34 at every
step, as that’s the only change), we are doing a lot of duplicated work: we
keep computing the whole sum of prior values of xi every time, can we reuse
some of the work to simplify it for ourselves?
Note that there’s quite a bit of repetition between consecutive terms:
x1x2x3x4x5x6=1=3=31(1+3)=31⋅4=34=41(4+34)=41⋅316=34=51(316+34)=51⋅320=34=61(320+34)=...Expand to see further calculation of {x6, x7, ...,
x10}x6x7x8x9x10=61(320+34)=61⋅324=34=71(324+34)=71⋅328=34=81(328+34)=81⋅332=34=91(332+34)=91⋅336=34=101(336+34)=101⋅340=34
So, it looks like it becomes a constant after x3, why is that? Can you reuse
the pattern that keeps repeating somehow? Try solving the problem now yourself,
before looking at the solution below.
Try solving the problem first before peeking at the solution!
Since each xn depends on prior values xn−1,xn−2,…, we note that
there are overlaps between consecutive values in terms of what they’re
including in their sums, so they should have common terms we can evaluate and
combine.
Note that the pairs of matching colored boxes are the same terms, which appear
as common subterms for different values of xi.
Thus, let’s expand the main formula algebraically:
xn+1=n+11i=1∑nxi=n+11(xn+i=1∑n−1xi)=n+11(n1i∑n−1xi+i=1∑n−1xi)=n+11(nn+1i=1∑n−1xi)=n1i=1∑n−1xi=xnfor n=3,4,... (given)split xn from the sumexpand xncombine and simplifycancel (n+1) factorfor n=3,4,...