- #1
johann1301
- 217
- 1
Homework Statement
The sequence {xn} is given by the recurrence relation
xn = cos(xn-1)sin(xn-2) for n ≥ 2
and x0=2 and x1=1,4. Show by induction that 0 ≤ xn ≤ 1 for all integers n ≥ 2.
The Attempt at a Solution
We formulate a statement:
Pn: 0 ≤ xn = cos(xn-1)sin(xn-2) ≤ 1 for n ≥ 2
---------------------------------------------------------------
We assume that Pn is true for n=k, where k ≥ 2:
Ak: 0 ≤ xk = cos(xk-1)sin(xk-2) ≤ 1 for k ≥ 2
We then set n=k+1:
xk+1 = cos(xk)sin(xk-1)
We know from the assumption Ak that:
0 ≤ xk ≤ 1
This implies that:
0,54 ≤ cos(xk) ≤ 1 which again implies 0 < cos(xk) < 1
We then have to show:
0 ≤ sin(xk-1) ≤ 1
We know that sine to any angle is always equal to or less then 1. We therefore have to prove:
0 ≤ sin(xk-1)
Since we assumed that 0 ≤ xk ≤ 1, this must be true for xk-1 as well. This means that if the assumption Ak is true when n=k, its true when n=k+1 also. The last thing is to prove the base case:
x2 = cos(1,4)sin(2) ≈ 0,155
0 ≤ 0,155 ≤ 1
Pn is thus true.
Is this correct argumentation?