A Lucas Sum

Algebra Level 5

Let p = 1 + 1 + 1 + p = \sqrt{1+\sqrt{1+\sqrt{1+\ldots}}} .

The sum

k = 2 p k 2 k \sum_{k=2}^{\infty} \frac{\lfloor p^{k} \rceil}{2^{k}}

can be expressed as a b \frac{a}{b} for a , b a,b coprime, where \lfloor \cdot \rceil denotes the nearest integer function. Find a + b a+b .


The answer is 9.

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 solutions

Discussions for this problem are now closed

Jake Lai
Dec 27, 2014

Step 1:

First, we evaluate p p . Noticing that p 2 1 = p p^{2}-1 = p , solving for p p and discarding the negative solution gives

p = 1 + 5 2 p = \frac{1+\sqrt{5}}{2}

which is the golden ratio ϕ \phi .

Step 2:

Now, we use the fact that ϕ k = ϕ k + 1 2 = ϕ k + ( ϕ ) k \lfloor \phi^{k} \rceil = \lfloor \phi^{k}+\frac{1}{2} \rfloor = \lfloor \phi^{k}+(-\phi)^{-k} \rfloor since 1 2 > ( ϕ ) k \frac{1}{2} > (-\phi)^{-k} when k > 1 k > 1 .

It turns out that L k = ϕ k + ( ϕ ) k L_{k} = \phi^{k}+(-\phi)^{-k} is actually the closed form for an integer sequence called the Lucas numbers { L k } k = 0 \lbrace L_{k} \rbrace_{k=0}^{\infty} whenever k > 1 k > 1 . The Lucas numbers follow the recursive rule

L n { 2 if n = 0 ; 1 if n = 1 ; L n 1 + L n 2 if n > 1. L_n \equiv \begin{cases} 2 & \text{if} & n = 0; \\ 1 & \text{if} & n = 1; \\ L_{n-1}+L_{n-2} & \text{if} & n > 1. \end{cases}

Step 3:

Hence, we let the sum be S S , and rewrite the sum as

S = k = 2 L k 2 k S = \sum_{k=2}^{\infty} \frac{L_{k}}{2^{k}}

and proceed with a bit of algebraic manipulation:

S = 3 4 + 4 8 + 7 16 + 11 32 + S = \frac{3}{4}+\frac{4}{8}+\frac{7}{16}+\frac{11}{32}+\ldots

2 S = 3 2 + 4 4 + 7 8 + 11 16 + 2S = \frac{3}{2}+\frac{4}{4}+\frac{7}{8}+\frac{11}{16}+\ldots

2 S S = 3 2 + 1 4 + 3 8 + 4 16 + 2S-S = \frac{3}{2}+\frac{1}{4}+\frac{3}{8}+\frac{4}{16}+\ldots

= 3 2 + 1 4 + S 2 = \frac{3}{2}+\frac{1}{4}+\frac{S}{2}

S = 2 ( 3 2 + 1 4 ) = 7 2 S = 2(\frac{3}{2}+\frac{1}{4}) = \boxed{\frac{7}{2}}

Nice Problem :)

Pratik Shastri - 6 years, 5 months ago

I should stop writing my solutions on the fly.

Jake Lai - 6 years, 5 months ago

Really interesting arithmetic simplification

Bhargav Upadhyay - 6 years, 5 months ago

This is an amazing question!

but... wheres the calculus?

just asking.

Julian Poon - 6 years, 5 months ago

Hmmm. HMMM.

I wasn't really thinking when I made this question. Thanks for pointing that out.

Jake Lai - 6 years, 5 months ago

good one !! the sum, solution and my tukka ( horrifyingly correct)

Shubhendu Gupta - 6 years, 5 months ago

What about nearest integer function? Sounds like it has never been used in the solution.

Snehal Shekatkar - 6 years, 5 months ago

It's a pretty well known function, I'd say. The value of n + 1 2 \lfloor n+\frac{1}{2} \rceil for n Z n \in \mathbb{Z} varies depending on who you ask, though x = x + 1 2 \lfloor x \rceil = \lfloor x+\frac{1}{2} \rfloor for every other x x .

Jake Lai - 6 years, 5 months ago
Kartik Sharma
Jan 9, 2015

Sorry, Mr. Lucas and the title of the problem, I didn't actually use Lucas numbers(because I didn't know about it).

It is clear that,

p = 1 + 5 2 = φ p = \frac{1 + \sqrt{5}}{2} = \varphi

So, we just need to find

k = 2 φ k 2 k \sum _{k=2}^{\infty} \frac{\lfloor \varphi^{k} \rceil}{2^{k}}

Now, we know that φ k = F k φ + F k 1 \varphi^{k} = F_{k}\varphi + F_{k-1} , where F k F_{k} is the k t h k^{th} fibonacci term.

Hence, the numerator of the term of the sum becomes

F k φ + F k 1 F k φ + F k 1 \lfloor F_{k}\varphi + F_{k-1} \rceil \Rightarrow \lfloor F_{k} \varphi \rceil + F_{k-1}

Hence, this becomes

k = 2 F k φ 2 k + F k 1 2 k \sum _{k=2}^{\infty} \frac{\lfloor F_{k}\varphi \rceil}{2^{k}} + \frac{F_{k-1}}{2^{k}}

2nd Sum

k = 2 F k 1 2 k = S 1 \sum_{k=2}^{\infty} \frac{F_{k-1}}{2^{k}} = S_{1}

2 S 1 = F 1 2 + F 2 2 2 + 2S_{1} = \frac{F_{1}}{2} + \frac{F_{2}}{2^{2}} + \ldots

Subtracting term-wise,

S 1 = F 1 2 + 0 + F 1 2 3 S_{1} = \frac{F_{1}}{2} + 0 + \frac{F_{1}}{2^{3}} \ldots

S 1 = 1 2 + S 1 2 S 1 = 1 S_{1} = \frac{1}{2} + \frac{S_{1}}{2} \Rightarrow S_{1} = 1

1st Sum

k = 2 F k φ 2 k \sum _{k=2}^{\infty} \frac{\lfloor F_{k}\varphi\rceil}{2^{k}}

Now, by Binet's formula,

F k = φ k ( φ 5 ) k 5 F_{k} = \frac{\varphi^{k} - (\varphi-\sqrt{5})^{k}}{\sqrt{5}}

which tells us that

F k φ = φ k + 1 φ ( φ 5 ) k 5 F_{k}\varphi = \frac{\varphi^{k+1} - \varphi(\varphi-\sqrt{5})^{k}}{\sqrt{5}}

= φ k + 1 ( φ 5 ) k + 1 5 ( φ 5 ) k 5 = \frac{\varphi^{k+1} - (\varphi-\sqrt{5})^{k+1} - \sqrt{5}(\varphi-\sqrt{5})^{k}}{\sqrt{5}}

= F k + 1 ( φ 5 ) k = F_{k+1} - (\varphi - \sqrt{5})^{k}

Now, ( φ 5 ) k (\varphi - \sqrt{5})^{k} is a decreasing function of k k with tenth digit place above 5 only for k 1 k \le 1 but we have k > 1 k>1 in the sum. So, in the nearest integer function, this term will be trivial.

F k φ = F k + 1 \lfloor F_{k}\varphi \rceil = F_{k+1}

Hence, the sum becomes

k = 2 F k + 1 2 k \sum _{k=2}^{\infty} \frac{F_{k+1}}{2^{k}}

which can be found in the same way as done before for sum 1, getting

k = 2 F k + 1 2 k = 5 2 \sum _{k=2}^{\infty} \frac{F_{k+1}}{2^{k}} = \frac{5}{2}

As a result,

k = 2 φ k 2 k = 5 2 + 1 = 7 2 \sum _{k=2}^{\infty} \frac{\lfloor \varphi^{k} \rceil}{2^{k}} = \frac{5}{2} + 1 = \boxed{\frac{7}{2}}

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...