Math Problem Statement

Cho dãy số xác định bởi u_1 = 5; u_{n+1} = u_n + n; ∀n ≥ 1. Mệnh đề nào sau đây đúng?

Solution

Let’s analyze and solve the problem.

Problem:

We are given a sequence {un}\{u_n\} defined by: u1=5,un+1=un+n,  n1.u_1 = 5, \quad u_{n+1} = u_n + n, \; \forall n \geq 1. We are tasked to determine which formula for unu_n is correct among the given options.

Step-by-step Solution:

  1. Write the recurrence explicitly for a few terms: u1=5,u_1 = 5, u2=u1+1=5+1=6,u_2 = u_1 + 1 = 5 + 1 = 6, u3=u2+2=6+2=8,u_3 = u_2 + 2 = 6 + 2 = 8, u4=u3+3=8+3=11,u_4 = u_3 + 3 = 8 + 3 = 11, u5=u4+4=11+4=15.u_5 = u_4 + 4 = 11 + 4 = 15.

    We observe that the sequence grows based on the sum of integers up to n1n-1.

  2. General formula for the sum of integers: The sum of the first kk integers is given by: Sk=k(k+1)2.S_k = \frac{k(k+1)}{2}.

    For the given recurrence, the sequence unu_n can be expressed as: un=5+Sn1.u_n = 5 + S_{n-1}. Substituting Sn1=(n1)n2S_{n-1} = \frac{(n-1)n}{2}, we get: un=5+(n1)n2.u_n = 5 + \frac{(n-1)n}{2}.

  3. Check against the options:

    • Option A: un=5+n(n1)2u_n = 5 + \frac{n(n-1)}{2}.
      This matches our derived formula.

    • Option B: un=n(n1)2u_n = \frac{n(n-1)}{2}.
      This is incorrect because it omits the initial value u1=5u_1 = 5.

    • Option C: un=5+n(n+1)2u_n = 5 + \frac{n(n+1)}{2}.
      This is incorrect because it uses n(n+1)n(n+1) instead of n(n1)n(n-1).

    • Option D: un=5+(n1)(n+2)2u_n = 5 + \frac{(n-1)(n+2)}{2}.
      This is incorrect because it uses (n1)(n+2)(n-1)(n+2) instead of (n1)n(n-1)n.

Final Answer:

The correct formula is A: un=5+n(n1)2u_n = 5 + \frac{n(n-1)}{2}.


Would you like a detailed explanation of any part of this solution?
Here are 5 questions you might want to explore further:

  1. How is the sum of consecutive integers derived?
  2. Why does the recurrence formula relate to sums of integers?
  3. Could you verify the solution for higher values of nn?
  4. How does the initial value u1=5u_1 = 5 affect the formula?
  5. Can similar recurrence sequences be solved systematically?

Tip: Always expand the first few terms of a recurrence to identify patterns before attempting a general formula!

Ask a new question for Free

By Image

Drop file here or Click Here to upload

Math Problem Analysis

Mathematical Concepts

Recurrence Relations
Arithmetic Series

Formulas

S_k = k(k + 1)/2
u_n = 5 + (n-1)n/2

Theorems

Summation of Arithmetic Series

Suitable Grade Level

Grades 10-12