The $r^{th}$ term $U_r$ of a sequence $U_1, U_2, ...$ is given by $U_r = U_{r-1} + 8(r-1)$. If $U_2 = 9$, we need to find the values of $U_1, U_3, U_4$ and obtain an expression for $U_r$ in terms of $r$.

AlgebraSequencesRecurrence RelationsMathematical Induction
2025/4/8

1. Problem Description

The rthr^{th} term UrU_r of a sequence U1,U2,...U_1, U_2, ... is given by Ur=Ur1+8(r1)U_r = U_{r-1} + 8(r-1). If U2=9U_2 = 9, we need to find the values of U1,U3,U4U_1, U_3, U_4 and obtain an expression for UrU_r in terms of rr.

2. Solution Steps

First, we are given the recurrence relation Ur=Ur1+8(r1)U_r = U_{r-1} + 8(r-1).
Since U2=9U_2 = 9, we can find U1U_1 by setting r=2r=2:
U2=U1+8(21)U_2 = U_1 + 8(2-1)
9=U1+8(1)9 = U_1 + 8(1)
U1=98=1U_1 = 9 - 8 = 1
Next, we can find U3U_3 by setting r=3r=3:
U3=U2+8(31)U_3 = U_2 + 8(3-1)
U3=9+8(2)U_3 = 9 + 8(2)
U3=9+16=25U_3 = 9 + 16 = 25
Then, we find U4U_4 by setting r=4r=4:
U4=U3+8(41)U_4 = U_3 + 8(4-1)
U4=25+8(3)U_4 = 25 + 8(3)
U4=25+24=49U_4 = 25 + 24 = 49
Now, we want to find an expression for UrU_r in terms of rr.
Ur=Ur1+8(r1)U_r = U_{r-1} + 8(r-1)
We can write out the first few terms to see if we can identify a pattern.
U1=1U_1 = 1
U2=U1+8(1)=1+8=9U_2 = U_1 + 8(1) = 1 + 8 = 9
U3=U2+8(2)=9+16=25U_3 = U_2 + 8(2) = 9 + 16 = 25
U4=U3+8(3)=25+24=49U_4 = U_3 + 8(3) = 25 + 24 = 49
U5=U4+8(4)=49+32=81U_5 = U_4 + 8(4) = 49 + 32 = 81
Notice that the terms are 12,32,52,72,92,...1^2, 3^2, 5^2, 7^2, 9^2, ...
So Ur=(2r1)2U_r = (2r-1)^2.
Let's prove this using induction.
Base case: r=1r=1, U1=(2(1)1)2=12=1U_1 = (2(1)-1)^2 = 1^2 = 1, which matches our value.
Assume Uk=(2k1)2U_k = (2k-1)^2 for some k1k \ge 1.
Then Uk+1=Uk+8(k+11)=(2k1)2+8k=4k24k+1+8k=4k2+4k+1=(2k+1)2=(2(k+1)1)2U_{k+1} = U_k + 8(k+1-1) = (2k-1)^2 + 8k = 4k^2 - 4k + 1 + 8k = 4k^2 + 4k + 1 = (2k+1)^2 = (2(k+1)-1)^2.
So the formula holds for Uk+1U_{k+1}. By induction, Ur=(2r1)2U_r = (2r-1)^2 for all r1r \ge 1.

3. Final Answer

U1=1U_1 = 1, U3=25U_3 = 25, U4=49U_4 = 49
Ur=(2r1)2U_r = (2r-1)^2