sequence question

Qwertyuiop[]

Junior Member
Joined
Jun 1, 2022
Messages
123
a sequence is defined by uo=1u_o=1 and for all nNn \in N,un+1=12un+n1u_{n+1}=\frac{1}{2}u_n+n-1.
1)Show that for n >= 3, u(n) is positive. And for n>=4, unn2u_n\:\ge n-2
I'm stuck at the first part of the question(show that for n>=3, u(n) is positive), I am not sure how to proceed.

EDIT: I wanted to use induction to prove but the sequence is defined by a recursive formula and we have u(0)=1 but we have to show for n>=3.
 
Last edited:
Use the recursive formula to find u1,u2\displaystyle u_1, u_2 and u3\displaystyle u_3 and then start your first induction proof from there.
 
Use the recursive formula to find u1,u2\displaystyle u_1, u_2 and u3\displaystyle u_3 and then start your first induction proof from there.
Here's what i get after using induction:
Base: u(3) = 39/16>=0 so true.
Recurrence : if uk0u_{k}\ge 0 then we have to prove uk+10u_{k+1}\ge 0.

I made u(n) the subject in the formula and i know that uk0u_{k}\ge 0 so setting that equation greater than or equal to 0 i get:
uk02(uk+1k+1)0(uk+1k+1)0u_k\ge 0 \\ 2\left(u_{k+1}-k+1\right)\ge 0\\ \left(u_{k+1}-k+1\right)\ge 0I have to get this expression in the form uk+10u_{k+1}\ge 0 but not sure how. Is my working correct and is there another way to do it? ?
 
Here's what i get after using induction:
Base: u(3) = 39/16>=0 so true.
Recurrence : if uk0u_{k}\ge 0 then we have to prove uk+10u_{k+1}\ge 0.

I made u(n) the subject in the formula and i know that uk0u_{k}\ge 0 so setting that equation greater than or equal to 0 i get:
uk02(uk+1k+1)0(uk+1k+1)0u_k\ge 0 \\ 2\left(u_{k+1}-k+1\right)\ge 0\\ \left(u_{k+1}-k+1\right)\ge 0I have to get this expression in the form uk+10u_{k+1}\ge 0 but not sure how. Is my working correct and is there another way to do it? ?
u0=1u_0 = 1

u1=12(1)+01=12u_1 = \dfrac{1}{2} (1) + 0 - 1 = -\dfrac{1}{2}

u2=12(12)+11=14u_2 = \dfrac{1}{2} \left ( -\dfrac{1}{2} \right ) + 1 - 1 = -\dfrac{1}{4}

u3=12(14)+21=78u_3 = \dfrac{1}{2} \left ( -\dfrac{1}{4} \right ) + 2 - 1 = \dfrac{7}{8}

The rest looks good. You left it with
un+1n1u_{n+1} \geq n - 1

So is un+1u_{n+1} positive? (Hint: What do you know about n - 1 for n3n \geq 3?)

-Dan
 
u0=1u_0 = 1

u1=12(1)+01=12u_1 = \dfrac{1}{2} (1) + 0 - 1 = -\dfrac{1}{2}

u2=12(12)+11=14u_2 = \dfrac{1}{2} \left ( -\dfrac{1}{2} \right ) + 1 - 1 = -\dfrac{1}{4}

u3=12(14)+21=78u_3 = \dfrac{1}{2} \left ( -\dfrac{1}{4} \right ) + 2 - 1 = \dfrac{7}{8}

The rest looks good. You left it with
un+1n1u_{n+1} \geq n - 1

So is un+1u_{n+1} positive? (Hint: What do you know about n - 1 for n3n \geq 3?)

-Dan
oh, n-1 is positive for n>=3 because 3-1=2>0. And it is positive for all values of k>=3. correct?
 
I used the same method for the second part that says for n4n\:\ge 4 , unn2u_n\ge n-2.
Base: u4=39/16u_4=39/16 and 39162\frac{39}{16}\ge 2 so true for n=4.
recurence hyp: if ukk2u_{k\:}\ge k-2 then show uk+1k+12=uk+1=k1u_{k+1\:}\ge k+1-2\:=\:u_{k+1}=k-1
ukk22(uk+1k+1)k22uk+13k4uk+132k2u_k\ge k-2\\ 2\left(u_{k+1}-k+1\right)\ge k-2\\ 2\cdot u_{k+1}\:\ge 3k-4\\ u_{k+1}\:\ge \frac{3}{2}k-2Here it's not as obvious as it was for the first question,i don't get uk+1k2u_{k+1}\:\ge k-2. What did I do wrong?
 
I used the same method for the second part that says for n4n\:\ge 4 , unn2u_n\ge n-2.
Base: u4=39/16u_4=39/16 and 39162\frac{39}{16}\ge 2 so true for n=4.
recurence hyp: if ukk2u_{k\:}\ge k-2 then show uk+1k+12=uk+1=k1u_{k+1\:}\ge k+1-2\:=\:u_{k+1}=k-1
ukk22(uk+1k+1)k22uk+13k4uk+132k2u_k\ge k-2\\ 2\left(u_{k+1}-k+1\right)\ge k-2\\ 2\cdot u_{k+1}\:\ge 3k-4\\ u_{k+1}\:\ge \frac{3}{2}k-2Here it's not as obvious as it was for the first question,i don't get uk+1k2u_{k+1}\:\ge k-2. What did I do wrong?
You are trying to show that un+1u_{n+1} is positive. So you have
un+1>n2u_{n+1} > n - 2

not
un+1>(n+1)2u_{n+1} > (n + 1) - 2

You are trying to advance n by 1, but you still need to use n in your formula. If you want to talk about un+2u_{n+2}, then you would have
un+2>(n+1)2u_{n+2} > (n + 1) - 2

-Dan
 
Top