Arithmetic

Arithmetic Progression

The Boy Who Embarrassed His Teacher: The Legend of Young Gauss

In **1787**, in a school in the German city of Brunswick, teacher Büttner decided to keep the class busy: "Add all the numbers from 1 to 100." He expected an hour of quiet. Within **a few seconds**, 10-year-old **Carl Gauss** placed a slate on the desk and said: "Here it is." The teacher was sure it was wrong. But the answer was correct: **5050**.

Mathematics is the queen of sciences, and arithmetic is the queen of mathematics. - Carl Friedrich Gauss

Gauss grew up to become the "Prince of Mathematicians". His discoveries: the Gaussian (normal) distribution, the fundamental theorem of algebra, non-Euclidean geometry (which he never published, fearing criticism). He could have changed mathematics 50 years earlier - but stayed silent. Genius doesn't imply courage.

"Add the numbers from 1 to 100." How long would that take you? 10-year-old Gauss answered in seconds: 5050. How? He noticed: 1+100 = 2+99 = 3+98 = 101. Fifty pairs. Answer: 50×101 = 5050. Mathematics isn't computation - it's understanding structure.

  • **Finance:** calculating annuity payments
  • **Programming:** loop analysis, O(n²) algorithms
  • **Physics:** uniformly accelerated motion

What is an Arithmetic Progression?

An **arithmetic progression** (AP) is a sequence of numbers where the difference between consecutive terms is constant. It's the simplest type of regular sequence.

**Definition:** a, a+d, a+2d, a+3d, ... **Parameters:** • a₁ = a - first term • d - common difference **AP condition:** aₙ₊₁ - aₙ = d (constant)

APs model uniform change: time steps, linear growth, regular payments.

What is the common difference d in the progression 5, 12, 19, 26, ...?

Formula for the nth Term

The **nth term formula** lets you find any term of an AP without computing all the preceding ones.

**Formula:** aₙ = a₁ + (n - 1) × d **Alternative form:** aₙ = a₁ + d×n - d = (a₁ - d) + d×n This is a linear function of n!

An arithmetic progression is the discrete analogue of a linear function. Each step brings the same change.

What is the 100th term of the progression 2, 5, 8, 11, ...?

Sum of an Arithmetic Progression

The **sum of the first n terms** of an AP is given by an elegant formula discovered in antiquity.

**Sum formulas:** Sₙ = n × (a₁ + aₙ) / 2 or Sₙ = n × (2a₁ + (n-1)d) / 2 **Meaning:** sum = count × average

The AP sum formula is one of the first examples of "smart" mathematics over brute-force calculation.

What is the sum 2 + 4 + 6 + ... + 100?

Young Gauss's Trick

At age 10, Carl Friedrich Gauss instantly computed the sum 1+2+...+100, astonishing his teacher. His method is the foundation of the AP sum formula.

**Carl Friedrich Gauss (1777 - 1855):** "The Prince of Mathematicians". Contributions to: • Number theory • Statistics (Gaussian distribution) • Geometry • Astronomy • Physics At age 10 he rediscovered the AP sum formula.

The Gauss story is an example of how understanding structure beats brute force. That's the essence of mathematics.

To find the sum of n numbers you have to add them all

For regular sequences there are formulas that give the answer instantly

Sum of an AP = n×(first+last)/2. This works for any n. Add a million numbers from 1 to 1 000 000? Answer: 500 000 500 000. Instantly. Understanding structure saves millions of operations.

What is the key idea in Gauss's trick?

Key Ideas

  • AP: aₙ₊₁ - aₙ = d (constant)
  • nth term: aₙ = a₁ + (n-1)d
  • Sum: Sₙ = n(a₁ + aₙ)/2
  • Gauss's trick: pairing symmetric terms

Related Topics

AP connects to other sequences:

  • Geometric Progression — Multiplication instead of addition
  • Fibonacci Numbers — Another type of recursion
  • Means — Arithmetic mean comes from AP

Вопросы для размышления

  • Why is the sum of symmetric AP terms constant?
  • How are arithmetic progressions related to linear functions?
  • What physical processes are described by arithmetic progressions?

Связанные уроки

  • calc-01-sequences
Arithmetic Progression

0

1

Sign In