STEP-BY-STEP ANSWER:
Step 1: Base Case - Verify the formula for n = 1. Since 1 = 1(1 + 1)/2 = 1, the base case holds.
Step 2: Inductive Hypothesis - Assume the formula is true for some positive integer k, i.e., 1 + 2 + ... + k = k(k + 1)/2.
Step 3: Inductive Step - Consider the statement for n = k + 1. Start with the left-hand side: 1 + 2 + ... + k + (k + 1). By the inductive hypothesis, this equals k(k + 1)/2 + (k + 1).
Step 4: Factor the Expression - Factor out (k + 1): k(k + 1)/2 + (k + 1) = (k + 1)(k/2 + 1) = (k + 1)( (k + 2)/2 ).
Step 5: Conclude - Simplify to obtain (k + 1)(k + 2)/2, which is exactly the formula for n = k + 1. Thus the formula is valid for k + 1.
Final Answer: By the principle of mathematical induction, the formula 1 + 2 + ... + n = n(n + 1)/2 holds for all positive integers n.