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

  • MHB
  • Thread starter anemone
  • Start date
  • Tags
    Sequence
In summary, the solution to finding the value of $k_{513}$ in the sequence $k_1, k_2, \cdots$ defined by $k_1 = 1$ and for $n \ge 1$, $k_{n+1} = \sqrt{k_n^2 - 2k_n + 3}+1$ is 32.
  • #1
anemone
Gold Member
MHB
POTW Director
3,883
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}$.
 
Mathematics news on Phys.org
  • #2
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
 
  • #3
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.:(
 
  • #4
Here is my solution:

We are given the recursive algorithm:

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

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

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

If we define:

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

we then obtain the linear difference equation:

\(\displaystyle U_{n+1}-U_{n}=2\) where \(\displaystyle U_1=0\)

The homogeneous solution is:

\(\displaystyle h_n=c_1\)

and the particular solution is:

\(\displaystyle p_n=c_2n\)

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

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

Thus, the general solution is:

\(\displaystyle U_n=c_1+2n\)

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

\(\displaystyle U_1=c_1+2=0\implies c_1=-2\)

And so the solution satisfying the given conditions is:

\(\displaystyle U_n=-2+2n=2(n-1)\)

Hence, we find:

\(\displaystyle U_{513}=2(513-1)=1024\)

Thus:

\(\displaystyle k_{513}=\sqrt{U_{513}}+1=33\)
 
  • #5
MarkFL said:
Here is my solution:

We are given the recursive algorithm:

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

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

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

If we define:

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

we then obtain the linear difference equation:

\(\displaystyle U_{n+1}-U_{n}=2\) where \(\displaystyle U_1=0\)

The homogeneous solution is:

\(\displaystyle h_n=c_1\)

and the particular solution is:

\(\displaystyle p_n=c_2n\)

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

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

Thus, the general solution is:

\(\displaystyle U_n=c_1+2n\)

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

\(\displaystyle U_1=c_1+2=0\implies c_1=-2\)

And so the solution satisfying the given conditions is:

\(\displaystyle U_n=-2+2n=2(n-1)\)

Hence, we find:

\(\displaystyle U_{513}=2(513-1)=1024\)

Thus:

\(\displaystyle k_{513}=\sqrt{U_{513}}+1=33\)

Bravo, MarkFL:cool: and thanks for participating!
 
  • #6
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:
  • #7
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!
 

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

1. How do I find the value of k513 in the given sequence?

The value of k513 can be found by simply counting the terms in the sequence. As each term in the sequence is represented by kn, where n is the term number, the value of k513 is the 513th term in the sequence.

2. What is the significance of finding k513 in this sequence?

The value of k513 represents the 513th element in the sequence, which may have a specific pattern or relationship with the previous terms. It can be used to further analyze the sequence and make predictions about future terms.

3. Is there a formula for finding the value of k513 in this sequence?

The formula for finding the value of kn in any sequence is kn = kn-1 + d, where d is the common difference between consecutive terms. However, if the sequence follows a specific pattern, there may be a different formula to find the value of k513.

4. Can k513 be found if the sequence is not given explicitly?

If the sequence follows a specific pattern or rule, the value of k513 can be determined without explicitly knowing the entire sequence. However, if the sequence is random or has no apparent pattern, the value of k513 cannot be accurately found.

5. How can the value of k513 be used in scientific research?

The value of k513 can be used to study the behavior and patterns of the sequence, which can be applied to various fields of scientific research, such as biology, physics, and economics. It can also be used to make predictions or model real-world phenomena.

Back
Top