Finding $k_{513}$ in the Sequence $k_1,k_2,\cdots$

  • Context: MHB 
  • Thread starter Thread starter anemone
  • Start date Start date
  • Tags Tags
    Sequence
Click For Summary

Discussion Overview

The discussion revolves around finding the term $k_{513}$ in a recursively defined sequence where $k_1=1$ and $k_{n+1}=\sqrt{k_n^2-2k_n+3}+1$. Participants are exploring the properties and values of this sequence, with a focus on calculating a specific term.

Discussion Character

  • Exploratory
  • Mathematical reasoning
  • Debate/contested

Main Points Raised

  • Some participants present their solutions for calculating $k_{513}$, but there are conflicting claims about the correctness of these solutions.
  • One participant expresses uncertainty about the validity of another's approach, indicating a lack of consensus on the correct method or answer.
  • Another participant acknowledges a mistake in their earlier assessment of a solution, suggesting that the previously doubted approach may indeed be correct.

Areas of Agreement / Disagreement

Participants do not appear to reach a consensus on the correct solution for $k_{513}$, with multiple competing views and ongoing debate regarding the validity of different approaches.

Contextual Notes

There are unresolved aspects regarding the calculations and reasoning behind the sequence, with some participants indicating they could not locate mistakes in others' solutions, which may imply missing assumptions or steps in the reasoning.

anemone
Gold Member
MHB
POTW Director
Messages
3,851
Reaction score
115
Let $k_1,k_2,\cdots$ be a sequence defined by $k_1=1$ and for $n \ge 1$, $k_{n+1}=\sqrt{k_n^2-2k_n+3}+1$. Find $k_{513}$.
 
Physics news on Phys.org
anemone said:
Let $k_1,k_2,\cdots$ be a sequence defined by $k_1=1$ and for $n \ge 1$, $k_{n+1}=\sqrt{k_n^2-2k_n+3}+1$. Find $k_{513}$.

32

solved as

Take 1 to left and square both sides

(K(n+1) – 1)^2 = k(n)^2 – 2k(n) + 3 = (k(n)-1)^2 + 2
Or (K(n+1) – 1)^2 = (k(n)-1)^2 + 2
(k(2)-1)^2 = (k(1)-1)^2 + 2
(k(3)-1)^2 = (k(2)-1)^2 + 2 = = (k(1)-1)^2 + 2 * 2
Proceeding we see hat = (k(n)-1)^2 = = (k(1)-1)^2 + 2(n-1)
One can prove it by induction
Put n = 513 to get k(513) = (k(1)-1)^2 + 2 * 512 = 1024
K(513) = 32 as it has to be positive
 
kaliprasad said:
32

solved as

Take 1 to left and square both sides

(K(n+1) – 1)^2 = k(n)^2 – 2k(n) + 3 = (k(n)-1)^2 + 2
Or (K(n+1) – 1)^2 = (k(n)-1)^2 + 2
(k(2)-1)^2 = (k(1)-1)^2 + 2
(k(3)-1)^2 = (k(2)-1)^2 + 2 = = (k(1)-1)^2 + 2 * 2
Proceeding we see hat = (k(n)-1)^2 = = (k(1)-1)^2 + 2(n-1)
One can prove it by induction
Put n = 513 to get k(513) = (k(1)-1)^2 + 2 * 512 = 1024
K(513) = 32 as it has to be positive

Thanks for participating kaliprasad...but your answer isn't correct. I'm sorry.:(
 
Here is my solution:

We are given the recursive algorithm:

$$k_{n+1}=\sqrt{k_n^2-2k_n+3}+1$$ where $$k_1=1$$

If we subtract 1 from both sides and square, we obtain:

$$\left(k_{n+1}-1 \right)^2=\left(k_{n}-1 \right)^2+2$$

If we define:

$$U_n=\left(k_{n}-1 \right)^2$$

we then obtain the linear difference equation:

$$U_{n+1}-U_{n}=2$$ where $$U_1=0$$

The homogeneous solution is:

$$h_n=c_1$$

and the particular solution is:

$$p_n=c_2n$$

Substituting the particular solution into the difference equation, we find:

$$c_2(n+1)-c_2n=2\implies c_2=2$$

Thus, the general solution is:

$$U_n=c_1+2n$$

We may now use the initial value to determine the parameter $c_1$:

$$U_1=c_1+2=0\implies c_1=-2$$

And so the solution satisfying the given conditions is:

$$U_n=-2+2n=2(n-1)$$

Hence, we find:

$$U_{513}=2(513-1)=1024$$

Thus:

$$k_{513}=\sqrt{U_{513}}+1=33$$
 
MarkFL said:
Here is my solution:

We are given the recursive algorithm:

$$k_{n+1}=\sqrt{k_n^2-2k_n+3}+1$$ where $$k_1=1$$

If we subtract 1 from both sides and square, we obtain:

$$\left(k_{n+1}-1 \right)^2=\left(k_{n}-1 \right)^2+2$$

If we define:

$$U_n=\left(k_{n}-1 \right)^2$$

we then obtain the linear difference equation:

$$U_{n+1}-U_{n}=2$$ where $$U_1=0$$

The homogeneous solution is:

$$h_n=c_1$$

and the particular solution is:

$$p_n=c_2n$$

Substituting the particular solution into the difference equation, we find:

$$c_2(n+1)-c_2n=2\implies c_2=2$$

Thus, the general solution is:

$$U_n=c_1+2n$$

We may now use the initial value to determine the parameter $c_1$:

$$U_1=c_1+2=0\implies c_1=-2$$

And so the solution satisfying the given conditions is:

$$U_n=-2+2n=2(n-1)$$

Hence, we find:

$$U_{513}=2(513-1)=1024$$

Thus:

$$k_{513}=\sqrt{U_{513}}+1=33$$

Bravo, MarkFL:cool: and thanks for participating!
 
anemone said:
Thanks for participating kaliprasad...but your answer isn't correct. I'm sorry.:(

MarkFL and anemone
thanks

my solution
Proceeding we see hat = (k(n)-1)^2 = = (k(1)-1)^2 + 2(n-1)
I had done correct till the aboveI forgot to take 1 to the right
(k(513) - 1)^2 = 1024

or k(513) = 33

so approach was right but not taking 1 to the right was an oversight
 
Last edited:
kaliprasad said:
MarkFL and anemone
thanks

my solution
Proceeding we see hat = (k(n)-1)^2 = = (k(1)-1)^2 + 2(n-1)
I had done correct till the aboveI forgot to take 1 to the right
k(513) - 1 = 1024

or k(513) = 33

so approach was right but not taking 1 to the right was an oversight

I am sorry kaliprasad...I checked your approach but couldn't locate the mistake (the honest kind, of course) and now everything seems perfect about your solution! Well done, kaliprasad!
 

Similar threads

  • · Replies 2 ·
Replies
2
Views
1K
  • · Replies 14 ·
Replies
14
Views
3K
Replies
4
Views
2K
  • · Replies 13 ·
Replies
13
Views
2K
  • · Replies 2 ·
Replies
2
Views
6K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 8 ·
Replies
8
Views
2K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 1 ·
Replies
1
Views
1K
  • · Replies 1 ·
Replies
1
Views
1K